EEex_WriteByte

A lua function to write a single byte to an address location

EEex_WriteByte(Address, Byte)

Parameters

  • Address - the address in memory to write the Byte value to

  • Byte - the BYTE value to write

Return

None

Notes

This function, EEex_ExposeToLua, EEex_Init and EEex_AddressList are implemented by the EEex loader in the process space of the game executable as lua functions.

For more technical information on how the EEex loader works and how it implements these functions, please visit this wiki page

Example

EEex_WriteByte(0xFEDC3210, 0xFF)

See Also

EEex_ReadByte, EEex_ReadWord, EEex_WriteWord, EEex_ReadDword, EEex_WriteDword, EEex_Init, EEex_ExposeToLua, EEex_AddressList