Cheat for Standalone client
[ Go to bottom | Go to latest post | Subscribe to this topic | Latest posts first ]
Cheat for Standalone client
from Xeleath on 06/19/2019 02:17 AMTutorial on how to execute them properly:
1. Open your CHEAT ENGINE and press Ctrl + Alt + L, a new window should pop up.
2. Copy the AoB hacks you want to use and paste them to the window that popped up (Lua Script: Cheat Table).
3. Now go to browser and login your account if you haven't yet. Go to inner city.
4. Press LAUNCH STANDALONE CLIENT but DO NOT YET CLICK PLAY.
5. Go back to Cheat Engine, select DeadFrontier.exe process, and enable speed hack.
6. Roll the bar to 0 but DO NOT YET PRESS APPLY. Go back to Standalone Client launcher and click play.
7. THIS IS IMPORTANT: While the screen is still white, go back to Cheat Engine and apply speed hack.
8. Now wait until COMMUNICATING WITH SERVER. appears.
9. Once it appears, press Execute Script in your lua table. Wait untill all scripts are executed.
10. Roll the speed hack bar to 1 and click apply. Done
*I could make a simple video tutorial if you guys are having problems.
AOB SCRIPTS AND WHAT THEY DO:
INFINITE ENERGY:
Code:
-- INFINITE ENERGY:
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
INSTANT OPEN MENU:
Code:
-- INSTANT OPEN MENU:
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
SUPER SPRINT:
Code:
-- SUPER SPRINT:
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
SUPER BOY: (Zombies respawn every second, making them unable to attack you.)
Code:
-- 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
MORE LOOT SPOTS: (Same as GM Loot, adds a few couple loot spots.)
Code:
-- MORE LOOT SPOTS:
AoB = AOBScan("01 00 04 02 1F 23 7D")
if (AoB) then
print("More Loot Spots OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+5, 0x13)
end
else
print("More Loot Spots FAILED")
end
WASTELAND MODE: (Turns all blocks into Wasteland.)
Code:
-- WASTELAND MODE:
AoB = AOBScan("80 ?? ?? ?? ?? 16 80 ?? ?? ?? ?? 7E ?? ?? ?? ?? 7E ?? ?? ?? ?? 58 69 80 ?? ?? ?? ?? 03 20 ?? ?? ?? ?? 3E")
if (AoB) then
print("Wasteland Mode OK")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+5, 0x17)
end
else
print("Wasteland Mode FAILED")
end
DISABLE ZOMBIE ATTACK: (I got this from BR13Vinicius's thread which is working perfectly so no need to update. I just made a few changes.)
Code:
-- DISABLE ZOMBIE ATTACK:
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[x],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[x],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[x],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[x],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
end
else
print("Disable Zombie Attack 4 FAILED")
end
USE AT YOUR OWN RISK. I WILL NOT BE RESPONSIBLE FOR YOUR ACCOUNTS.
Feel free to modify them. Make sure you know what you are doing though. Don't come blaming me when you're account gets banned.
I might release more AoB scripts soon, I'm still working on some and trying my best to make them safe.

Welcome %Guest% Hope you enjoy :)






Reply