Lumberjacking with Catpcha and Tracking by Brozan (Syal)
Description: Lumberjacking script that detects captchas and watches for tracking messages
1#Script by Brozan
2#Spot Jacker with recall on Track
3###
4
5// REQUIRES script "Miner Recall"
6// If you do not want to set this up
7// create a script named above
8// and just have a recall routine in it
9
10#Needs magery 60
11#Have a marked recall rune in pack
12# and regs and no unmarked
13
14#Need tracking turned on
15# and set to all hostile
16# not in houses/party/guild
17
18clearsysmsg
19@createlist packAnimals
20
21if not timerexists "miner"
22 #We use this as a first run loop to set vars
23 overhead 'First Run!'
24 createtimer "miner"
25 settimer "miner" 1100
26 hotkey 'Tracking'
27 wait 500
28 overhead 'Make Sure Tracking is on!'
29 sysmsg 'Make Sure Tracking is on!'
30endif
31
32
33overhead 'Starting'
34
35# Equip a axe
36if lhandempty
37 dclicktype '3908'
38 wait 600
39endif
40
41#Hit it once
42hotkey 'use item in left hand'
43waitfortarget 555
44target 'self'
45settimer "miner" 0
46//long delay for lag and empty spot check
47wait 500
48
49#Jacking Loop
50while not insysmsg 'You do not see any'
51 if insysmsg 'Now tracking'
52 overhead 'Ah shit!!!'
53 script 'Miner Recall'
54 endif
55 if weight >= 365
56 overhead 'Too fat - restart'
57 break
58 endif
59
60 if timer "miner" >= 4300
61 #wait 100
62 if insysmsg 'Harvesting is not'
63 overhead 'Cant harvest'
64 break
65 endif
66 if insysmsg 'recently travel'
67 overhead 'Just recalled'
68 break
69 endif
70 if insysmsg 'You have worn out your tool!'
71 break
72 endif
73
74 //captcha check
75 if not insysmsg "skill gain" and not insysmsg 'world is saving' and not insysmsg 'world will save' and not insysmsg 'World save complete' and not insysmsg 'You chop' and not insysmsg 'You hack' and not insysmsg 'Distance to destination' and not insysmsg 'Now tracking'
76 //pause and check again
77 wait 3750
78 if not insysmsg "skill gain" and not insysmsg 'world is saving' and not insysmsg 'world will save' and not insysmsg 'World save complete' and not insysmsg 'You chop' and not insysmsg 'You hack' and not insysmsg 'Distance to destination' and not insysmsg 'Now tracking'
79 overhead 'Captcha break or Done!' 34
80 break
81 endif
82 endif
83
84 #clearsysmsg
85 hotkey 'use item in left hand'
86 waitfortarget 555
87 target 'self'
88
89 settimer "miner" 0
90 wait 100
91 endif
92 wait 50
93endwhile
94
95overhead 'Spot Done' 33
96sysmsg 'Spot Done' 33
97
98hotkey 'All Names'
99
100while not dead
101 if timer "miner" >= 3000
102 #dclicktype 'lute'
103 overhead 'Tracking'
104 settimer miner 0
105 endif
106 if insysmsg 'Now tracking'
107 overhead 'Ah shit!!!'
108 script 'Miner Recall'
109 endif
110 wait 500
111
112 if weight >= 365
113 overhead 'Too fat'
114 endif
115endwhile