View previous topic :: View next topic |
Author |
Message |
.lua Expert Cheater Reputation: 1
Joined: 13 Sep 2018 Posts: 194
|
Posted: Wed Dec 11, 2024 1:01 am Post subject: Regarding the issue of module address |
|
|
How to display module address(fl.Address)
Code: | function FindAndReplaceDoubleB(find)
ms=createMemScan()
ms.firstScan(soValueBetween, vtDword, rtTruncated, find,find,0,0xffffffffffffffff,'+W*X-C', fsmAligned,'4', false, false, false, false)
fl=createFoundList(ms)
ms.waitTillDone()
fl.initialize()
if fl.Count>0 then
for i=0,7 do
print(fl.Address[i])
end
end
fl.destroy()
ms.destroy()
end |
Description: |
|
Filesize: |
26.61 KB |
Viewed: |
711 Time(s) |
|
|
|
Back to top |
|
|
Dark Byte Site Admin Reputation: 467
Joined: 09 May 2003 Posts: 25595 Location: The netherlands
|
Posted: Wed Dec 11, 2024 1:48 am Post subject: |
|
|
look up getNameFromAddress
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
|
.lua Expert Cheater Reputation: 1
Joined: 13 Sep 2018 Posts: 194
|
Posted: Wed Dec 11, 2024 4:24 am Post subject: |
|
|
Dark Byte wrote: | look up getNameFromAddress |
I found it in the Lua help documentation, while the opposite is getAddressFromName.
I have another question, how do you determine that it is a static base address and change it to green
|
|
Back to top |
|
|
Dark Byte Site Admin Reputation: 467
Joined: 09 May 2003 Posts: 25595 Location: The netherlands
|
Posted: Wed Dec 11, 2024 11:01 am Post subject: |
|
|
when inModule(address) returns true
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
|
.lua Expert Cheater Reputation: 1
Joined: 13 Sep 2018 Posts: 194
|
Posted: Thu Dec 12, 2024 6:08 am Post subject: |
|
|
Dark Byte wrote: | when inModule(address) returns true | Oh My God, this is great. I still need to read more help files. There are too many good things in it.
|
|
Back to top |
|
|
|