Originally Posted by
Vic-S
Hey.
Wondering if someone could hook me up with a Autoit script for precast.
general precast for a lite sorc, bo/ts/x
just with a simple hotkey.
been looking around and i just can't find one.
Code:
HotKeySet("{F10}", "PreCast")
While 1
Sleep(1000)
WEnd
;Replace x with your hotkeys - In case you use Frozen and/or Shiver Armor, remove the ;
$Sleep = 150
$BC = "{x}"
$BO = "{x}"
$Thunderstorm = "{x}"
$Weaponswitch = "{x}"
;$FrozenArmor = "{x}"
;$ShiverArmor = "{x}"
Func PreCast()
Send($Weaponswitch)
Sleep($Sleep)
Send($BC)
Sleep($Sleep)
MouseClick("Right")
Sleep($Sleep)
Send($BO)
Sleep($Sleep)
MouseClick("Right")
Sleep($Sleep)
Send($Thunderstorm)
Sleep($Sleep)
MouseClick("Right")
Sleep($Sleep)
;Send($Weaponswitch)
;Send($FrozenArmor)
;Sleep($Sleep)
;MouseClick("Right")
;Sleep($Sleep)
;Send($ShiverArmor)
;Sleep($Sleep)
;MouseClick("Right")
;Sleep($Sleep)
Send($Weaponswitch)
EndFunc
Rather simple, but should work.
If it's too fast, change the $Sleep delay.
Bookmarks