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
ANATOMY + HEAL
Moderators: Murderator+, Murderator
-
- Posts: 174
- Joined: 2008-12-13 00:00:15
Re: ANATOMY + HEAL
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