Back to "trap" tags

Training Lockpicking and Remove Trap QUICKLY by Jaseowns

1# Training Lockpicking and Remove Trap QUICKLY by Jaseowns
2# Get a lockpick training box
3# Click continuous lockpicking, and click pick lock
4# abuser script 
5
6@clearignore 
7
8@setvar! jaseowns_BUG 0
9@setvar! myMaxLockpickingSkillValue 100
10@setvar! myMaxDetectHiddenSkillValue 100
11
12while findtype "strong box" backpack as item
13    dclick item
14    wait 650
15    if jaseowns_BUG = 0 and skill "Lockpicking" < myMaxLockpickingSkillValue
16        overhead "Lockpicking" 77
17        gumpresponse 4 736038070
18        @setvar! jaseowns_BUG 1
19    else
20        if skill "Detecting Hidden" < myMaxDetectHiddenSkillValue
21            overhead "Remove Trap" 88
22            gumpresponse 7 736038070       
23        endif
24        @setvar! jaseowns_BUG 0
25    endif
26    wait 650
27    @ignore item
28endwhile
29
30
31