written in AC Tool
reqs 1024, windowed, no coloader this time
check for customization options down bellow
Code:
////////////////////////////////////////////////////////////////////////
//
// this will level your waterelf and shield
//
// by GiYo from elitepvpers.com
//
//
// AC tool script
//
// start script right after xp skill becomes available (when bar appears)
//
//
SetActiveWindow [Conquer]
delay 100
Constants
medi_key = {F1} // meditation here
sit_key = {F8} // sit here on F8
shield_key = {F9} // shield on F9
fish_key = {F10} // place your fish on F10
x_me = 512 // loc of char
y_me = 315 // loc of char
x_vp = 457 // x coord of viewport
y_vp = 123 // y coord of viewport
x_restore = 996 // restore btn
y_restore = 617 // restore btn
i = 0
End
while 1 = 1
IsWindow [Conquer]
Keys $fish_key // activate xp
delay 32000 // how long does your FISHY before you can restore it
MousePos $x_restore,$y_restore // position your mouse on restore btn
LeftClick
delay 500
setconst i = 0
while $i < 10
Keys $medi_key
delay 1000
Keys $shield_key // activate spell
MousePos $x_me,$y_me // position your mouse on char
RightClick // cast spell
delay 1000
Keys $sit_key
delay 24000 // how long your shield lasts
COMPUTE i = $i + 1
end
Keys $sit_key
delay 12000
end
end
what you need to change /compute are those delay times. post in this thread / pm me if you feel you need help computing the times.
basically with every level fish gets longer and timer for restore differs. sit to get full stamina is always same.
if you want to level some other spell (not sheild, but invis or somethng) you need to change the timers accordingly)
mostly:
Code:
delay 24000 // how long your shield lasts delay 32000 // how long does your FISHY before you can restor while $i < 10 //the number 10 could be changed to some other value
and one more thing: to level heals you need those 2+2 rings and insert ringwear part before spellcast
happy macroing







