Skip to content
r0ah edited this page Oct 26, 2019 · 2 revisions

Write value to a specific static memory address.

Put the desired address in the A1-A8 and put your desired value in the B1-B8.

Format

Definition

  • 0: Code-Type Identifier
  • X: Bit
    • 0 - 8bit
    • 1 - 16bit
    • 2 - 32bit
  • A1-A8: Valid Memory Address
  • B1-B8: Value

Examples

_V0 Infinite Money
$0200 81000000 3B9AC9FF

Write the value of 0x3B9AC9FF (32bit) to the valid memory address 0x81000000.

Detailed Example

To lock your HP at 100, we need to put our HP's address (I'll use 0x83001337) into A1-A8 and 0x64 (100) into B1-B8.

_V0 100 HP
$0200 83001337 00000064
Clone this wiki locally