Register for your free account! | Forgot your password?

You last visited: Today at 07:21

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



TG tool?

Discussion on TG tool? within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jan 2006
Posts: 1,192
Received Thanks: 30
There is a tool in tg that activates cyclone in between 2 stakes for trojs, i was just wondering if they use COpartner or some other tool?
kurogasa is offline  
Old 07/25/2006, 09:40   #2
 
elite*gold: 0
Join Date: Apr 2006
Posts: 175
Received Thanks: 2
I think same too i have saw that many time in tg..
lessuX is offline  
Old 07/29/2006, 21:43   #3
 
elite*gold: 0
Join Date: Jan 2006
Posts: 100
Received Thanks: 0
havent seen it, problly is possible though
Qcan is offline  
Old 07/29/2006, 23:14   #4
 
elite*gold: 0
Join Date: Jan 2006
Posts: 100
Received Thanks: 0
edit:
Qcan is offline  
Old 07/29/2006, 23:15   #5
 
elite*gold: 0
Join Date: Jan 2006
Posts: 100
Received Thanks: 0
I guess it is possible! lol i just stumbled apon this searching :P

created a script in that does the same thing AND uses Cyclone.


How to Use this Script:

1. Place Cyclone on the F1 key.
2. Select Fast Blade or Scent Sword as your current skill.
3. Run the script.
4. Hover mouse over the shadow at the stake you want to hit.
5. Press the Pause key to start the script.

If you want to pause the script, just press the Pause key. If you want to exit the script, just press the Esc key.

I've noticed that I'm almost in perpetual Cyclone (it lasts longer than usual) awhile using this script.

TG Macro1.au3
Code:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author:     BitVector
;           ElitePvPers Edition
;
; Script Function:
; Scent Sword/Fast Blade + Stake Hit + Cyclone
;
; ----------------------------------------------------------------------------

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")

Call("TogglePause")

While 1=1
  If WinActive("[Conquer]") then
    MouseClick("left")
    Sleep(Random(100,200))
    MouseClick("right")
    Sleep(Random(100,200))
    Send("{F1}")
    Send("{F1}")
    Sleep(Random(10,20))
  Else
    Sleep(100)
  EndIf
WEnd


Func TogglePause()
  $Paused = NOT $Paused
  While $Paused
    sleep(100)
    ToolTip('Script is Paused. Press Pause to Start/Continue.',0,0)
  WEnd
  ToolTip("")
EndFunc

Func Terminate()
  Exit 0
EndFunc

EDIT: I've added random sleep timers to, hopefully, keep me from being jailed for using a macro. Also added second F1 key press, because sometimes the Cyclone didn't activate.

EDIT x2: If anyone wants to put this into an exe or re-release somewhere else, I give full permissions to anyone to do so. I just hope you give credit to me and ElitePvPers, that's all. smile.gif

__________________________________________________ _________________


Ok, here is a version with Mouse Lock. Once you press Pause, it will start up the script and lock on to where your mouse was last positioned. If you move the mouse, it will automatically move your mouse back to the original position.

It is quite useful if your mouse is extremely sensitive to vibrations in the room that might move it (like mine).

Code:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author:     BitVector
;           ElitePvPers Edition
;
; Script Function:
; Scent Sword + Stake Hit + Cyclone
;    New Feature: Mouse Lock (requested by Virtue)
;
; ----------------------------------------------------------------------------

Global $Paused
Global $MousePos
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")

Call("TogglePause")

While 1=1
  If WinActive("[Conquer]") then
    MouseClick("left",$MousePos[0],$MousePos[1],1,0)
    Sleep(Random(50,100))
    MouseClick("right",$MousePos[0],$MousePos[1],1,0)
    Sleep(Random(50,100))
    Send("{F1}")
    Send("{F1}")
    Sleep(Random(10,20))
  Else
    Sleep(100)
  EndIf
WEnd


Func TogglePause()
  $Paused = NOT $Paused
  While $Paused
    sleep(100)
    ToolTip('Script is Paused. Press Pause to Start/Continue.',0,0)
  WEnd
  ToolTip("")
  $MousePos = MouseGetPos()
EndFunc

Func Terminate()
  Exit 0
EndFunc

EDIT: I decreased the sleep timers in this version so it'll be a little faster. And as always, this script is free to use, change, and distribute to your heart's content.

__________________________________________________ _______________



Ok, this will probably be my last version of this script, since it is my best so far.

I took out the sleep timers, because in this case, faster is better. I put the F1 key presses in better locations so that Cyclone will activate every time. My trojan is level 100+, and I am in perpetual Cyclone awhile using this script. In other words, Cyclone lasts forever and does not stop. My experience gains are amazingly fast (compared to normal TG'ing).

I've included the source code as well as an .exe file for those who do not have AutoIt v3 installed.

Code:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author:     BitVector
;           ElitePvPers Edition
;
; Script Function:
; Scent Sword + Stake Hit + Cyclone
;    New Feature: Mouse Lock (requested by Virtue)
;
; ----------------------------------------------------------------------------

Global $Paused
Global $MousePos
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")

Call("TogglePause")

While 1=1
  If WinActive("[Conquer]") then
    MouseClick("left",$MousePos[0],$MousePos[1],1,0)
    Send("{F1}")
    MouseClick("right",$MousePos[0],$MousePos[1],1,0)
    Send("{F1}")
  Else
    Sleep(100)
  EndIf
WEnd


Func TogglePause()
  $Paused = NOT $Paused
  While $Paused
    sleep(100)
    ToolTip('Script is Paused. Press Pause to Start/Continue.',0,0)
  WEnd
  ToolTip("")
  $MousePos = MouseGetPos()
EndFunc

Func Terminate()
  Exit 0
EndFunc
For those who need instructions, just check a few posts up where I posted my first version of the script. If you are not a Trojan and still want to use this trick, then all you need to do is just make sure that your F1 spot is empty.

__________________________________________________ ________________


Those are the scrips i found posted by BitVector, i dont know if this helps :P

The Macro she made is attached below: hope this helps?
Attached Files
File Type: ibf post-53-1154207736.ibf (113.7 KB, 18 views)
Qcan is offline  
Reply


Similar Threads Similar Threads
[TOOL] Silkroad Online Tool!!! Auto Login + Patcher + Script !!!
09/28/2011 - SRO PServer Guides & Releases - 22 Replies
Hello members! If you remember i make SRO AutoLogin in minimalized window! This is mine second script: Process Pather by lolkop edit by me + mine autologin! This is fastes and stable than Process Pather, Silkroad Online tool is very easy only 1 click to patch! http://img690.imageshack.us/img690/4966/silktool. png



All times are GMT +1. The time now is 07:23.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.