Difference between revisions of "Auto Assembler:dealloc"
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
* [[Auto Assembler:aobScanModule|aobScanModule]] | * [[Auto Assembler:aobScanModule|aobScanModule]] | ||
* [[Auto Assembler:alloc|alloc]] | * [[Auto Assembler:alloc|alloc]] | ||
+ | * [[Auto Assembler:createThread|createThread]] | ||
* [[Auto Assembler:define|define]] | * [[Auto Assembler:define|define]] | ||
* [[Auto Assembler:fullAccess|fullAccess]] | * [[Auto Assembler:fullAccess|fullAccess]] |
Revision as of 19:15, 11 March 2017
Auto Assembler dealloc(SymbolName)
Deallocates a block of memory allocated with alloc. It always gets executed last, no matter where it is positioned in the code, and only actually frees the memory when all allocations have been freed. Only usable in a script designed as a cheat table. (e.g used for the disable cheat)
Function Parameters
Parameter | Type | Description |
---|---|---|
SymbolName | string | The allocated symbol name to deallocate |
Examples
dealloc(SomeSymbol)