Back to "findlayer" tags

Find right hand weapon and overhead it by Jaseowns

1# Find my right hand weapon by Jaseowns
2# UO Outlands
3# Description:
4#   Overheads your current right hand on line 8
5#   or you can add specific checks
6if findlayer self righthand as myWeapon
7    getlabel myWeapon desc 
8    overhead desc 66
9    
10    // or specific checks
11    if "martial manual" in desc
12        overhead "Martial manual" 88
13    elseif "spellbook" in desc
14        overhead "Spellbook" 88
15    endif
16else
17    overhead "No weapon in right hand" 34
18endif