Back to "picking" tags

Train Lockpicking and Remove Trap with shelf restock by Jaseowns

Description: This script will use your shelf to restock lockpicks and trap tools while training your lockpicking and remove trap skills to 100. https://youtu.be/mFHMZX5CDyA

1# Lockpicking and Remove Trap by Jaseowns
2# UO Outlands
3# You may edit the skill checks to match your max skill
4# Requires: lockpick training box, lockpicks and trap removal tools
5# Shelf loadout: needs to have iron lockpick tools and iron trap tools
6
7if findtype "strong box" backpack
8    if skill "Lockpicking" < 100
9        overhead 'Lockpicking' 88
10        if findtype "lockpicks" backpack
11            dclicktype "lockpicks" backpack
12            wft
13            targettype "strong box" backpack
14            wait 4000
15        else
16            overhead "No lock picks!" 34
17            if findtype "storage shelf" ground -1 -1 2 as shelf
18                overhead 'Restocking...' 88
19                dclick shelf
20                waitforgump 3232825965 2000
21                gumpresponse 7
22                waitforgump 3232825965 2000
23                gumpclose 3232825965
24            endif
25            wait 500
26        endif 
27    endif
28    
29    if skill "Remove Trap" < 100
30        overhead 'Remove trap' 88
31        if findtype "drill" backpack
32            dclicktype "drill" backpack
33            wft
34            targettype "strong box" backpack
35            wait 4000
36        else
37            overhead "No trap tools!" 34
38            if findtype "storage shelf" ground -1 -1 2 as shelf
39                overhead 'Restocking...' 88
40                dclick shelf
41                waitforgump 3232825965 2000
42                gumpresponse 7
43                waitforgump 3232825965 2000
44                gumpclose 3232825965
45            endif
46            wait 500
47        endif 
48    endif
49    loop
50else
51    overhead "No training box" 34
52endif
53