This is useful for fighting things with lots of hp or simply spamming something while you're afk.
First of all, download auto hot key which can be found here.
[Only registered and activated users can see links. Click Here To Register...] And install it.
Open Notepad, and copy + paste this
In order to use the script save it as a .ahk file in notepad and go to ur AutoHotKey directory. Open up compiler and compile it
I hope i helped.
First of all, download auto hot key which can be found here.
[Only registered and activated users can see links. Click Here To Register...] And install it.
Open Notepad, and copy + paste this
That is a sample script and what that does is it sends the key 3 to the process 2moons every second 3 times and then it does the same with the key 2 and 1. You should have the hang of it now.Quote:
WinActivate 2Moons
SetBatchLines, 150ms
Loop
{
Gosub, MainB
Loop, 10
{
Loop, 2
{
Gosub, MainA
}
Gosub, MainS
}
}
MainA:
ControlSend,,3,2Moons
Sleep 1000
ControlSend,,3,2Moons
Sleep 1000
ControlSend,,3,2Moons
Sleep 2500
Return
MainB:
ControlSend,,2,2Moons
Sleep 1000
ControlSend,,2,2Moons
Sleep 1000
ControlSend,,2,2moons
Sleep 2500
Return
MainS:
ControlSend,,1,2moons
Sleep 1000
ControlSend,,1,2moons
Sleep 1000
ControlSend,,1,2moons
Sleep 2500
Return
In order to use the script save it as a .ahk file in notepad and go to ur AutoHotKey directory. Open up compiler and compile it
I hope i helped.