Back to "question" tags

Equip a chain by Jaseowns

Description: You might want to use a dress agent but here is a script to equip a chain

# Equip a chain by Jaseowns # UO Outlands ####### # You might want to use a dress agent # but here is a script to equip a chain ######### # >info on the chain you want @setvar! equipThisChain 0x4195FBA8 @setvar! swapChain 0 if findlayer self talisman as item getlabel item desc overhead desc if equipThisChain = item overhead "Yep we got it on already" 88 else @setvar! swapChain 1 undress "talisman" endif else @setvar! swapChain 1 endif if swapChain = 1 # You might want to change this to dress? shrug if find equipThisChain backpack as item overhead "Equipping new chain" lift item drop self talisman wait 650 else overhead "Cannot find your chain, >info and update the variable" 34 endif endif