AutoHealing

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
NIXER
Posts: 5
Joined: 2004-05-21 17:35:14

AutoHealing

Post by NIXER »

sub AutoHeal()
while uo.count("Bandage")
if not uo.dead() then
if uo.life < uo.str then
uo.exec("bandageself")
;uo.print("Bandagiere....")
wait(500)
endif
;wait(500)
endif
;wend
wait(500)
wend
end sub

that is the script..and when i will run it ..yoko says "Unknown graphic type"
Why it do that ????.....i hope anyone can help me.... =(
Sorry 4 my bad english ^^"...
NIXER
Posts: 5
Joined: 2004-05-21 17:35:14

Post by NIXER »

umn...plz ....can anyone help me to fix the problem ??...
Lord Ruslan Nightmare
Expert!
Posts: 359
Joined: 2004-04-25 11:11:07
Contact:

Post by Lord Ruslan Nightmare »

Code: Select all

sub AutoHeal() 
  while uo.count("Bandage")
    if not uo.dead() and uo.life < uo.str then
        uo.waittargetself()
        uo.usetype("ZLF")
        wait(500)
    endif
    wait(500)
  wend
end sub
Без труда не выловишь и рыбку из пруда,
А без пруда не выловишь её и с трудом...
Lem
Posts: 49
Joined: 2004-05-23 18:31:26

Post by Lem »

prb you have not set the type "Bandage"
Post Reply