-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathAir_Craft.py
744 lines (696 loc) · 26.7 KB
/
Air_Craft.py
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
import math
import win32gui
import numpy as np
import cv2
import pyautogui
import random
import time
import requests
import simplejson
import yaml
import core
from core import findWindow
global hwnd
global iflag
global icoord
from PIL import Image
from functions import mini_map_image, random_breaks, Image_count, mini_map_bool
import functions
iflag = False
def gfindWindow(data): # find window name returns PID of the window
global hwnd
hwnd = win32gui.FindWindow(None, data)
# hwnd = win32gui.GetForegroundWindow()860
#print('findWindow:', hwnd)
win32gui.SetActiveWindow(hwnd)
# win32gui.ShowWindow(hwnd)
win32gui.MoveWindow(hwnd, 0, 0, 865, 830, True)
with open("pybot-config.yaml", "r") as yamlfile:
data = yaml.load(yamlfile, Loader=yaml.FullLoader)
try:
gfindWindow(data[0]['Config']['client_title'])
except BaseException:
print("Unable to find window:", data[0]['Config']['client_title'], "| Please see list of window names below:")
core.printWindows()
pass
try:
x_win, y_win, w_win, h_win = core.getWindow(data[0]['Config']['client_title'])
except BaseException:
print("Unable to find window:", data[0]['Config']['client_title'], "| Please see list of window names below:")
core.printWindows()
pass
client_top_border = 30
client_side_border = 50
tiles_pixels = 4
offset_minimap_x = 377.0
offset_minimap_y = 195.0
offset_minimap_x_resize = 72
offset_minimap_y_resize = 81
offset_run_button_x = 150
offset_run_button_y = 130
offset_logout_x = 10
offset_logout_y = 10
degreesPerYaw: float = 360 / 2048
def find_center_minimap_resizable(window_features: list) -> list:
'''Returns the center of the window, excluding the borders.'''
x, y, w, h = window_features
map_center_x = x + (w -offset_minimap_x_resize)
map_center_y = y + offset_minimap_y_resize
return [map_center_x, map_center_y]
def compute_tiles(live_x: int, live_y: int, new_x: int, n_y: int) -> list:
global degreesPerYaw, tiles_pixels
'''Returns the range to click from the minimap center in amount of tiles.'''
# Get live camera data.
camera_data = plugin('camera')
print("camera data:", camera_data)
while camera_data is None:
camera_data = plugin('camera')
if camera_data != None:
# Get camera angle.
yaw = camera_data['yaw']
# Account for anticlockwise OSRS minimap.
degrees = 360 - degreesPerYaw * yaw
# Turn degrees into pi-radians.
theta = math.radians(degrees)
# Turn position difference into pixels difference.
x_reg = (new_x - live_x) * tiles_pixels
y_reg = (live_y - n_y) * tiles_pixels
# Formulas to compute norm of a vector in a rotated coordinate system.
tiles_x = x_reg * math.cos(theta) + y_reg * math.sin(theta)
tiles_y = -x_reg * math.sin(theta) + y_reg * math.cos(theta)
return [round(tiles_x, 1), round(tiles_y, 1)]
return [live_x, live_y]
def change_position(center_mini: list, live_pos: list, new_pos: list):
'''Clicks the minimap to change position'''
tiles = compute_tiles(live_pos[0], live_pos[1], new_pos[0], new_pos[1])
print("x:", center_mini[0] + tiles[0], "y:", center_mini[1] + tiles[1])
print("y1:", center_mini[1], "y2:", tiles[1])
pyautogui.click(center_mini[0] + tiles[0], center_mini[1] + tiles[1])
def determine_position_to_bank():
print('determining position to bank')
runes = count_runes()
if runes > 1:
return 8
if mini_map_bool('air_craft_bank.png', 0.7):
print('player located @ step 1')
print("to bank")
return 7
if mini_map_bool('air_craft_mark_1.png', 0.7):
print('player located @ step 2')
print("to bank")
return 6
if mini_map_bool('air_craft_mark_2.png', 0.7):
print('player located @ step 3')
print("to bank")
return 4
if mini_map_bool('air_craft_mark_3.png', 0.7):
print('player located @ step 4')
print("to bank")
return 3
if mini_map_bool('air_craft_mark_4.png', 0.7):
print('player located @ step 5_1')
print("to bank")
return 2
if mini_map_bool('air_craft_mark_5.png', 0.7):
print('player located @ step 5_2')
print("to bank")
return 1
if mini_map_bool('air_craft_mark_6.png', 0.7):
print('player located @ step 6_1')
print("to bank")
return 0
if mini_map_bool('air_craft_mark_7.png', 0.7):
print('player located @ step 6_2')
make_runes_at_alter()
print("to bank")
return 2
if mini_map_bool('air_craft_mark_8.png', 0.7):
print('player located @ step 6_3')
mini_map_image('air_craft_mark_8.png', 45, -10, 0.7, 'left', 15, 10)
print("to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 12)
return 0
if mini_map_bool('air_craft_mark_9.png', 0.7):
print('player located @ step 6_4')
mini_map_image('air_craft_mark_9.png', 45, -10, 0.7, 'left', 15, 10)
print("to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 12)
return 0
print('player unable to be located')
print("to air alter")
return 1
def determine_position_to_airalter():
print('determining position to air alter')
runes = count_runes()
print(runes)
if Plugin_Enabled:
live_pos = plugin('worldPoint')
print(live_pos['y'])
if live_pos['y'] > 4800:
window = x_win, y_win, w_win, h_win
center_minimap = find_center_minimap_resizable(window)
pyautogui.moveTo(center_minimap)
x_new = random.randrange(2840,2845)
y_new = random.randrange(4827, 4833)
cur_pos = live_pos['x'], live_pos['y']
new_pos = x_new, y_new
change_position(center_minimap, cur_pos, new_pos)
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
if runes > 1:
make_runes_at_alter()
else:
functions.find_Object(1, left=0, top=0, right=w_win, bottom=h_win)
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
if runes == 0 or runes == 1:
return 8
if mini_map_bool('air_craft_bank.png', 0.7):
print('player located @ step 1')
print("to air alter")
return 0
if mini_map_bool('air_craft_mark_1.png', 0.7):
print('player located @ step 2')
print("to air alter")
return 2
if mini_map_bool('air_craft_mark_2.png', 0.7):
print('player located @ step 3')
print("to air alter")
return 3
if mini_map_bool('air_craft_mark_3.png', 0.7):
print('player located @ step 4')
print("to air alter")
return 4
if mini_map_bool('air_craft_mark_4.png', 0.7):
print('player located @ step 5')
print("to air alter")
return 5
if mini_map_bool('air_craft_mark_9.png', 0.7):
print('player located @ step 5')
print("to air alter")
return 5
if mini_map_bool('air_craft_mark_5.png', 0.7):
print('player located @ step 6_1')
print("to air alter")
return 7
if mini_map_bool('air_craft_mark_6.png', 0.7):
print('player located @ step 6_2')
print("to air alter")
make_runes_at_alter()
return 8
if mini_map_bool('air_craft_mark_7.png', 0.7):
print('player located @ air alter')
print("to air alter")
make_runes_at_alter()
return 8
if mini_map_bool('air_craft_mark_9.png', 0.7):
print('player located @ step 6_3')
mini_map_image('air_craft_mark_9.png', 45, 10, 0.7, 'left', 15, 10)
print("to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 12)
return 0
print('player unable to be located')
print("to air alter")
return 0
def to_air_craft():
global bank_runes_position_x, bank_runes_position_y
step = 0
invent = functions.invent_enabled()
print(invent)
if invent == 0:
pyautogui.press('esc')
runes = count_runes()
if runes > 1:
step = determine_position_to_airalter()
else:
b = 1 # random.randrange(1, 3)
options = {1: to_bank}
options[b]()
functions.find_Object(1, left=0, top=0, right=w_win, bottom=h_win)
x = random.randrange(800, 900)
y = random.randrange(800, 900)
pyautogui.moveTo(x, y, duration=0.1)
print('bank booth')
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
c = random.uniform(6.5, 8.5)
time.sleep(c)
withdraw_bank_runes(bank_runes_position_x, bank_runes_position_y)
if step == 0:
while mini_map_image('air_craft_bank.png', -5, -5, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_bank.png', 0, 0, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_bank.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 1 to air alter spot not found")
print("step 1 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 1
if step == 1:
while mini_map_image('air_craft_bank.png', 0, 40, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_bank.png', 0, 40, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_bank.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 2 to air alter spot not found")
print("step 2 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 10)
step = 2
if step == 2:
while mini_map_image('air_craft_mark_1.png', 10, 40, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_1.png', 10, 40, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_1.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 3 to air alter not found")
print("step 3 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 3
if step == 3:
while mini_map_image('air_craft_mark_2.png', 10, 40, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_2.png', 10, 40, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_2.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 4 to air alter not found")
print("step 4 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 4
if step == 4:
while mini_map_image('air_craft_mark_3.png', 0, 40, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_3.png', 0, 40, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_3.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 5 to air alter not found")
print("step 5 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 5
if step == 5:
while mini_map_image('air_craft_mark_4.png', 0, 15, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_4.png', 0, 15, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_4.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 6 to air alter not found")
print("step 6 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 6
if step == 6:
while mini_map_image('air_craft_mark_4.png', 0, 40, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_4.png', 0, 40, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_4.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 7 to air alter not found")
print("step 7 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 7
if step == 7:
while mini_map_image('air_craft_mark_5.png', -20, 20, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_5.png', -20, 20, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_5.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 8 to air alter not found")
print("step 8 to air alter")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(12, 15)
step = 8
def to_bank():
global bank_runes_position_x, bank_runes_position_y
step = 0
invent = functions.invent_enabled()
print(invent)
if invent == 0:
pyautogui.press('esc')
runes = count_runes()
if runes == 0 or runes == 1:
step = determine_position_to_bank()
else:
make_runes_at_alter()
if step == 0:
while mini_map_image('air_craft_mark_6.png', 40, -10, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_6.png', 40, -10, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_6.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 1 to bank not found")
print("step 1 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(10, 13)
step = 1
if step == 1:
while mini_map_image('air_craft_mark_5.png', 0, -25, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_5.png', 0, -25, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_5.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 2 to bank not found")
print("step 2 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 10)
mini_map_image('air_craft_mark_5.png', 0, -55, 0.7, 'left', 15, 10)
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 2
if step == 2:
time_start = time.time()
time_end = 0
c = random.uniform(12.5, 14.5)
step2 = mini_map_image('air_craft_mark_4.png', 30, -15, 0.7, 'left', 15, 10)
while step2 == False and time_end < c:
time_end = time.time() - time_start
time.sleep(0.3)
step2 = mini_map_image('air_craft_mark_4.png', 30, -15, 0.7, 'left', 15, 10)
print(step2)
if step2 == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 3 to bank not found")
else:
print("step 3 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 11)
step = 3
if step == 3:
while mini_map_image('air_craft_mark_3.png', 5, -10, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_3.png', 5, -10, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_3.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 4 to bank not found")
print("step 4 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 4
if step == 4:
while mini_map_image('air_craft_mark_2.png', 10, -10, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_2.png', 10, -10, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_2.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 5 to bank not found")
print("step 5 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 5
if step == 5:
while mini_map_image('air_craft_mark_2.png', 5, -25, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_2.png', 5, -25, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_2.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 6 to bank not found")
print("step 6 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 6
if step == 6:
while mini_map_image('air_craft_mark_1.png', 5, -15, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_mark_1.png', 5, -15, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_mark_1.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 7 to bank not found")
print("step 7 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(5, 8)
step = 7
if step == 7:
while mini_map_image('air_craft_bank.png', 5, 0, 0.7, 'left', 15, 10) == False:
mini_map_image('air_craft_bank.png', 5, 0, 0.7, 'left', 15, 10)
if mini_map_bool('air_craft_bank.png', 0.7) == False:
print("air alter not found")
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)
print("step 8 to bank not found")
print("step 8 to bank")
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
random_breaks(8, 10)
step = 8
def make_runes_at_alter():
if mini_map_bool('air_craft_mark_7.png', 0.7) == False:
functions.find_Object(2, left=0, top=0, right=w_win, bottom=h_win)
c = random.uniform(1.5, 3)
time.sleep(c)
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
c = random.uniform(1.5, 3)
time.sleep(c)
functions.find_Object(2, left=0, top=0, right=w_win, bottom=h_win)
print('making runes')
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
c = random.uniform(6.5, 8)
time.sleep(c)
functions.find_Object(1, left=0, top=0, right=w_win, bottom=h_win)
print('enter rune area')
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
c = random.uniform(4, 6)
time.sleep(c)
def count_runes():
invent = functions.invent_enabled()
if invent == 0:
actions = 'opening inventory'
pyautogui.press('esc')
return functions.invent_count('rune_icon.png', threshold=0.7)
def withdraw_bank_runes(rune_x,rune_y):
x = random.randrange(800, 900)
y = random.randrange(800, 900)
pyautogui.moveTo(x,y)
error_c = 0
bank = functions.bank_ready(False)
while bank == False:
if error_c > 3:
exit()
if Plugin_Enabled:
if plugin() == 808:
functions.find_Object(1, left=0, top=0, right=w_win, bottom=h_win) # mark / highlight object marker for the bank booth - GREEN
else:
functions.find_Object(1, left=0, top=0, right=w_win,
bottom=h_win) # mark / highlight object marker for the bank booth - GREEN
x = random.randrange(800, 900)
y = random.randrange(800, 900)
pyautogui.moveTo(x, y, duration=0.1)
c = random.uniform(3, 6)
time.sleep(c)
bank = functions.bank_ready(False)
error_c += 1
print('bank booth')
functions.deposit_all_Bank()
functions.pick_item(rune_x, rune_y)
functions.exit_bank(Debug=False)
def runecrafting_air_runes(bankrune_x=185,bankrune_y=305):
invent = functions.invent_enabled()
if invent == 0:
actions = 'opening inventory'
pyautogui.press('esc')
a = 1 # random.randrange(1, 3)
functions.Image_Rec_single('activity_adviser.png', 'close activity advisor', iheight=5, iwidth=120, threshold=0.9, ispace=10, playarea=True)
options = {1: to_air_craft
}
options[a]()
runes = count_runes()
if runes > 1:
print("player has runes to craft")
functions.find_Object(2, left=0, top=0, right=w_win, bottom=h_win) # mark / highlight object marker for the entrance to air alter - YELLOW
print('air alter')
if Plugin_Enabled:
time.sleep(2)
while plugin() != 808:
time.sleep(0.1)
c = random.uniform(0.1, 1)
time.sleep(c)
else:
c = random.uniform(6.5, 8.5)
time.sleep(c)
make_runes_at_alter()
b = 1 # random.randrange(1, 3)
options = {1: to_bank
}
options[b]()
x = random.randrange(800, 900)
y = random.randrange(800, 900)
pyautogui.moveTo(x, y, duration=0.1)
withdraw_bank_runes(bankrune_x, bankrune_y) # mark / highlight object marker for the bank booth at falador - GREEN
def plugin(category='animation pose'):
c = s.get("http://localhost:8081/events", stream=True)
data = simplejson.loads(c.text)
data[category]
#print(data[category])
return data[category]
bank_runes_position_x = 375
bank_runes_position_y = 123
Run_Duration_Hours = 4
# object mark / highlught bank booth in falador green
# mark / highlight object marker for the entrance to air alter yellow
# mark / highlight object marker inside the air alter yellow and exit portal green
Plugin_Enabled = True
if Plugin_Enabled:
s = requests.session()
print(plugin())
if __name__ == "__main__":
findWindow("RuneLite")
x = random.randrange(100, 250)
y = random.randrange(400, 500)
pyautogui.click(x, y, button='right')
t_end = time.time() + (60 * 60 * Run_Duration_Hours)
while time.time() < t_end:
runecrafting_air_runes(bank_runes_position_x, bank_runes_position_y)