Difference between revisions of "Auto Assembler:include"
Jump to navigation
Jump to search
(Replaced content with '<span style="font-size:25px;color:red">Sorry! Content not available.</span>') |
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
||
| Line 1: | Line 1: | ||
| − | + | [[Category:Assembler]] | |
| + | '''Auto Assembler''' include(''FileName'') | ||
| + | |||
| + | Includes another auto assembler file at that spot. | ||
| + | |||
| + | Note: The file name doesn't need to include the '.CEA' file extension. | ||
| + | |||
| + | === Command Parameters === | ||
| + | {|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0" | ||
| + | !align="left"|Parameter | ||
| + | !align="left"|Type | ||
| + | !style="width: 80%;background-color:white;" align="left"|Description | ||
| + | |- | ||
| + | |FileName | ||
| + | |string | ||
| + | |The file name of the CEA file to include | ||
| + | |} | ||
| + | |||
| + | |||
| + | == Examples == | ||
| + | include(someCeaFile) // Looks for 'someCeaFile.CEA' in the current directory. | ||
| + | |||
| + | include(someCeaFile.CEA) // Looks for 'someCeaFile.CEA' in the current directory. | ||
| + | |||
| + | |||
| + | == See also == | ||
| + | * [[Cheat_Engine:Auto Assembler|Auto Assembler]] | ||
| + | * [[Auto_Assembler:Commands|Auto Assembler Commands]] | ||
| + | |||
| + | === Related Commands === | ||
| + | * [[Auto Assembler:aobScan|aobScan]] | ||
| + | * [[Auto Assembler:aobScanModule|aobScanModule]] | ||
| + | * [[Auto Assembler:alloc|alloc]] | ||
| + | * [[Auto Assembler:dealloc|dealloc]] | ||
| + | * [[Auto Assembler:createThread|createThread]] | ||
| + | * [[Auto Assembler:define|define]] | ||
| + | * [[Auto Assembler:fullAccess|fullAccess]] | ||
| + | * [[Auto Assembler:globalAlloc|globalAlloc]] | ||
| + | * [[Auto Assembler:label|label]] | ||
| + | * [[Auto Assembler:loadBinary|loadBinary]] | ||
| + | * [[Auto Assembler:loadLibrary|loadLibrary]] | ||
| + | * [[Auto Assembler:readMem|readMem]] | ||
| + | * [[Auto Assembler:registerSymbol|registerSymbol]] | ||
| + | * [[Auto Assembler:unregisterSymbol|unregisterSymbol]] | ||
| + | * [[Auto Assembler:LUA ASM|LUA ASM]] | ||
Latest revision as of 19:08, 18 March 2019
Auto Assembler include(FileName)
Includes another auto assembler file at that spot.
Note: The file name doesn't need to include the '.CEA' file extension.
Command Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| FileName | string | The file name of the CEA file to include |
Examples[edit]
include(someCeaFile) // Looks for 'someCeaFile.CEA' in the current directory.
include(someCeaFile.CEA) // Looks for 'someCeaFile.CEA' in the current directory.