TG tool?

07/25/2006 08:56 kurogasa#1
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?
07/25/2006 09:40 lessuX#2
I think same too i have saw that many time in tg..
07/29/2006 21:43 Qcan#3
havent seen it, problly is possible though
07/29/2006 23:14 Qcan#4
edit:
07/29/2006 23:15 Qcan#5
I guess it is possible! lol i just stumbled apon this searching :P

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