-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArkTropics.ahk
470 lines (402 loc) · 12.3 KB
/
ArkTropics.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;;;; UPLOADED TO GIT after i found this link
;;;; https://guidedhacking.com/threads/ahk-ark-hacks-auto-attack-auto-fish.18246/ ;;;;
;;;; someone took my crappy script and used it as a guide =)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Global variables & toggles ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
i = 1
toggle_run := 0
toggle_walk := 0
toggle_attack := 0
toggle_e := 0
toggle_c := 0
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; READ ME STRINGS ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
title := ".:ARK TROPICS:."
welcomeText =
(
Welcome to Ark Tropics script.
This script contains the following functions.
.......ALL FUNCTIONS.......
-RUN F1
-WALK F2
-CLICK F3
-E F4
-C F5
-FISH ON F6
-FISH OFF F7
-READ ME F8
-EXIT ARK Tropics F9
Press Yes for instructions.
Press No to continue using ARK Tropics.
)
instructions =
(
AUTO RUN
Press F1 to Auto run.
Press (shift) F1 to stop running.
AUTO WALK
Press F2 to Auto walk.
Press F2 again to stop walking.
AUTO CLICK
Press F3 to Auto click/attack.
Press F3 again to stop clicking.
AUTO E
Press F4 to Auto press E.
Press F4 again to stop pressing.
AUTO C
Press F5 to Auto press C.
Press F5 again to stop pressing.
AUTO FISH
Press F6 to Auto fish.
Have your rod casted and let the script run.
Press F7 to stop the script.
The Auto fisher will automatically cast the rod again.
READ ME
Press F8 to see the manual
EXIT
Press F9 to close ARK Tropics
....................AUTO FISHING TROUBLESHOOTING....................
If the auto fisher does not work, make sure that your resolution
of the screen and the game are set on 1920x1080 and video settings
of ARK are on WindowedFullscreen and all other settings on default.
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WELCOME MSG & READ ME;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
manual:
if (i = 1) {
MsgBox, 4, %title% , %welcomeText%
IfMsgBox Yes
MsgBox, 0 , READ ME, %instructions%
else
i = 0
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Read the manual ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
F8::
i = 1
if (i = 1)
{
MsgBox, 4, %title%, %welcomeText%
IfMsgBox Yes
MsgBox, 0 , READ ME, %instructions%
else
i = 0
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Autorun macro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F1 to toggle on/off ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
arkAutoRun:
IfWinNotActive ARK: Survival Evolved
{
SendInput {Shift up}
SendInput {w up}
SetTimer, arkAutoRun, off
toggle_run = 0
}
return
F1::
IfWinNotActive ARK: Survival Evolved
return
if toggle_run = 0
{
SendInput {Shift down}
SendInput {w down}
SetTimer, arkAutoRun, 200
toggle_run = 1
ToolTip, AUTO RUN, 10, 50, 3
}
else
{
toggle_run = 0
SendInput {Shift up}
SendInput {w up}
SetTimer, arkAutoRun, off
Tooltip, , , , 3
}
return
+F1::
toggle_run = 0
SendInput {Shift up}
SendInput {w up}
SetTimer, arkAutoRun, off
Tooltip, , , , 3
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Autowalk macro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F2 to toggle on/off ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
arkAutoWalk:
IfWinNotActive ARK: Survival Evolved
{
SendInput {w up}
SetTimer, arkAutoWalk, off
toggle_walk = 0\
}
return
F2::
IfWinNotActive ARK: Survival Evolved
return
if toggle_walk = 0
{
SendInput {w down}
SetTimer, arkAutoWalk, 200
toggle_walk = 1
ToolTip, AUTO WALK, 10, 50, 3
}
else
{
toggle_walk = 0
SendInput {w up}
SetTimer, arkAutoWalk, off
Tooltip, , , , 3
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Autoattack macro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F3 to toggle on/off ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
arkAutoAttack:
IfWinActive ARK: Survival Evolved
{
SendEvent {Click}
}
else
{
SetTimer, arkAutoAttack, off
}
return
F3::
if toggle_attack = 0
{
toggle_attack = 1
SetTimer, arkAutoAttack, 100
ToolTip, AUTO ATTACK, 10, 10, 1
}
else
{
toggle_attack = 0
SetTimer, arkAutoAttack, off
Tooltip, , , , 1
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Auto E macro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F4 to toggle on/off ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
arkAutoE:
IfWinActive ARK: Survival Evolved
{
Send, e
}
else
{
SetTimer, arkAutoE, off
}
return
F4::
if toggle_e = 0
{
toggle_e = 1
SetTimer, arkAutoE, 100
ToolTip, AUTO E, 10, 30, 2
}
else
{
toggle_e = 0
SetTimer, arkAutoE, off
Tooltip, , , , 2
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Auto C macro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F5 to toggle on/off ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
arkAutoC:
IfWinActive ARK: Survival Evolved
{
Send, c
}
else
{
SetTimer, arkAutoC, off
}
return
F5::
if toggle_c = 0
{
toggle_c = 1
SetTimer, arkAutoC, 100
ToolTip, AUTO C, 10, 30, 2
}
else
{
toggle_c = 0
SetTimer, arkAutoC, off
Tooltip, , , , 2
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Auto Fisher macro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F6 to turn on ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Press F7 to stop ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
F7::
i := 1
ToolTip, STOPPED, 10, 10, 1
SetTimer, RemoveToolTip, -5000
return
F6::
i := 0
color = 0xFFFFFF
speed = 150
ToolTip, AUTO FISHING Started.`nwaiting for fish... , 10, 10, 1
while ( %i% = 0 )
{
;;Auto Recast Rod
PixelSearch, RecastPx, RecastPy, 0, 0, A_ScreenWidth/4, A_ScreenHeight/4, 0x7FFD03, 3, Fast ;
if (ErrorLevel = 0)
{
ToolTip, Casting in 3, 10, 10, 1
Sleep, 250
ToolTip, Casting in 3., 10, 10, 1
Sleep, 250
ToolTip, CASTING in 3.., 10, 10, 1
Sleep, 250
ToolTip, Casting in 3..., 10, 10, 1
Sleep, 250
ToolTip, Casting in 2, 10, 10, 1
Sleep, 250
ToolTip, Casting in 2., 10, 10, 1
Sleep, 250
ToolTip, Casting in 2.., 10, 10, 1
Sleep, 250
ToolTip, RCastingin 2..., 10, 10, 1
Sleep, 250
ToolTip, Casting in 1, 10, 10, 1
Sleep, 250
ToolTip, Casting in 1., 10, 10, 1
Sleep, 250
ToolTip, Casting in 1.., 10, 10, 1
Sleep, 250
ToolTip, Casting in 1..., 10, 10, 1
Sleep, 250
ToolTip, NOT CASTING ANYMORE!, 10, 10, 1
Sleep, 250
;;MouseClick, left
Sleep, 1000
ToolTip, Waiting for fish to take the bait... , 10, 10, 1
}
;;A
PixelSearch Px, Py, 1162, 970, 1162, 970, color, 3, Fast
if (ErrorLevel = 0)
{
;;WinActivate, ARK: Survival Evolved
Send, a
ToolTip, found the letter A... , 10, 10, 1
Sleep, speed
}
;;z
PixelSearch Px, Py, 1158, 973, 1158, 973, color, 3, Fast
if (ErrorLevel = 0)
{
;;WinActivate, ARK: Survival Evolved
Send, z
ToolTip, found the letter Z... , 10, 10, 1
Sleep, speed
}
;;q
PixelSearch Px, Py, 1181, 1016, 1181, 1016, color, 3, Fast
if (ErrorLevel = 0)
{
;;WinActivate, ARK: Survival Evolved
Send, q
ToolTip, found the letter Q... , 10, 10, 1
Sleep, speed
}
;;w
PixelSearch Px, Py, 1113, 868, 1113, 868, color, 3, Fast
if (ErrorLevel = 0)
{
;;WinActivate, ARK: Survival Evolved
Send, w
ToolTip, found the letter W... , 10, 10, 1
Sleep, speed
}
;;x
PixelSearch Px, Py, 1167, 972, 1167, 972, color, 3, Fast
if (ErrorLevel = 0)
{
;;WinActivate, ARK: Survival Evolved
Send, x
ToolTip, found the letter X... , 10, 10, 1
Sleep, speed
}
;;d
PixelSearch Px, Py, 1192, 906, 1192, 906, color, 3, Fast
if (ErrorLevel = 0)
{
;;WinActivate, ARK: Survival Evolved
Send, d
ToolTip, found the letter D... , 10, 10, 1
Sleep, speed
}
;;BEGIN PROCESS OF ELIMINATION TO FIND E, S, C
;;E
PixelSearch Px, Py, 1186, 998, 1186, 998, color, 3, Fast
PixelSearch PxA, PyA, 1162, 970, 1162, 970, color, 3, Fast ;;a
PixelSearch PxZ, PyZ, 1158, 973, 1158, 973, color, 3, Fast ;;z
PixelSearch PxW, PyW, 1113, 868, 1113, 868, color, 3, Fast ;;w
PixelSearch PxX, PyX, 1167, 972, 1167, 972, color, 3, Fast ;;x
PixelSearch PxD, PyD, 1192, 906, 1192, 906, color, 3, Fast ;;d
if ( Px && Py ) && (!PxA && !PyA) && (!PxZ && !PyZ) && (!PxW && !PyW) && (!PxX && !PyX) && (!PxD && !PyD)
{
Send, e
ToolTip, found the letter E... , 10, 10, 1
Sleep, speed
}
;;S
PixelSearch Px, Py, 1161, 917, 1161, 917, color, 3, Fast
PixelSearch PxZ, PyZ, 1158, 973, 1158, 973, color, 3, Fast ;;z
PixelSearch PxW, PyW, 1113, 868, 1113, 868, color, 3, Fast ;;w
PixelSearch PxX, PyX, 1167, 972, 1167, 972, color, 3, Fast ;;x
if ( Px && Py ) && (!PxZ && !PyZ) && (!PxW && !PyW) && (!PxX && !PyX)
{
Send, s
ToolTip, found the letter S... , 10, 10, 1
Sleep, speed
}
;;C
PixelSearch Px, Py, 1135, 918, 1135, 918, color, 3, Fast
PixelSearch PxQ, PyQ, 1181, 1016, 1181, 1016, color, 3, Fast ;;q
PixelSearch PxD, PyD, 1192, 906, 1192, 906, color, 3, Fast ;;d
if ( Px && Py ) && (!PxQ && !PyQ) && (!PxD && !PyD)
{
Send, c
ToolTip, found the letter C... , 10, 10, 1
Sleep, speed
}
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Exit the app ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
F9::
ExitApp
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
RemoveToolTip:
ToolTip
return