View previous topic :: View next topic |
Author |
Message |
citerindo How do I cheat?
Reputation: 0
Joined: 13 Feb 2022 Posts: 3
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Mon Feb 14, 2022 5:26 am Post subject: |
|
|
You will want this, which writes a 32-bit value to the address specified:
Code: |
writeInteger(0x02E147EC, Value)
|
It should be noted that when you encapsulate an address with square brackets, you're telling Cheat Engine that the value held at the address, is the address you want to read. Which it isn't in this case.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25796 Location: The netherlands
|
Posted: Mon Feb 14, 2022 5:36 am Post subject: |
|
|
copy the address to clipboard and then paste in notepad or some other text editor.
Find the id of the record
then use
Code: |
AddressList.getMemoryRecordByID(idyoufound).Value=Value
|
Also, you say you have no knowledge of Lua in CE so I'm assuming you've also got no clue on how to read out the value from the edit
Code: |
Value=CETrainer.CEEdit1.Text
|
you can even do:
Code: |
AddressList.getMemoryRecordByID(idyoufound).Value=CETrainer.CEEdit1.Text
|
_________________
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 |
|
 |
citerindo How do I cheat?
Reputation: 0
Joined: 13 Feb 2022 Posts: 3
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Tue Feb 15, 2022 6:51 am Post subject: |
|
|
Try this:
Code: |
function CETrainer_ChangeClick(sender)
local value = tonumber(CETrainer.TCEEdit.Text)
if value ~= nil then
writeInteger(0x2E147EC, value)
else
CETrainer.TCEEdit.Text = 'Please enter a value'
end
end
|
|
|
Back to top |
|
 |
Frouk Grandmaster Cheater
Reputation: 5
Joined: 22 Jun 2021 Posts: 510
|
Posted: Tue Feb 15, 2022 9:57 am Post subject: |
|
|
when you edit the form,button won't click,just close form editor and test it
and changing integer from TCELabel is impossible since its a string value
You can take value from TCEEdit only (variations of string and number)
You are asking to write string into integer
|
|
Back to top |
|
 |
|