OrpheuMemoryReplaceAtAddress

Replaces data in memory.It works like OrpheuMemoryReplace but starts at a given address

Syntax

native OrpheuMemoryReplaceAtAddress(address,const memoryDataNameName[],count,any:...) /** * Retrieves 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 any If the type of the memory location is passed by ref, the variables needed to get the value * You can give an extra argument to retrieve the address where the data retrieved lies * * @return If the type of the memory location is not passed by ref, its value */ native OrpheuMemoryGet(const memoryDataName[],any:...) /** * Retrieves data in memory. It works like OrpheuMemoryGet 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 any If the type of the memory location is passed by ref, the variables needed to get the value * You can give an extra argument to retrieve the address where the data retrieved lies * * @return If the type of the memory location is not passed by ref, its value */ 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

Usage

address The address to start at
memoryDataNameName
count The number of occurence. 0 = infinite

Return

The — number of replacements made

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