Check if charstatus = hide

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
psycrow
Posts: 10
Joined: 2006-12-27 17:21:21

Check if charstatus = hide

Post 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
Nmy
Expert!
Posts: 2152
Joined: 2005-09-14 15:31:58
Location: Latvia

Re: Check if charstatus = hide

Post 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
psycrow
Posts: 10
Joined: 2006-12-27 17:21:21

Post by psycrow »

thanks alot :D :D :D

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