Back to "ali" tags

Equip a chain by Jaseowns

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

1# Equip a chain by Jaseowns
2# UO Outlands
3#######
4# You might want to use a dress agent
5# but here is a script to equip a chain
6#########
7# >info on the chain you want
8@setvar! equipThisChain 0x4195FBA8
9
10
11@setvar! swapChain 0
12
13if findlayer self talisman as item
14    getlabel item desc
15    overhead desc
16    if equipThisChain = item
17        overhead "Yep we got it on already" 88
18    else
19        @setvar! swapChain 1  
20        undress "talisman"  
21    endif
22else
23    @setvar! swapChain 1    
24endif
25
26if swapChain = 1
27    # You might want to change this to dress? shrug
28    if find equipThisChain backpack as item
29        overhead "Equipping new chain"
30        lift item
31        drop self talisman
32        wait 650
33    else
34        overhead "Cannot find your chain, >info and update the variable" 34
35    endif
36endif