-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.py
4615 lines (3672 loc) · 116 KB
/
main.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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import ctypes
import ctypes.wintypes
import logging
import os.path
import struct
import time
from collections import Counter
from math import cos, sin
from typing import List
from ReadWriteMemory import Process, ReadWriteMemory
import logs
import pathing
import vars
import xbox
logger = logging.getLogger(__name__)
game_vars = vars.vars_handle()
FFXC = xbox.controller_handle()
# Process Permissions
PROCESS_QUERY_INFORMATION = 0x0400
PROCESS_VM_OPERATION = 0x0008
PROCESS_VM_READ = 0x0010
PROCESS_VM_WRITE = 0x0020
MAX_PATH = 260
base_value = 0
class LocProcess(Process):
def __init__(self, *args, **kwargs):
super(LocProcess, self).__init__(*args, **kwargs)
def read_bytes(self, lp_base_address: int, size: int = 4):
"""
See the original ReadWriteMemory values for details on how this works. This version allows us to pass
the number of bytes to be retrieved instead of a static 4-byte size. Default is 4 for reverse-compatibility
"""
try:
read_buffer = ctypes.c_uint()
lp_buffer = ctypes.byref(read_buffer)
lp_number_of_bytes_read = ctypes.c_ulong(0)
ctypes.windll.kernel32.ReadProcessMemory(
self.handle, lp_base_address, lp_buffer, size, lp_number_of_bytes_read
)
return read_buffer.value
except (BufferError, ValueError, TypeError) as error:
if self.handle:
self.close()
self.error_code = self.get_last_error()
error = {
"msg": str(error),
"Handle": self.handle,
"PID": self.pid,
"Name": self.name,
"ErrorCode": self.error_code,
}
ReadWriteMemoryError(error)
def write_bytes(self, lp_base_address: int, value: int, size: int = 4) -> bool:
"""
Same as above, write a passed number of bytes instead of static 4 bytes. Default is 4 for reverse-compatibility
"""
try:
write_buffer = ctypes.c_uint(value)
lp_buffer = ctypes.byref(write_buffer)
lp_number_of_bytes_written = ctypes.c_ulong(0)
ctypes.windll.kernel32.WriteProcessMemory(
self.handle,
lp_base_address,
lp_buffer,
size,
lp_number_of_bytes_written,
)
return True
except (BufferError, ValueError, TypeError) as error:
if self.handle:
self.close()
self.error_code = self.get_last_error()
error = {
"msg": str(error),
"Handle": self.handle,
"PID": self.pid,
"Name": self.name,
"ErrorCode": self.error_code,
}
ReadWriteMemoryError(error)
class FFXMemory(ReadWriteMemory):
def __init__(self, *args, **kwargs):
super(FFXMemory, self).__init__(*args, **kwargs)
self.process = LocProcess()
def get_process_by_name(self, process_name: str | bytes) -> "Process":
"""
:description: Get the process by the process executabe\'s name and return a Process object.
:param process_name: The name of the executable file for the specified process for example, my_program.exe.
:return: A Process object containing the information from the requested Process.
"""
if not process_name.endswith(".exe"):
self.process.name = process_name + ".exe"
process_ids = self.enumerate_processes()
for process_id in process_ids:
self.process.handle = ctypes.windll.kernel32.OpenProcess(
PROCESS_QUERY_INFORMATION, False, process_id
)
if self.process.handle:
image_file_name = (ctypes.c_char * MAX_PATH)()
if (
ctypes.windll.psapi.GetProcessImageFileNameA(
self.process.handle, image_file_name, MAX_PATH
)
> 0
):
filename = os.path.basename(image_file_name.value)
if filename.decode("utf-8") == process_name:
self.process.pid = process_id
self.process.name = process_name
return self.process
self.process.close()
raise ReadWriteMemoryError(f'Process "{self.process.name}" not found!')
def start():
global process
global x_ptr
global y_ptr
global coords_counter
coords_counter = 0
success = False
# rwm = ReadWriteMemory()
rwm = FFXMemory()
logger.info("#############")
logger.info(type(rwm))
process = rwm.get_process_by_name("FFX.exe")
logger.info("#############")
logger.info(type(process))
logger.info("#############")
process.open()
global base_value
try:
import zz_root_mem
logger.info("Process Modules:")
base_value = zz_root_mem.list_process_modules(process.pid)
logger.info("Process Modules complete")
logger.info(f"Dynamically determined memory address: {hex(base_value)}")
success = True
except Exception as err_code:
logger.error(
f"Could not get memory address dynamically. Error code: {err_code}"
)
base_value = 0x00FF0000
time.sleep(10)
return success
def float_from_integer(integer):
return struct.unpack("!f", struct.pack("!I", integer))[0]
def wait_frames(frames: int):
frames = max(round(frames), 1)
global base_value
key = base_value + 0x0088FDD8
current = process.read_bytes(key, 4)
final = current + frames
previous = current - 1
while current < final:
if not (current == previous or current == previous + 1):
final = final - previous
previous = current
current = process.read_bytes(key, 4)
return
def rng_seed():
if int(game_vars.confirmed_seed()) == 999:
global base_value
key = base_value + 0x003988A5
return process.read_bytes(key, 1)
return int(game_vars.confirmed_seed())
def set_rng_seed(value):
global base_value
key = base_value + 0x003988A5
logger.info("+++++++++++++++++")
logger.info(type(process))
logger.info("+++++++++++++++++")
return process.write_bytes(key, value, 1)
def game_over():
global base_value
key = base_value + 0x00D2C9F1
if process.read_bytes(key, 1) == 1:
return True
else:
return False
def battle_complete():
global base_value
key = base_value + 0x00D2C9F1
if process.read_bytes(key, 1) == 2:
return True
elif process.read_bytes(key, 1) == 3:
return True
else:
return False
def battle_arena_results():
global base_value
if process.read_bytes(base_value + 0x00D2C9F1, 1) == 2:
return True
return False
def game_over_reset():
global base_value
key = base_value + 0x00D2C9F1
process.write_bytes(key, 0, 1)
def battle_active():
global base_value
key = base_value + 0x00D2C9F1
return process.read_bytes(key, 1) == 0
def get_current_turn():
global base_value
key = base_value + 0x00D2AA00
return process.read_bytes(key, 1)
def get_next_turn():
global base_value
key = base_value + 0x00D2AA04
return process.read_bytes(key, 1)
def battle_menu_cursor():
global base_value
if not turn_ready():
return 255
key2 = base_value + 0x00F3C926
return process.read_bytes(key2, 1)
def battle_screen():
if main_battle_menu():
global base_value
if battle_menu_cursor() == 255:
return False
else:
wait_frames(10)
return True
else:
return False
def turn_ready():
global base_value
key = base_value + 0x00F3F77B
if process.read_bytes(key, 1) == 0:
return False
else:
while not main_battle_menu():
pass
wait_frames(1)
if game_vars.use_pause():
wait_frames(2)
return True
def battle_cursor_2():
global base_value
key = base_value + 0x00F3CA01
if process.read_bytes(key, 1) != 0:
key = base_value + 0x00F3CA0E
return process.read_bytes(key, 1)
else:
return 255
def battle_cursor_3():
global base_value
key = base_value + 0x00F3CAFE
return process.read_bytes(key, 1)
def overdrive_menu_active():
global base_value
key = base_value + 0x00F3D6F4
return process.read_bytes(key, 1) == 4
def overdrive_menu_active_wakka():
global base_value
key = base_value + 0x00DA0BD0
return process.read_bytes(key, 1)
def auron_overdrive_active():
global base_value
key = base_value + 0x00F3D6B4
return process.read_bytes(key, 1) == 4
def main_battle_menu():
global base_value
key = base_value + 0x00F3C911
if process.read_bytes(key, 1) > 0:
return True
else:
return False
def other_battle_menu():
global base_value
key = base_value + 0x00F3CA01
if process.read_bytes(key, 1) > 0:
return True
else:
return False
def interior_battle_menu():
global base_value
key = base_value + 0x00F3CAF1
return process.read_bytes(key, 1)
def super_interior_battle_menu():
global base_value
key = base_value + 0x00F3CBE1
return process.read_bytes(key, 1)
def battle_target_id():
global base_value
key = base_value + 0x00F3D1B4
ret_val = process.read_bytes(key, 1)
logger.debug(f"Battle Target ID: {ret_val}")
return ret_val
def battle_line_target():
return read_val(0x00F3CA42)
def enemy_targetted():
return read_val(0x00F3D1C0)
def battle_target_active():
global base_value
key = base_value + 0x00F3D1B4
ret_val = process.read_bytes(key, 1)
logger.debug(f"Battle Target ID: {ret_val}")
return ret_val != 255
def user_control():
global base_value
# Auto updating via reference to the base_value above
control_struct = base_value + 0x00F00740
in_control = process.read(control_struct)
if in_control == 0:
return False
else:
return True
def await_control():
wait_counter = 0
logger.debug("Awaiting control (no clicking)")
while not user_control():
wait_counter += 1
if wait_counter % 10000000 == 0:
# TODO: flush instead?
logger.debug(f"Awaiting control - {wait_counter / 100000}")
wait_frames(1)
return True
def click_to_control_dumb():
wait_counter = 0
logger.debug("Awaiting control (clicking)")
while not user_control():
xbox.tap_b()
wait_counter += 1
if wait_counter % 1000 == 0:
logger.debug(f"Awaiting control - {wait_counter / 1000}")
logger.debug("Control restored.")
return True
def click_to_control_smart():
wait_counter = 0
logger.debug("Awaiting control (clicking only when appropriate - dialog)")
wait_frames(6)
while not user_control():
if battle_active():
while battle_active():
xbox.tap_b()
if diag_skip_possible():
xbox.tap_b()
elif menu_open():
logger.debug("Post-battle menu open")
xbox.tap_b()
else:
pass
wait_counter += 1
if wait_counter % 10000 == 0:
logger.debug(f"Awaiting control - {wait_counter / 10000}")
logger.debug("User control restored.")
return True
def click_to_control():
return click_to_control_smart()
def click_to_control_2():
return click_to_control_smart()
def click_to_control_3():
return click_to_control_smart()
def click_to_control_special():
wait_counter = 0
logger.debug("Awaiting control (clicking)")
while not user_control():
FFXC.set_value("btn_b", 1)
FFXC.set_value("btn_y", 1)
wait_frames(30 * 0.035)
FFXC.set_value("btn_b", 0)
FFXC.set_value("btn_y", 0)
wait_frames(30 * 0.035)
wait_counter += 1
if wait_counter % 10000 == 0:
logger.debug(f"Awaiting control - {wait_counter / 10000}")
wait_frames(30 * 0.05)
return True
def click_to_event():
while user_control():
FFXC.set_value("btn_b", 1)
if game_vars.use_pause():
wait_frames(2)
else:
wait_frames(1)
FFXC.set_value("btn_b", 0)
if game_vars.use_pause():
wait_frames(3)
else:
wait_frames(1)
wait_frames(6)
def click_to_event_temple(direction):
if direction == 0:
FFXC.set_movement(0, 1)
if direction == 1:
FFXC.set_movement(1, 1)
if direction == 2:
FFXC.set_movement(1, 0)
if direction == 3:
FFXC.set_movement(1, -1)
if direction == 4:
FFXC.set_movement(0, -1)
if direction == 5:
FFXC.set_movement(-1, -1)
if direction == 6:
FFXC.set_movement(-1, 0)
if direction == 7:
FFXC.set_movement(-1, 1)
while user_control():
xbox.tap_b()
FFXC.set_neutral()
wait_frames(30 * 0.2)
while not user_control():
click_to_control_3()
wait_frames(30 * 0.035)
def await_event():
wait_frames(1)
while user_control():
pass
def get_coords():
global process
global base_value
global x_ptr
global y_ptr
global coords_counter
coords_counter += 1
x_ptr = base_value + 0x0084DED0
y_ptr = base_value + 0x0084DED8
coord_1 = process.get_pointer(x_ptr)
x = float_from_integer(process.read(coord_1))
coord_2 = process.get_pointer(y_ptr)
y = float_from_integer(process.read(coord_2))
return [x, y]
def ammes_fix(actor_index: int = 0):
global process
global base_value
base_ptr = base_value + 0x1FC44E4
base_addr = process.read(base_ptr)
# x_coord = 749, y_coord = -71
process.write(base_addr + (0x880 * actor_index) + 0x0C, 0x443B4000)
process.write(base_addr + (0x880 * actor_index) + 0x14, 0xC28E0000)
def choco_eater_fun(actor_index: int = 0):
global process
global base_value
base_ptr = base_value + 0x1FC44E4
base_addr = process.read(base_ptr)
process.write(base_addr + (0x880 * actor_index) + 0x14, 0xC4BB8000)
def extractor_height():
global process
global base_value
height = get_actor_coords(3)[2]
logger.debug(f"^^Extractor Height: {height}")
return height
def get_height():
global process
global base_value
global z_ptr
z_ptr = base_value + 0x0084DED0
coord_1 = process.get_pointer(z_ptr)
return float_from_integer(process.read(coord_1))
def get_movement_vectors():
global process
global base_value
addr = base_value + 0x00F00754
ptr = process.get_pointer(addr)
angle = float_from_integer(process.read(ptr))
forward = [cos(angle), sin(angle)]
right = [sin(angle), -cos(angle)]
return (forward, right)
def get_camera():
global base_value
angle = base_value + 0x008A86B8
x = base_value + 0x008A86F8
y = base_value + 0x008A8700
z = base_value + 0x008A86FC
angle2 = base_value + 0x008A86C0
key = process.get_pointer(angle)
angle_val = round(float_from_integer(process.read(key)), 2)
key = process.get_pointer(x)
x_val = round(float_from_integer(process.read(key)), 2)
key = process.get_pointer(y)
y_val = round(float_from_integer(process.read(key)), 2)
key = process.get_pointer(z)
z_val = round(float_from_integer(process.read(key)), 2)
key = process.get_pointer(angle2)
angle_val_2 = round(float_from_integer(process.read(key)), 2)
ret_val = [angle_val, x_val, y_val, z_val, angle_val_2]
return ret_val
def get_hp():
global base_value
# Out of combat HP only
coord = base_value + 0x00D32078
HP_Tidus = process.read(coord)
coord = base_value + 0x00D3210C
HP_Yuna = process.read(coord)
coord = base_value + 0x00D321A0
HP_Auron = process.read(coord)
coord = base_value + 0x00D32234
HP_Kimahri = process.read(coord)
coord = base_value + 0x00D322C8
HP_Wakka = process.read(coord)
coord = base_value + 0x00D3235C
HP_Lulu = process.read(coord)
coord = base_value + 0x00D323F0
HP_Rikku = process.read(coord)
return [HP_Tidus, HP_Yuna, HP_Auron, HP_Kimahri, HP_Wakka, HP_Lulu, HP_Rikku]
def get_max_hp():
global base_value
# Out of combat HP only
coord = base_value + 0x00D32080
HP_Tidus = process.read(coord)
coord = base_value + 0x00D32114
HP_Yuna = process.read(coord)
coord = base_value + 0x00D321A8
HP_Auron = process.read(coord)
coord = base_value + 0x00D3223C
HP_Kimahri = process.read(coord)
coord = base_value + 0x00D322D0
HP_Wakka = process.read(coord)
coord = base_value + 0x00D32364
HP_Lulu = process.read(coord)
coord = base_value + 0x00D323F8
HP_Rikku = process.read(coord)
return [HP_Tidus, HP_Yuna, HP_Auron, HP_Kimahri, HP_Wakka, HP_Lulu, HP_Rikku]
def get_tidus_mp():
global base_value
ret_val = process.read(base_value + 0xD3207C)
return ret_val
def get_yuna_mp():
global base_value
ret_val = process.read(base_value + 0xD32110)
return ret_val
def get_order():
global base_value
# Out of combat HP only
coord = base_value + 0x00D307E8
pos1 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307E9
pos2 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EA
pos3 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EB
pos4 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EC
pos5 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307ED
pos6 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EE
pos7 = process.read_bytes(coord, 1)
formation = [255, pos1, pos2, pos3, pos4, pos5, pos6, pos7]
logger.debug(f"Party formation: {formation}")
return formation
def get_order_six():
global base_value
# Out of combat HP only
coord = base_value + 0x00D307E8
pos1 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307E9
pos2 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EA
pos3 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EB
pos4 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EC
pos5 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307ED
pos6 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EE
pos7 = process.read_bytes(coord, 1)
formation = [pos1, pos2, pos3, pos4, pos5, pos6, pos7]
print(formation)
while 255 in formation:
formation.remove(255)
return formation
def get_order_seven():
global base_value
# Out of combat HP only
coord = base_value + 0x00D307E8
pos1 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307E9
pos2 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EA
pos3 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EB
pos4 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EC
pos5 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307ED
pos6 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EE
pos7 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307EF
pos8 = process.read_bytes(coord, 1)
coord = base_value + 0x00D307F0
pos9 = process.read_bytes(coord, 1)
formation = [pos1, pos2, pos3, pos4, pos5, pos6, pos7, pos8, pos9]
while 255 in formation:
formation.remove(255)
return formation
def get_char_formation_slot(char_num):
all_slots = get_order_seven()
x = 0
while x < len(all_slots):
if all_slots[x] == char_num:
return x
else:
x += 1
return 255 # Character is not in the party
def get_phoenix():
global base_value
key = get_item_slot(6)
p_downs = get_item_count_slot(key)
print("Phoenix Down count:", p_downs)
return p_downs
def get_power():
global base_value
key = get_item_slot(70)
power = get_item_count_slot(key)
print("Power spheres:", power)
return power
def set_power(qty):
global base_value
slot = get_item_slot(70)
key = base_value + item_count_addr(slot)
process.write_bytes(key, qty, 1)
power = get_power()
return power
def get_speed():
global base_value
key = get_item_slot(72)
speed = get_item_count_slot(key)
print("Speed spheres:", speed)
return speed
def set_speed(qty):
global base_value
slot = get_item_slot(72)
key = base_value + item_count_addr(slot)
process.write_bytes(key, qty, 1)
speed = get_speed()
return speed
def get_battle_hp():
global base_value
key = base_value + 0x00F3F7A4
hp1 = process.read(key)
key = base_value + 0x00F3F834
hp2 = process.read(key)
key = base_value + 0x00F3F8C4
hp3 = process.read(key)
hp_array = [hp1, hp2, hp3]
return hp_array
def get_encounter_id():
global base_value
key = base_value + 0x00D2A8EC
formation = process.read(key)
return formation
def clear_encounter_id():
global base_value
key = base_value + 0x00D2A8EC
process.write(key, 0)
def get_active_battle_formation():
global base_value
key = base_value + 0x00F3F76C
char1 = process.read_bytes(key, 1)
key = base_value + 0x00F3F76E
char2 = process.read_bytes(key, 1)
key = base_value + 0x00F3F770
char3 = process.read_bytes(key, 1)
battle_form = [char1, char2, char3]
return battle_form
def get_battle_formation():
global base_value
key = base_value + 0x00F3F76C
char1 = process.read_bytes(key, 1)
key = base_value + 0x00F3F76E
char2 = process.read_bytes(key, 1)
key = base_value + 0x00F3F770
char3 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A3
char4 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A4
char5 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A5
char6 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A6
char7 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A7
char8 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A8
char9 = process.read_bytes(key, 1)
key = base_value + 0x00D2C8A9
char10 = process.read_bytes(key, 1)
battle_form = [char4, char5, char6, char7, char8, char9, char10]
print(battle_form)
if 255 in battle_form:
while 255 in battle_form:
battle_form.remove(255)
battle_form.insert(0, char3)
battle_form.insert(0, char2)
battle_form.insert(0, char1)
print(battle_form)
return battle_form
def get_battle_char_slot(char_num) -> int:
battle_form = get_battle_formation()
if char_num not in battle_form:
return 255
try:
if battle_form[0] == char_num:
return 0
if battle_form[1] == char_num:
return 1
if battle_form[2] == char_num:
return 2
if battle_form[3] == char_num:
return 3
if battle_form[4] == char_num:
return 4
if battle_form[5] == char_num:
return 5
if battle_form[6] == char_num:
return 6
except Exception:
return 255
def get_battle_char_turn():
global base_value
key = base_value + 0x00D36A68
battle_character = process.read(key)
return battle_character
def get_slvl_yuna():
global base_value
# Out of combat HP only
coord = base_value + 0x00D32104
return process.read(coord)
def get_slvl_kim():
global base_value
# Out of combat HP only
coord = base_value + 0x00D3222C
return process.read(coord)
def get_slvl_wakka():
global base_value
# Out of combat HP only
key = base_value + 0x00D322E7
s_lvl = process.read_bytes(key, 1)
print("Wakka current Slvl", s_lvl)
return s_lvl
def item_address(num):
global base_value
return base_value + 0x00D3095C + (num * 0x2)
def get_items_order():
items = []
for x in range(100):
items.append(process.read_bytes(item_address(x), 1))
return items
def get_use_items_order():
item_array = get_items_order()
x = 0
while x < len(item_array):
try:
if item_array[x] == 20:
ignore_this_value = True
x += 1
elif item_array[x] < 23:
del item_array[x]
elif item_array[x] > 69:
del item_array[x]
else:
x += 1
except Exception as y:
print(y)
retry_this_value = True
print("Retrying value")
return item_array
def get_use_items_slot(item_num):
items = get_use_items_order()
x = 0
for x in range(len(items)):
print(items[x], "|", item_num, "|", x)
if items[x] == item_num:
return x
x += 1
return 255
def get_throw_items_order():
item_array = get_items_order()
print(item_array)
x = 0
while x < len(item_array):
try:
if item_array[x] > 18:
item_array.remove(item_array[x])
else:
x += 1
except Exception as y:
print(y)
retry_this_value = True
print("Retrying value")
print(item_array)
return item_array