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?
; ----------------------------------------------------------------------------
;
; 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
; ----------------------------------------------------------------------------
;
; 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
; ----------------------------------------------------------------------------
;
; 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