OrpheuMemoryGetAtAddress

Retrieves data in memory. It works like OrpheuMemoryGet but starts at a given address

Syntax

native OrpheuMemoryGetAtAddress(address,const memoryDataName[],any:...) /** * Alters data in memory. The block of data that qualifies memory must also identify it by having identifier blocks. * Memory can be located given an offset or a signature * * @param memoryDataName The name of the block that qualifies memory as defined in a file at "configs/orpheu/memory" * @param count The number of occurences to alter. 0 = infinite * @param any The value to use as replacement * You can give an extra argument to retrieve the address where the data retrieved lies * * @return Number of occurences replaced */ native OrpheuMemorySet(const memoryDataName[],count,any:...) /** * Alters data in memory. It works like OrpheuMemorySet but starts at a given address * * @param address The address to start at * @param memoryDataName The name of the block that qualifies memory as defined in a file at "configs/orpheu/memory" * @param count The number of occurences to alter. 0 = infinite * @param any The value to use as replacement * You can give an extra argument to retrieve the address where the data retrieved lies * * @return Number of occurences replaced */ native OrpheuMemorySetAtAddress(address,const memoryDataName[],count,any:...)

Usage

address The address to start at
memoryDataName The name of the block that qualifies memory as defined in a file at "configs/orpheu/memory"

Return

If — the type of the memory location is not passed by ref, its value

Defined in orpheu_memory.inc at line 71 . This documentation was automatically generated from source.