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

Moderators: Murderator+, Murderator
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
Code: Select all
while not uo.hidden()
uo.useskill('Hiding')
wait(4000)
wend