(AoB) Scanning for "Superboy"
Hey guys,
When the "superboy" code is activated, it makes the zombies re spawn every second, making them unable to attack you.
This has stopped working after the latest update and I am trying to learn how to update the AoB values. The problem I am having is that I don't know where or what values to scan.
I understand searching values like health and stamina, which are pretty simple numbers to find. I wouldn't know where to look for a "respawn" value, or something similar.
Do you guys have any ideas on this?
Thanks,
(Here is the code, by the way)
When the "superboy" code is activated, it makes the zombies re spawn every second, making them unable to attack you.
This has stopped working after the latest update and I am trying to learn how to update the AoB values. The problem I am having is that I don't know where or what values to scan.
I understand searching values like health and stamina, which are pretty simple numbers to find. I wouldn't know where to look for a "respawn" value, or something similar.
Do you guys have any ideas on this?
Thanks,
(Here is the code, by the way)
-- SUPERBOY:
AoB = AOBScan("1F ?? ?? ?? 06 00 04 02 ?? ?? ?? ?? 04 7B")
if (AoB) then
print("Superboy OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+1, 0x00)
end
else
print("Superboy FAILED")
end
AoB = AOBScan("1F ?? ?? ?? 06 00 04 02 ?? ?? ?? ?? 04 7B")
if (AoB) then
print("Superboy OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+1, 0x00)
end
else
print("Superboy FAILED")
end


