Hiding, Stealth, Lockpicking, Camping and Remove Traps Training by special_sy
Description: I suggest to train evrything in shelter dungeon to 80 first, its MUCH faster.
Get ~200 Kindlings
Get a lockpicking chest and open the gump
Get ~20-30 Lockpicks and Remove Trap tools
If you want you can also start tracking
Start the script
1# Start tracking if desired
2# Have around 100-200 kindlings
3# Get enough LP / Drills
4# Open Trap Chest Gump
5# Set gainCap to 80 for shelter, 100 for outside!
6# Start
7
8setvar! "gainCap" 80
9
10if skill 'camping' < gainCap
11 if not timerexists 'camping'
12 createtimer 'camping'
13 endif
14 if timer 'camping' > 300000
15 overhead 'Winter is coming'
16 settimer 'camping' 0
17 dclicktype 'kindling'
18 endif
19endif
20
21if skill 'lockpicking' < gainCap
22 overhead 'Lockpicking'
23 gumpresponse 4
24 wait 4000
25endif
26
27if skill 'detecting hidden' >= gainCap
28 overhead 'Lockpicking'
29 gumpresponse 4
30 wait 4000
31else
32 overhead 'Removing traps'
33 gumpresponse 7
34 wait 4000
35endif
36
37if skill 'stealth' < gainCap
38 overhead 'Stealth training'
39 if not hidden
40 useskill 'hiding'
41 elseif skill 'hiding' >= 80
42 useskill 'stealth'
43 endif
44 wait 4000
45 elseif skill 'hiding' < gainCap
46 overhead 'Hiding training'
47 useskill 'hiding'
48 wait 4000
49endif
50loop