The following script is for simple grinding with Paladin. Written for UOpilot. Script is based on color picking and clicking on game windows, so you should change coordinates for your own client
Code:
Repeat 10 //repeat 10 times
:main //main script part
send J //key for "next target"
if 588, 637 3428517 //get mobs HP on mobs HP status bar,
goto atak //next command
:atak //mob attack
send F1 //hit mob, if F1 is "mob attack" key
while 412, 637 2175075 //if mobs HP is "red", repeat attack
goto atak
end_while
end_if
:hp //use HP jar
if 164, 42 3222577 //if chars HP bar isn't red
send 6 //key for using jar (on quick panel)
goto main
end_if
End_Repeat //end
Repeat 18
send Left
End_Repeat
P.S. Polish friend give me this script, so all phrases were translated by google and corrected (maybe something wrong)