0% found this document useful (0 votes)
65 views2 pages

New Text Document

The document contains code to modify a game by disabling zombie attacks, enabling infinite energy, allowing instant menu opening, and enabling super sprint. It uses AOBScan to search for specific byte patterns, checks if they are found, and if so modifies the bytes to apply the desired changes, printing whether each modification was successful or failed.

Uploaded by

Ahmed Kamal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
65 views2 pages

New Text Document

The document contains code to modify a game by disabling zombie attacks, enabling infinite energy, allowing instant menu opening, and enabling super sprint. It uses AOBScan to search for specific byte patterns, checks if they are found, and if so modifies the bytes to apply the desired changes, printing whether each modification was successful or failed.

Uploaded by

Ahmed Kamal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

AoB = AOBScan("02 7B ?? ?? ?? ?? 7B ?? ?? ?? ?? 28 ?? ?? ?? ??

16 6B 3D 2D")
if (AoB) then
for i=0,0 do
writeBytes(tonumber(AoB[i],16)+19, 0x00)
end
AoB.Destroy()
AoB = nil
print("Instant Kill OK")
else
print("Instant Kill FAILED")
end

AoB = AOBScan("72 69 67 68 74 20 61 74 74 61 63 6B")


if (AoB) then
print("Disable Zombie Attack 1 OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[i],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00)
end
else
print("Disable Zombie Attack 1 FAILED")
end

AoB = AOBScan("64 6F 75 62 6C 65 20 61 74 74 61 63 6B")


if (AoB) then
print("Disable Zombie Attack 2 OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[i],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00)
end
else
print("Disable Zombie Attack 2 FAILED")
end

AoB = AOBScan("6C 65 66 74 20 61 74 74 61 63 6B")


if (AoB) then
print("Disable Zombie Attack 3 OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[i],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00)
end
else
print("Disable Zombie Attack 3 FAILED")
end

AoB = AOBScan("73 74 61 62 20 61 74 74 61 63 6B")


if (AoB) then
print("Disable Zombie Attack 4 OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[i],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00)
end
else
print("Disable Zombie Attack 4 FAILED")
end

AoB = AOBScan("22 ?? ?? ?? ?? 5A 58 7D ?? ?? ?? ?? 02 7B ?? ?? ?? ?? 02 7B")


if (AoB) then
print("Infinite Energy OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+3, 0x70, 0x41)
end
else
print("Infinite Energy FAILED")
end

AoB = AOBScan("80 ?? ?? ?? ?? 02 1F ?? 7D ?? ?? ?? ?? 38 ?? ?? ?? ?? 02 7B ?? ?? ??
?? 7B ?? ?? ?? ?? 17")
if (AoB) then
print("Instant Open Menu OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+7, 0x00)
end
else
print("Instant Open Menu FAILED")
end

AoB = AOBScan("60 ?? ?? ?? CC ?? ?? ?? ?? 78 ?? ?? 11 ?? 6B 5A 58 5A ?? 9A")


if (AoB) then
print("Super Sprint OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+5, 0x7A, 0x40)
end
else
print("Super Sprint FAILED")
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy