tobyadd How do I cheat?
Reputation: 0
Joined: 25 May 2021 Posts: 2
|
Posted: Wed May 26, 2021 11:17 am Post subject: One problem.../ |
|
|
Hello. Can you help me with cheat trainer?
This is code:
Code:
Code: | form_show(UDF1)
function UDF1_NoclipClick(sender)
if UDF1.Noclip.State == 1 then
UDF1.Noclip.Caption = 'Noclip [ON]'
local addressList = getAddressList()
local Noclip = addressList.getMemoryRecordByDescription('Noclip')
Noclip.Value = 'E9 79 06 00 00'
elseif UDF1.Noclip.State == 0 then
local addressList = getAddressList()
local Noclip = addressList.getMemoryRecordByDescription('Noclip')
Noclip.Value = '6A 14 8B CB FF'
UDF1.Noclip.Caption = 'Noclip [OFF]'
end
end
function UDF1_FormClose(sender)
closeCE()
return caFree
end
function UDF1_connectClick(sender)
openProcess('GeometryDash.exe')
end |
[Address list 'GeometryDash.exe+20A23C' and type 'Array of byte']
When I compile this in exe file, trainer don't work. How it i can fix?
Thanks!
|
|