Help! table xex codes

power2020202020

Solid & Active Platinian
Original poster
Nov 3, 2022
58
15
8
34
brazil
00 00 A0 E3 1E FF 2F E1 = False or number 0
01 00 A0 E3 1E FF 2F E1 = True or number 1
02 00 A0 E3 1E FF 2F E1 = Number 2
07 00 A0 E3 1E FF 2F E1 = Number 7
0A 00 A0 E3 1E FF 2F E1 = Number 10
0F 00 A0 E3 1E FF 2F E1 = Number 15
10 00 A0 E3 1E FF 2F E1 = Number 16
11 00 A0 E3 1E FF 2F E1 = Number 17
12 07 80 E3 1E FF 2F E1 = VALUE OF 12 Million or It can be used for health/ammo/armour/damage
DC 0F 00 E3 1E FF 2F E1 = VALUE 4060
DC OF OF E3 1E FF 2F E1 = VALUE 120000
01 00 A0 E3 1E FF 2F E1 = VALUE 1 Also = True used for bool
00 00 A0 E3 1E FF 2F E1 = Value 0 Also = False used for bool
01 0A A0 E3 1E FF 2F E1 = 1000
01 08 A0 E3 1E FF 2F E1 = 10000
01 02 A0 E3 1E FF 2F E1 = 10000000
C2 0A 64 60 00 00 00 02 = Speed Hack
01 04 A0 E3 1E FF 2F E1 = 1000000
0E 00 A0 E3 1E FF 2F E1 = Fire Rate
FF FF = Value of 65535 = Highest value 4 character hex code
02 01 E0 E3 1E FF 2F E1 = 2,147,483,648
7F 04 E0 E3 1E FF 2F E1 = 2,130,706,432
7F 06 A0 E3 1E FF 2F E1 = 133,169,152
0F 07 02 E3 1E FF 2F E1 = 9,999
FA 04 44 E3 1E FF 2F E1 = 2,000
FF 09 0C E3 00 10 A0 E3 9A 0B 43 E3 1E FF 2F E1 = 999,999,999


hello i don't understand this whole table i learned bool true and false but the rest i don't know is there a tutorial teaching each of the options i don't know which one is damage,which one is money,which one can i use with bool,void,int,static,private,float
 

Yaskashije

PMT Elite Modder
Staff member
Modding-Team
Sep 9, 2018
4,384
851,229
1,213
Minkowski Space
That table is just the equivalence between the hex value in the binary and the assembly language instruction.
You can check this tutorial to take the next step.


The "full" tutorial for "each of the options" however is just learning ARM32 assembly language programming so that you can reverse the original code from the devs and modify it with your own.
 

libModz

Awesome Active Platinian
Jun 2, 2022
169
30
28
UK
If the method you are trying to hack is a bool, aka (get_strike) then you can only return a 0 or 1 (true or false) to this, you can't enter a hex value that is anything other than that.

If you want to change the strike damage, you need to find a method that rerurns a value, such as float, or int.
If the "get_strike" method you mentioned was a float or int, you could do that easily, however it is a bool which is why there is no difference when you changed the hex value.
 

power2020202020

Solid & Active Platinian
Original poster
Nov 3, 2022
58
15
8
34
brazil
is this amr7 default to use with bool,int,float,private,static ? always convert offset value using arm xex with that value mov r0, #0xFFF bx lr