View previous topic :: View next topic |
Author |
Message |
LOLOPOIPA How do I cheat?
Reputation: 0
Joined: 05 Feb 2022 Posts: 1
|
Posted: Sat Feb 05, 2022 8:05 am Post subject: I am not able to write a specific address using lua |
|
|
There is a static memory address that I can edit using cheat engine but can't edit using lua(just can read)
This is the address : Growtopia.exe+8B1790
Code: |
strings_add(getAutoAttachList (),"growtopia.exe")
function GROWTOPIASPOOFER_Spoof(sender)
writeFloat("Growtopia.exe+8B1790",getProperty(GROWTOPIASPOOFER_version,"Text"))
showMessage(readFloat("Growtopia.exe+8B1790"))
writeFloat("0x7FF621E21790",getProperty(GROWTOPIASPOOFER_version,"Text"))
end
|
|
|
Back to top |
|
 |
Frouk Grandmaster Cheater
Reputation: 5
Joined: 22 Jun 2021 Posts: 510
|
Posted: Sun Feb 06, 2022 2:32 am Post subject: |
|
|
convert address to hexadecimal
btw don't use "" when you have address in hex
|
|
Back to top |
|
 |
TheyCallMeTim13 Wiki Contributor
Reputation: 51
Joined: 24 Feb 2017 Posts: 976 Location: Pluto
|
Posted: Sun Feb 06, 2022 4:15 am Post subject: |
|
|
CE will view address strings with just numbers as hex by default. So do it like this.
Code: |
writeFloat("7FF621E21790",getProperty(GROWTOPIASPOOFER_version,"Text")) |
Or like this.
Code: |
writeFloat(0x7FF621E21790,getProperty(GROWTOPIASPOOFER_version,"Text")) |
But you might also have some issues since you're not using a static address here.
_________________
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8585 Location: 127.0.0.1
|
|
Back to top |
|
 |
|