
Originally Posted by
erkepao
Could you give it to me so I can run it in cheat engine, please?
- - - Updated - - -
or how can I go from hexadecimal to aob?
Example:
disable zombie attacks
AoB = AOBScan("16 0A 12 ?? FE 15 ?? ?? ?? ?? 20 ?? ?? ?? ?? 0C")
if (AoB) then
print("Turn off zombie attacks Succeed")
for i=0,4 do
writeBytes(tonumber(AoB[i],16), 0x17)
end
AoB.Destroy()
AoB = nil
else
print("Turn off zombie attacks Fail Need Update")
end
- - - Updated - - -

Originally Posted by
ahmad823
Example:
disable zombie attacks
AoB = AOBScan("16 0A 12 ?? FE 15 ?? ?? ?? ?? 20 ?? ?? ?? ?? 0C")
if (AoB) then
print("Turn off zombie attacks Succeed")
for i=0,4 do
writeBytes(tonumber(AoB[i],16), 0x17)
end
AoB.Destroy()
AoB = nil
else
print("Turn off zombie attacks Fail Need Update")
end
or this
AoB = AOBScan("22 00 00 C0 3F 5A 58 7D 37 40 00 04 02 6F CF 28 00 06 1F 31")
if (AoB) then
print("Infinite Energy Activated")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+3, 0x70, 0x41)
end
else
print("Infinite Energy FAILED")
end
you need make AoB=AoBScan(" that hex") rest idk much