ANATOMY + HEAL

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
leandroatx
Posts: 5
Joined: 2012-04-20 08:40:44

ANATOMY + HEAL

Post by leandroatx »

Hi i need a script, anatomy + heal when player has less then 40 life
anyone ? plz! thx

example;
anatomy tgt self
if str < 40 use bandage
Successful
Posts: 174
Joined: 2008-12-13 00:00:15

Re: ANATOMY + HEAL

Post by Successful »

Code: Select all

sub Anatomy_()
while not uo.dead()
uo.deletejournal()
uo.waittargetself()
uo.useskill ('Anatomy')
repeat
wait(100)
until uo.injournal('ms1|ms2|ms3?')
if uo.life < 40 then
repeat
uo.bandageself()
wait(4000)
until uo.life == uo.str()
end if
wend
end sub


('ms1|ms2|ms3?') write the journal massages here
Post Reply