Example of checking if something is equipped by Jaseowns
Related: Snippet
# Example of checking if something is equipped by Jaseowns
# UO Outlands
if rhandempty and lhandempty
overhead "Nothing in hands"
endif
if not rhandempty and not lhandempty
overhead "Both Hands Full"
endif
if rhandempty
overhead "Right Hand Empty"
endif
if lhandempty
overhead "Left Hand Empty"
endif