Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/10/2021 in all areas

  1. 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.
    2 points
  2. I suggest you don't work for 64bit use armabi-v7a instead. Coz... I tried you can't edit values in CODE_APP they are read-only. So download 32bit from apkpure and find.
    1 point
  3. 1 point
  4. Quit stealing my values [added 4 minutes later] Ur a b**** u couldn't find ur own values if u tried
    1 point
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.