I created a script in
[Only registered and activated users can see links. Click Here To Register...] 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. :)