Page 1 of 1

Hiding/Stealth

Posted: 2004-07-11 20:07:38
by dragazul

Code: Select all

 # Hiding
sub Hiding()

var x=0
While True
for x=1 to 15

endif
while not UO.Hidden()
UO.Warmode("0")
uo.print("hiding...")
UO.UseSkill("Hiding")
wait(10000)
stealth()
wend
end sub

# stealth
sub stealth()

var x=0
While True
for x=1 to 15

UO.Print("Stealth Script by Blue-Dragon")
UO.UseSkill ("stealth")
Wait (11000)
hiding()
wend

end sub