-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathZestiria.CT
3854 lines (3650 loc) · 126 KB
/
Zestiria.CT
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
<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="45">
<CheatEntries>
<CheatEntry>
<ID>95</ID>
<Description>"Camera"</Description>
<Options moHideChildren="1"/>
<GroupHeader>1</GroupHeader>
<Address>"Tales of Zestiria.exe"+01D32490</Address>
<Offsets>
<Offset>D0</Offset>
<Offset>10</Offset>
<Offset>0</Offset>
<Offset>28</Offset>
</Offsets>
<CheatEntries>
<CheatEntry>
<ID>115</ID>
<Description>"idk lmao"</Description>
<Options moHideChildren="1"/>
<GroupHeader>1</GroupHeader>
<Address>+0</Address>
<CheatEntries>
<CheatEntry>
<ID>134</ID>
<Description>"Pos"</Description>
<GroupHeader>1</GroupHeader>
<Address>+0</Address>
<CheatEntries>
<CheatEntry>
<ID>127</ID>
<Description>"X"</Description>
<VariableType>Float</VariableType>
<Address>-C4</Address>
</CheatEntry>
<CheatEntry>
<ID>135</ID>
<Description>"Y"</Description>
<VariableType>Float</VariableType>
<Address>-C0</Address>
</CheatEntry>
<CheatEntry>
<ID>132</ID>
<Description>"Z"</Description>
<VariableType>Float</VariableType>
<Address>-BC</Address>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>137</ID>
<Description>"Pos2?"</Description>
<GroupHeader>1</GroupHeader>
<Address>+0</Address>
<CheatEntries>
<CheatEntry>
<ID>140</ID>
<Description>"X"</Description>
<VariableType>Float</VariableType>
<Address>-94</Address>
</CheatEntry>
<CheatEntry>
<ID>138</ID>
<Description>"Y"</Description>
<VariableType>Float</VariableType>
<Address>-90</Address>
</CheatEntry>
<CheatEntry>
<ID>139</ID>
<Description>"Z"</Description>
<VariableType>Float</VariableType>
<Address>-8C</Address>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>144</ID>
<Description>"Rotation? not correct"</Description>
<GroupHeader>1</GroupHeader>
<Address/>
<CheatEntries>
<CheatEntry>
<ID>143</ID>
<Description>"X?"</Description>
<VariableType>Float</VariableType>
<Address>-88</Address>
</CheatEntry>
<CheatEntry>
<ID>146</ID>
<Description>"Y?"</Description>
<VariableType>Float</VariableType>
<Address>-84</Address>
</CheatEntry>
<CheatEntry>
<ID>145</ID>
<Description>"Z?"</Description>
<VariableType>Float</VariableType>
<Address>-80</Address>
</CheatEntry>
</CheatEntries>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>96</ID>
<Description>"Height"</Description>
<VariableType>Float</VariableType>
<Address>+0</Address>
</CheatEntry>
<CheatEntry>
<ID>102</ID>
<Description>"Zoom"</Description>
<VariableType>Float</VariableType>
<Address>+4</Address>
</CheatEntry>
<CheatEntry>
<ID>125</ID>
<Description>"Actual Height"</Description>
<VariableType>Float</VariableType>
<Address>+8</Address>
</CheatEntry>
<CheatEntry>
<ID>118</ID>
<Description>"Actual Zoom"</Description>
<VariableType>Float</VariableType>
<Address>+C</Address>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>9963</ID>
<Description>"Show all entries in enemy book"</Description>
<Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Tales of Zestiria.exe
Version:
Date : 2022-05-26
Author : thing
This script does blah blah blah
}
[ENABLE]
aobscanmodule(enmBookCheck,Tales of Zestiria.exe,80 B8 D0 00 00 00 00 74 58) // should be unique
enmBookCheck+7:
db 90 90
enmBookCheck+51:
db 90 90
registersymbol(enmBookCheck)
[DISABLE]
enmBookCheck:
db 80 B8 D0 00 00 00 00 74 58
enmBookCheck+51:
db 74 0E
unregistersymbol(enmBookCheck)
{
// ORIGINAL CODE - INJECTION POINT: Tales of Zestiria.Kaim::Waitable::IsSignaled+C053
Tales of Zestiria.Kaim::Waitable::IsSignaled+C038: 8B 5D 08 - mov ebx,[ebp+08]
Tales of Zestiria.Kaim::Waitable::IsSignaled+C03B: 56 - push esi
Tales of Zestiria.Kaim::Waitable::IsSignaled+C03C: 8B 75 18 - mov esi,[ebp+18]
Tales of Zestiria.Kaim::Waitable::IsSignaled+C03F: 57 - push edi
Tales of Zestiria.Kaim::Waitable::IsSignaled+C040: 3B 45 10 - cmp eax,[ebp+10]
Tales of Zestiria.Kaim::Waitable::IsSignaled+C043: 74 7F - je "Tales of Zestiria.Kaim::Waitable::IsSignaled"+C0C4
Tales of Zestiria.Kaim::Waitable::IsSignaled+C045: EB 09 - jmp "Tales of Zestiria.Kaim::Waitable::IsSignaled"+C050
Tales of Zestiria.Kaim::Waitable::IsSignaled+C047: 8D A4 24 00 00 00 00 - lea esp,[esp+00000000]
Tales of Zestiria.Kaim::Waitable::IsSignaled+C04E: 8B FF - mov edi,edi
Tales of Zestiria.Kaim::Waitable::IsSignaled+C050: 83 E0 FE - and eax,-02
// ---------- INJECTING HERE ----------
Tales of Zestiria.Kaim::Waitable::IsSignaled+C053: 80 B8 D0 00 00 00 00 - cmp byte ptr [eax+000000D0],00
// ---------- DONE INJECTING ----------
Tales of Zestiria.Kaim::Waitable::IsSignaled+C05A: 74 58 - je "Tales of Zestiria.Kaim::Waitable::IsSignaled"+C0B4
Tales of Zestiria.Kaim::Waitable::IsSignaled+C05C: 83 FE FF - cmp esi,-01
Tales of Zestiria.Kaim::Waitable::IsSignaled+C05F: 74 1C - je "Tales of Zestiria.Kaim::Waitable::IsSignaled"+C07D
Tales of Zestiria.Kaim::Waitable::IsSignaled+C061: 8B 88 B4 00 00 00 - mov ecx,[eax+000000B4]
Tales of Zestiria.Kaim::Waitable::IsSignaled+C067: 8D 90 B4 00 00 00 - lea edx,[eax+000000B4]
Tales of Zestiria.Kaim::Waitable::IsSignaled+C06D: F6 C1 01 - test cl,01
Tales of Zestiria.Kaim::Waitable::IsSignaled+C070: 74 05 - je "Tales of Zestiria.Kaim::Waitable::IsSignaled"+C077
Tales of Zestiria.Kaim::Waitable::IsSignaled+C072: 83 E1 FE - and ecx,-02
Tales of Zestiria.Kaim::Waitable::IsSignaled+C075: EB 02 - jmp "Tales of Zestiria.Kaim::Waitable::IsSignaled"+C079
Tales of Zestiria.Kaim::Waitable::IsSignaled+C077: 03 CA - add ecx,edx
}
</AssemblerScript>
<CheatEntries>
<CheatEntry>
<ID>9976</ID>
<Description>"Not enabling this will cause your game to crash upon opening the Enemy Book!"</Description>
<Color>FF00FF</Color>
<GroupHeader>1</GroupHeader>
</CheatEntry>
<CheatEntry>
<ID>9964</ID>
<Description>"Workaround for fixed_string exception (Base game)"</Description>
<Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Tales of Zestiria.exe
Version:
Date : 2022-05-26
Author : thing
This script does blah blah blah
}
[ENABLE]
aobscan(enmBookFixedStringworkaround,45 4E 45 5F 50 53 59 30 00 00 45 4E 45 5F 50 53 59 30 00 00 55 4E 49 54 5F 46 4F 52 4D 41 54 5F 50 53 59 30) // should be unique
//??? (Symonne)
enmBookFixedStringworkaround+54:
db 00
//Mountain Troll
enmBookFixedStringworkaround+2450:
db 00
//Sorey (Fire Armatus)
enmBookFixedStringworkaround-2C6C:
db 00
//Rose (Earth Armatus)
enmBookFixedStringworkaround-32B8:
db 00
//Sorey (Water Armatus)
enmBookFixedStringworkaround-4F9C:
db 00
//Rose (Wind Armatus)
enmBookFixedStringworkaround+27C0:
db 00
//Eizen
enmBookFixedStringworkaround+2F4:
db 00
//Test
enmBookFixedStringworkaround-5070:
db 00
//Alisha (party)
enmBookFixedStringworkaround-5008:
db 00
//Rose (party)
enmBookFixedStringworkaround-E314:
db 00
//Sorey (party)
enmBookFixedStringworkaround-B614:
db 00
//Edna (party)
enmBookFixedStringworkaround-3250:
db 00
//Zaveid (party)
enmBookFixedStringworkaround+36F4:
db 00
//Lailah (party)
enmBookFixedStringworkaround-1EE4:
db 00
//Mikleo (party)
enmBookFixedStringworkaround-BE0:
db 00
//Dezel (party)
enmBookFixedStringworkaround-3570:
db 00
//Shadow Zaveid
enmBookFixedStringworkaround+1A8C:
db 00
//Shadow Lailah
enmBookFixedStringworkaround+D10:
db 00
//Shadow Mikleo
enmBookFixedStringworkaround+1108:
db 00
//Rose
enmBookFixedStringworkaround+434:
db 00
//Shadow Alisha
enmBookFixedStringworkaround+4A0:
db 00
//Shadow Rose
enmBookFixedStringworkaround+1540:
db 00
//Shadow Sorey
enmBookFixedStringworkaround+16F0:
db 00
//Zaveid
enmBookFixedStringworkaround+38A4:
db 00
//Shadow Edna
enmBookFixedStringworkaround+A20:
db 00
registersymbol(enmBookFixedStringworkaround)
[DISABLE]
unregistersymbol(enmBookFixedStringworkaround)
</AssemblerScript>
<CheatEntries>
<CheatEntry>
<ID>9974</ID>
<Description>"No Adventure Items DLC installed"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//Super Star S
enmBookFixedStringworkaround+1A0C:
db 00
//Super Star G
enmBookFixedStringworkaround+198C:
db 00
//Rowdy Katz
enmBookFixedStringworkaround-998:
db 00
//Bad Katz
enmBookFixedStringworkaround-A98:
db 00
//Super Star R
enmBookFixedStringworkaround+190C:
db 00
//Gangsta Katz
enmBookFixedStringworkaround-A18:
db 00
[DISABLE]
</AssemblerScript>
</CheatEntry>
<CheatEntry>
<ID>9975</ID>
<Description>"No God Eater DLC installed"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//Ogre Tailen
enmBookFixedStringworkaround-29C:
db 00
//Chihyu Dragon
enmBookFixedStringworkaround+24BC:
db 00
//Vajra
enmBookFixedStringworkaround+1E6C:
db 00
[DISABLE]
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>9968</ID>
<Description>"Workaround for fixed_string exception (Alisha DLC)"</Description>
<Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
aobscan(enmBookFixedStringworkaround,45 4E 45 5F 50 53 59 30 00 00 45 4E 45 5F 50 53 59 30 00 00 55 4E 49 54 5F 46 4F 52 4D 41 54 5F 50 53 59 30) // should be unique
//Test
enmBookFixedStringworkaround-55F8:
db 00
//Alisha (party)
enmBookFixedStringworkaround-5590:
db 00
//Edna (party)
enmBookFixedStringworkaround-3764:
db 00
//Mikleo (party)
enmBookFixedStringworkaround-C50:
db 00
//Sorey (party)
enmBookFixedStringworkaround+1548:
db 00
//Zaveid (party)
enmBookFixedStringworkaround+3768:
db 00
//Dezel (party)
enmBookFixedStringworkaround-3A84:
db 00
//Rose (party)
enmBookFixedStringworkaround+35C:
db 00
//Lailah (party)
enmBookFixedStringworkaround-20A0:
db 00
//??? (Symonne)
enmBookFixedStringworkaround+54:
db 00
//Mountain Troll
enmBookFixedStringworkaround+24C4:
db 00
//Shadow Zaveid
enmBookFixedStringworkaround+1B00:
db 00
//Shadow Rose
enmBookFixedStringworkaround+15B4:
db 00
//Rose
enmBookFixedStringworkaround+434:
db 00
//Shadow Alisha
enmBookFixedStringworkaround+4A0:
db 00
//Shadow Lailah
enmBookFixedStringworkaround+D10:
db 00
//Shadow Mikleo
enmBookFixedStringworkaround+1108:
db 00
//Zaveid
enmBookFixedStringworkaround+3918:
db 00
//Shadow Edna
enmBookFixedStringworkaround+A20:
db 00
//Shadow Sorey
enmBookFixedStringworkaround+1764:
db 00
//Rose (Earth Armatus)
enmBookFixedStringworkaround-37CC:
db 00
//Sorey (Fire Armatus)
enmBookFixedStringworkaround-2E98:
db 00
//Sorey (Water Armatus)
enmBookFixedStringworkaround-5524:
db 00
//Rose (Wind Armatus)
enmBookFixedStringworkaround+2834:
db 00
//Eizen
enmBookFixedStringworkaround+2F4:
db 00
registersymbol(enmBookFixedStringworkaround)
[DISABLE]
unregistersymbol(enmBookFixedStringworkaround)
</AssemblerScript>
<CheatEntries>
<CheatEntry>
<ID>9971</ID>
<Description>"No Adventure Items DLC installed"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//Super Star R
enmBookFixedStringworkaround+1980:
db 00
//Super Star G
enmBookFixedStringworkaround+1A00:
db 00
//Gangsta Katz
enmBookFixedStringworkaround-A18:
db 00
//Rowdy Katz
enmBookFixedStringworkaround-998:
db 00
//Bad Katz
enmBookFixedStringworkaround-A98:
db 00
//Super Star S
enmBookFixedStringworkaround+1A80:
db 00
[DISABLE]
</AssemblerScript>
</CheatEntry>
<CheatEntry>
<ID>9973</ID>
<Description>"No God Eater DLC installed"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//Ogre Tailen
enmBookFixedStringworkaround-29C:
db 00
//Chihyu Dragon
enmBookFixedStringworkaround+2530:
db 00
//Vajra
enmBookFixedStringworkaround+1EE0:
db 00
[DISABLE]
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>10191</ID>
<Description>"Alisha can armatize"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Tales of Zestiria.exe
Version:
Date : 2023-07-02
Author : thing
This script does blah blah blah
}
[ENABLE]
aobscanmodule(armaCheck,Tales of Zestiria.exe,83 7B 04 08 74 6D) // should be unique
armaCheck:
db 90 90 90 90 90 90
registersymbol(armaCheck)
[DISABLE]
armaCheck:
db 83 7B 04 08 74 6D
unregistersymbol(armaCheck)
{
// ORIGINAL CODE - INJECTION POINT: Tales of Zestiria.exe+A1E97
Tales of Zestiria.exe+A1E62: 80 BE 9C 05 00 00 00 - cmp byte ptr [esi+0000059C],00
Tales of Zestiria.exe+A1E69: 0F 85 9B 00 00 00 - jne "Tales of Zestiria.exe"+A1F0A
Tales of Zestiria.exe+A1E6F: 8B 96 A8 00 00 00 - mov edx,[esi+000000A8]
Tales of Zestiria.exe+A1E75: 8B 7A 28 - mov edi,[edx+28]
Tales of Zestiria.exe+A1E78: 80 BF 9C 05 00 00 00 - cmp byte ptr [edi+0000059C],00
Tales of Zestiria.exe+A1E7F: 0F 85 85 00 00 00 - jne "Tales of Zestiria.exe"+A1F0A
Tales of Zestiria.exe+A1E85: 83 BE FC 00 00 00 00 - cmp dword ptr [esi+000000FC],00
Tales of Zestiria.exe+A1E8C: 75 7C - jne "Tales of Zestiria.exe"+A1F0A
Tales of Zestiria.exe+A1E8E: 83 BF FC 00 00 00 00 - cmp dword ptr [edi+000000FC],00
Tales of Zestiria.exe+A1E95: 75 73 - jne "Tales of Zestiria.exe"+A1F0A
// ---------- INJECTING HERE ----------
Tales of Zestiria.exe+A1E97: 83 7B 04 08 - cmp dword ptr [ebx+04],08
// ---------- DONE INJECTING ----------
Tales of Zestiria.exe+A1E9B: 74 6D - je "Tales of Zestiria.exe"+A1F0A
Tales of Zestiria.exe+A1E9D: 8D 86 78 02 00 00 - lea eax,[esi+00000278]
Tales of Zestiria.exe+A1EA3: E8 B8 AF 01 00 - call "Tales of Zestiria.exe"+BCE60
Tales of Zestiria.exe+A1EA8: 84 C0 - test al,al
Tales of Zestiria.exe+A1EAA: 75 5E - jne "Tales of Zestiria.exe"+A1F0A
Tales of Zestiria.exe+A1EAC: 8B 0D 90 24 13 02 - mov ecx,["Tales of Zestiria.exe"+1D32490]
Tales of Zestiria.exe+A1EB2: E8 B9 BC FE FF - call "Tales of Zestiria.exe"+8DB70
Tales of Zestiria.exe+A1EB7: 84 C0 - test al,al
Tales of Zestiria.exe+A1EB9: 75 4F - jne "Tales of Zestiria.exe"+A1F0A
Tales of Zestiria.exe+A1EBB: 38 83 0C 43 00 00 - cmp [ebx+0000430C],al
}
</AssemblerScript>
</CheatEntry>
<CheatEntry>
<ID>197</ID>
<Description>"Notes"</Description>
<Options moHideChildren="1"/>
<Color>C0C0C0</Color>
<GroupHeader>1</GroupHeader>
<CheatEntries>
<CheatEntry>
<ID>10166</ID>
<Description>"Dropdowns"</Description>
<Options moHideChildren="1"/>
<GroupHeader>1</GroupHeader>
<CheatEntries>
<CheatEntry>
<ID>10167</ID>
<Description>"dropdown: Weakness"</Description>
<DropDownList DisplayValueAsItem="1">0:None
1:Weak
2:Resist
3:Resist?
4:Resist?
</DropDownList>
<GroupHeader>1</GroupHeader>
</CheatEntry>
<CheatEntry>
<ID>10187</ID>
<Description>"dropdown: No/Yes"</Description>
<DropDownList DisplayValueAsItem="1">0:No
1:Yes
</DropDownList>
<GroupHeader>1</GroupHeader>
</CheatEntry>
<CheatEntry>
<ID>13072</ID>
<Description>"dropdown: Enemy List"</Description>
<DropDownList DisplayValueAsItem="1">1:Sorey Lv1
2:Rose Lv1
3:Mikleo Lv1
4:Lailah Lv1
5:Edna Lv1
6:Dezel Lv1
7:Zavied Lv1
8:Alisha Lv1
9:Heldalf (~Biroclef Ridge) Lv80
10:Heldalf (Biroclef Ridge) Lv80
11:Heldalf (Artorius Throne) Lv80
12:???(Lunarre[Elysia]) Lv6
13:???(Lunarre[Ladylake]) Lv7
14:Lunarre Lv41
15:Lunarre Lv60
16:Cerberus Lv68
17:Duoblock Lv122
18:Dullahan Lv47
19:Odin Lv80
20:Asura Lv43
21:Minotauros Lv42
22:Medusa Lv39
23:Euryale Lv57
24:Stheno Lv56
25:Drake Lv19
26:Griffin Lv36
27:Hippogriff Lv80
28:Hecatoncheire Lv80
29:Eizen Lv80
30:Dinosaur Lv80
31:Dragon Zombie Lv145
32:Tiamat Lv62
33:Ammit Lv80
34:Fafnir Lv132
35:Armatized Heldalf Lv80
36:Dragonewt Lv24
37:Salamander Lv38
38:???(maybe Mimic?) Lv42
39:Maltran Lv61
40:Male Assassin Lv14
41:Female Assassin Lv14
42:Zaveid Lv14
43:Dark Turtlez Lv99
44:Sergei Lv25
45:Sergei Lv60
46:Spider in the Ruins Lv5
47:Prickleboar Lv6
48:Slime Glutton
49:Chancellor's Pawn Lv12
50:Rolance Swordsman Lv18
51:Rolance Spearman Lv18
52:Hellionized Rolance Swordsman Lv18
53:Hellionized Rolance Spearman Lv18
54:General Landon Lv22
55:Hound Dog Lv17
56:Fuseface Lv50
57:Werewolf Hellion Lv8
58:Giant Centipede Lv10
59:CRASH!
60:CRASH!
61:Sorey (Symonne Illusion?) Lv74
62:Sorey (Symonne Illusion?) Lv75
63:Rose (Symonne Illusion?) Lv74
64:Rose (Symonne Illusion?) Lv75
65:Catoblepas Lv80
66:Quetzalcoatl Lv115
67:Mayvin Lv56
68:Illuyankas Lv105
69:Wolf Lv7
70:Savage Wolf Lv18
71:Blazen Wolf Lv31
72:Managarmr (Boss) Lv19
73:Fury Wolf Lv120
74:Marmot Lv10
75:Skunk Lv25
76:Duobomb Lv44
77:Dangeroma (Boss) Lv35
78:Water Skunk Lv75
79:Boar Lv18
80:Brutaur Lv24
81:Wild Boar Lv35
82:Behemoth (Boss) Lv34
83:Boar Deity Lv100
84:Aquaphant Lv37
85:Elephant Lv43
86:Mammoth Lv64
87:Hyphant (Boss) Lv53
88:Ganesh Lv110
89:Scorpion Lv15
90:Scorpstar Lv36
91:Variant Needler Lv43
92:Serket (Boss) Lv36
93:Scarlet Needler Lv85
94:Armadillo Lv14
95:Geo Roller Lv24
96:Flame Roller Lv31
97:Pill Bug (Boss) Lv54
98:Freezillo Lv100
99:Centipede Lv8
100:Armored Centipede Lv29
101:Hundrepede Lv37
102:Millionpede (Boss) Lv40
103:Trilobite Lv70
104:Spider Edge Lv15
105:Orb-weaver Lv31
106:Arachne Lv62
107:Spider Queen (Boss) Lv45
108:Tarantulizm Lv100
109:Slime Lv8
110:Mud Slime Lv36
111:Slimeroot Lv54
112:Maneater (Boss) Lv65
113:Almond Jelly Lv90
114:Leech Lv9
115:Leecher Leech Lv30
116:Bloodsucker Lv38
117:Dirt Leech (Boss) Lv36
118:Femt Leech Lv100
119:Octopus Lv10
120:Dumpus Lv35
121:Octobert Lv39
122:Kraken (Boss) Lv48
123:Devil Fish Lv80
124:Darken Eye Lv37
125:Starfish Lv45
126:Voided Eye Lv64
127:Duhvision (Boss) Lv45
128:Soleye Lv110
129:Snake Lv7
130:Serpent Lv20
131:Cobra Lv38
132:Oroboros (Boss) Lv12
133:King Cobra Lv80
134:Lamia Lv12
135:Naga Lv35
136:Hell Lady Lv62
137:Echidna (Boss) Lv13
138:Midgard Serpent Lv85
139:Treant Lv20
140:Aged Treant Lv26
141:Elder Treant Lv56
142:Dryad (Boss) Lv40
143:Wood Chopper Lv70
144:Plantus Lv18
145:Forest Plantus Lv19
146:Merciless Plantus Lv45
147:Evil Plantasm (Boss) Lv19
148:Caterpillar Fungus Lv70
149:Bat Lv8
150:Dusk Bat Lv24
151:Vampire Lv59
152:Bat Baron (Boss) Lv40
153:Golden Bat Lv110
154:Axe Beak Lv18
155:Peacock Lv24
156:Blade Beak Lv43
157:King Peacock (Boss) Lv34
158:Golden Axer Lv95
159:Eagle Lv10
160:Hawk Lv25
161:Black Bird Lv42
162:Horus (Boss) Lv24
163:Bird-of-Paradise Lv70
164:Harpy Lv14
165:Wendy Lv40
166:Garuda Lv62
167:Harpy Go Lucky (Boss) Lv50
168:Hell Harpy Lv110
169:Orc Lv12
170:Orc Farmer Lv25
171:Orc Groomer Lv35
172:Orc Kong (Boss) Lv65
173:Orc Gorilla Lv95
174:Werewolf Lv20
175:Lycanthrope Lv43
176:Wolf Berserker Lv57
177:Breed Wolf (Boss) Lv32
178:Lycan Coyote Lv100
179:Troll Lv30
180:Cyclopz Lv45
181:Mountain Troll Lv56
182:Boss Troll (Boss) Lv49
183:Solveiger Lv75
184:War Tiger Lv30
185:Saber-toothed Tiger Lv40
186:Black Panther Lv62
187:Beast Master (Boss) Lv40
188:Killer Cougar Lv120
189:Goblin Shooter Lv24
190:Goblin Sniper Lv38
191:Goblin Ballista Lv59
192:Goblin Lord (Boss) Lv48
193:Goblin Cannon Lv95
194:Lizardman Lv18
195:Lizard Priest Lv33
196:Lizard Warrior Lv50
197:Dragon Warlock (Boss) Lv62
198:Dragoon Lv90
199:Living Armor Lv33
200:Armor Knight Lv52
201:Ancient Armor Lv64
202:Knight Arthur (Boss) Lv17
203:Wandering Armor Lv120
204:Rock Giant Lv36
205:Stone Colossal Lv46
206:Mythril Giant Lv57
207:Titan (Boss) Lv55
208:Lava Atlas Lv85
209:Pig Heddin Lv12
210:Wolf Heddin Lv20
211:Boar Heddin Lv31
212:Bison Heddin (Boss) Lv47
213:Bird Head Lv95
214:Zombie Lv23
215:Skeleton Lv27
216:Ghoul Lv47
217:Naught (Boss) Lv56
218:Immortus Lv85
219:Wraith Lv29
220:Ghost Lv48
221:Specter Lv62
222:Phantom (Boss) Lv25
223:Mist Puppeteer Lv90
224:Undead Magician Lv20
225:Undead Sorcerer Lv50
226:Undead Druid Lv55
227:Demon Rodler (Boss) Lv67
228:Undead Wizard Lv120
229:Pixie Lv15
230:Fairy Lv36
231:Sylphid Lv42
232:Trickster (Boss) Lv47
233:Changeling Lv75
234:Scylla Lv37
235:Aqua Scylla Lv45
236:Hydra Lv59
237:Nine-headed Serpent (Boss) Lv44
238:Technician Lv80
239:Devil Lv33
240:Gargoyle Lv40
241:Succubus Lv64
242:Angel (Boss) Lv69
243:Nightmare Lv120
244:Scaled Bird Lv24
245:Wyvern Lv40
246:Dragonflare Lv64
247:Legendary Wyvern (Boss) Lv55
248:Kylvern Lv90
249:CRASH!!
250:CRASH!!
251:CRASH!!
252:Mimic Giant Lv75
253:CRASH!
254:CRASH!
255:CRASH!
256:Sophie Lv100
257:Jade Lv115
258:Zaveid Lv40
259:Zaveid Lv42
260:Mimic Treant Lv25
261:Mimic Spider Lv15
262:Mimic Zombie Lv45
263:Agni Lv93
264:Symonne Lv76
265:Despot Heldalf Lv150
266:Despot Armatized Heldalf Lv150
267:Rougarou Lv27
268:Eizen Lv80
269:Mountain Troll Lv56
270:Phoenix Lv83
271:Rose Lv60
272:Zaveid Lv60
273:Heldalf Lv78
274:Sophie Lv150
275:Jade Lv150
276:Test (???) Lv1
277:Bad Katz Lv5
278:Gangsta Katz Lv5
279:Rowdy Katz Lv5
280:Super Star R Lv5
281:Super Star G Lv5
282:Super Star S Lv5
283:Vajra Lv120
284:Ogre Tailen Lv60
285:Chihyu Dragon Lv84
286:CRASH!!!
294:Shadow Sorey Lv60
295:Shadow Rose Lv60
296:Shadow Mikleo Lv60
297:Shadow Lailah Lv60
298:Shadow Edna Lv60
299:CRASH!!!
300:Shadow Zaveid Lv60
301:Shadow Alisha Lv60
302:Fuseface Lv50
303:Lunarre Lv41
304:Sergei Lv25
305:Symonne Lv76
306:Hellion Ooze Lv8
</DropDownList>
<GroupHeader>1</GroupHeader>
</CheatEntry>
</CheatEntries>
</CheatEntry>
<CheatEntry>
<ID>152</ID>
<Description>"Turn off friendly AI byte"</Description>
<ShowAsSigned>0</ShowAsSigned>
<VariableType>Byte</VariableType>
<Address>"Tales of Zestiria.exe"+1D30318</Address>
</CheatEntry>
<CheatEntry>
<ID>195</ID>
<Description>"Pause byte"</Description>
<ShowAsSigned>0</ShowAsSigned>
<VariableType>Byte</VariableType>
<Address>"Tales of Zestiria.exe"+1D3030C</Address>
</CheatEntry>
<CheatEntry>
<ID>196</ID>
<Description>"Fight end byte"</Description>
<ShowAsSigned>0</ShowAsSigned>
<VariableType>Byte</VariableType>
<Address>"Tales of Zestiria.exe"+1D302B1</Address>
</CheatEntry>
<CheatEntry>
<ID>206</ID>
<Description>"Map load shenanigans"</Description>
<VariableType>String</VariableType>
<Length>30</Length>
<Unicode>0</Unicode>
<CodePage>0</CodePage>
<ZeroTerminate>1</ZeroTerminate>
<Address>"Tales of Zestiria.exe"+1D3C9E4</Address>
</CheatEntry>
<CheatEntry>
<ID>10064</ID>
<Description>"Coordinates"</Description>
<Options moHideChildren="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Tales of Zestiria.exe
Version:
Date : 2023-06-17
Author : thing
This script does blah blah blah
}
[ENABLE]
aobscanmodule(coordsPTR,Tales of Zestiria.exe,89 50 44 89 78 48) // should be unique
alloc(newmem,$1000)
alloc(coords,8)
label(code)