Back to "b" tags

Ultimate Hiding Script by Jaseowns

1# Ultimate Hiding Script by Jaseownbs
2# UO Outlands
3# 
4#   We try and hide using the hiding skill, if that fails
5#   we try and use a smoke bomb
6#   if we are still not hidden, we cast invis
7#
8if not hidden
9    useskill "hiding"
10    wait 200
11    if not hidden 
12        if findtype 52149 backpack 2876
13            say "[SmokeBomb"
14            wait 200
15        endif
16    endif
17    
18    if not hidden and skill "Magery" >= 80
19        while not targetexists beneficial
20            cast "Invisibility"
21            wait 50
22        endwhile
23        while targetexists
24            hotkey "target self"
25        endwhile
26    endif
27endif