Page 1 of 1

Check if charstatus = hide

Posted: 2007-01-17 23:45:31
by psycrow
Hello, how can i add a check in my script to see if my character is hidden, something like:

if charstatus = not hidden then
uo.useskill('Stealth')
endif

i need this to put in the main section of my fishing script, to check if my character is really hidden, if not, to useskill stealth :D

Re: Check if charstatus = hide

Posted: 2007-01-18 00:13:17
by Nmy
psycrow wrote:Hello, how can i add a check in my script to see if my character is hidden, something like:

if charstatus = not hidden then
uo.useskill('Stealth')
endif

i need this to put in the main section of my fishing script, to check if my character is really hidden, if not, to useskill stealth :D


Code: Select all

while not uo.hidden()
uo.useskill('Hiding')
wait(4000)
wend

Posted: 2007-01-18 18:05:57
by psycrow
thanks alot :D :D :D

i´ll try it on my script for fishing :D :D :D