0% found this document useful (0 votes)
10 views

PLEASE NOT DOWNLOAD THIS

Uploaded by

contaquee01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

PLEASE NOT DOWNLOAD THIS

Uploaded by

contaquee01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

his is only for int32 or public int/private int methods

For High Values: (useful for golds, diamonds or resources)

HEX CODE:
02 01 E0 E3 1E FF 2F E1 is equals to 2,147,483,648

ARM:
mvn r0, #0x80000000
bx lr
Another value for 2 billion:

HEX CODE:
7F 04 E0 E3 1E FF 2F E1 is equals to 2,130,706,432

ARM:
mvn r0, #0x7f000000
bx lr
Value for 133 million: (some games will make the value into a negative value when
it reached the max, such as using the above 2 billion)

HEX CODE:
7F 06 A0 E3 1E FF 2F E1 is equals to 133,169,152

ARM:
mov r0, #0x7f00000
bx lr
Value for 9,999: (useful for bullets, power ups etc.)

HEX CODE:
0F 07 02 E3 1E FF 2F E1 is equals to 9,999

ARM:
movw r0, #0x270f
bx lr

Those values above will work for sure.

--------------------------------------------

Now, this is only for float value or public float/private float methods

For now, this might be the maximum value for floats:

HEX CODE:
FA 04 44 E3 1E FF 2F E1 is equals to 2,000

ARM:
movt r0, #0x44fa
bx lr
--------------------------------------------

Now, for public long methods


If you want to return a high value such as 999,999,999: (useful for golds, etc.)

HEX CODE:
FF 09 0C E3 00 10 A0 E3 9A 0B 43 E3 1E FF 2F E1 is equals to 999,999,999

ARM:
movw r0, #0xc9ff
mov r1, #0
movt r0, #0x3b9a
bx lr
Be aware, do not use 1999, 599, 499, and higher max value than 2000. It will not
work. Only use 1000, 1500, 500 or with a zero digits.

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
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

Editing Floats

So if you find an offset and if there is a word called "(float)" you can use above
mentioned hex codes. But the editing is the same but the codes are different.

1 = 0000803F
2 = 00000040
4 = 00008040
8 = 00000041
16 = 00008041
32 = 00000042
64 = 00008042
128 = 00000043
256 = 00008043
512 = 00000044
1024 = 00008044
2048 = 00000045
4096 = 00008045
8192 = 00000046
16384 = 00008046
32768 = 00000047
65536 = 00008047
131072 = 00000048
262144 = 00008048
524288 = 00000049
1048576 = 00008049
2097152 = 0000004A
4194304 = 0000804A
8388608 = 0000004B
16777216 = 0000804B
33554432 = 0000004C
67108864 = 0000804C
134217728 = 0000004D
268435456 = 0000804D
536870912 = 0000004E
1073741824 = 0000804E
-2147483648 = 000000CF

You might also like