Things you should know before understanding how everything works.
There are four major number systems.
1. Binary
2. Octal
3. Decimal
4. Hexadecimal
Range
Binary system consist of 0 and 1 only.
Octal system consist of 0 to 7 only.
Decimal consist of 0 to 9 only.
Hexadecimal includes 0 to 9 and A, B, C, D, E, F.
Programming syntax (PART THAT YOU GET CONFUSED)
Every programming has a special syntax for programmers to code whatever number system they want. Since we are using Lua, we focus on Lua syntax.If you want to print out 30 in decimal, you use print(30). But if you want to print 30 in decimal from hexadecimal, you use print(0x1e).
0x1e: 0x indicates this number is in hexadecimal, 1e means 30 in decimal.
Now, look back to what you get from game guardian, offset :70. The 70 is in hexadecimal, so it works when you write 0x70 or 112. Also, 0xC not equal to 0x12, but 0xC equal to 12.