Created: 07/12/2022, 03:29:46 PM Updated: 02/05/2025, 03:47:20 PM View Change History
1
2
3
4
5
6
7
8
9
10if findtype '7875|7872' ground 0 1 2 as 'pickpocketDip'
11 if skill "hiding" < 80
12 useskill 'Hiding'
13 dclick 'pickpocketDip'
14 wait 11000
15 loop
16 endif
17
18 if not hidden
19 useskill 'Hiding'
20 dclick 'pickpocketDip'
21 wait 11000
22 endif
23
24 if hidden and skill 'stealth' < 100
25 useskill 'Stealth'
26 dclick 'pickpocketDip'
27 wait 11000
28 else
29 useskill 'Hiding'
30 dclick 'pickpocketDip'
31 wait 11000
32 endif
33else
34 overhead 'You need to be in front of a Pickpocket Dip'
35endif
36loop