Example of checking if something is equipped by Jaseowns

Related: Snippet

1# Example of checking if something is equipped by Jaseowns
2# UO Outlands
3
4if rhandempty and lhandempty
5    overhead "Nothing in hands"
6endif
7
8if not rhandempty and not lhandempty
9    overhead "Both Hands Full"
10endif
11
12if rhandempty
13    overhead "Right Hand Empty"
14endif
15
16if lhandempty
17    overhead "Left Hand Empty"
18endif
19
20
21