Hexist Newbie cheater
Reputation: 0
Joined: 07 Dec 2021 Posts: 10
|
Posted: Fri Dec 29, 2023 5:09 pm Post subject: Quick question about the dollar sign |
|
|
In the case of this script what does the dollar signs ($) mean when we put them before "process", ""addressOfCopy" etc. How does the Cheat Engine auto assembler interpret this and what is the difference if i were to use them without the dollar sign ?
| Code: | {$lua}
if addressOfCopy==nil then
addressOfCopy=copyMemory(getAddress(process),getModuleSize(process))
end
{$asm}
alloc(newmem3,2048,"gtutorial-x86_64.exe"+38E8F)
alloc(addressThatHoldsTheModuleBase,8,"gtutorial-x86_64.exe"+38E8F)
alloc(addressThatHoldsTheModuleEnd,8,"gtutorial-x86_64.exe"+38E8F)
alloc(addressThatHoldsTheCopyBase,8,"gtutorial-x86_64.exe"+38E8F)
addressThatHoldsTheModuleBase:
dq $process
addressThatHoldsTheModuleEnd:
dq $process+getModuleSize(process)
addressThatHoldsTheCopyBase:
dq $addressOfCopy |
|
|