Standalone Client AOB Hack Updates + Tutorial (Working 05/04/19)

Posts 91105 of 123 · Page 7 of 9
Quote Originally Posted by InfinityGamer01 View Post
I've looked into threads and found that most AoB hacks for standalone client are not working anymore. I decided to update most of them and convert some of the existing browser AoB hacks into working AoB hack for the standalone client. I also made some more AoBs that are far too OP or is too dangerous for use of the public so I'm not going to include them in this thread. I put some effort into learning how this hacks were made so I hope you appreciate it.

Tutorial 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.



Hi,

Client Version 29 was just released.

Superboy is not working now.

Can someone help pls
Superboy doesn't work anymore, can someone accommodate the scrip please? or teach me and I do
Its the best hack
All except Superboy, it's the most useful of all, I hope you update it soon / bai
Quote Originally Posted by InfinityGamer01 View Post
I've looked into threads and found that most AoB hacks for standalone client are not working anymore. I decided to update most of them and convert some of the existing browser AoB hacks into working AoB hack for the standalone client. I also made some more AoBs that are far too OP or is too dangerous for use of the public so I'm not going to include them in this thread. I put some effort into learning how this hacks were made so I hope you appreciate it.

Tutorial 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.

The new client update made the more loot spot code failed to work
GM Loot fails now and it's only a matter of time before DZA 1 through 4 fail also. I really wish i could learn all this coding so i could go public with the codes.
I've tested some of the cheats. The disable zombie attacks doesn't include those zombies which vomit acid or explode on death. More loot spots does not work as well for me.
the game is half dead without these codes, nobody care to play it
ty the ones that work,work great if anyone has more hacks ghost ammo one hit god mode things like that plz share lf more hacks fun and friendly.
Sprint, stamina and 1 damage hit work still. If anyone can get wasteland working again, I'd really appreciate that
Can you send me the 1 damage hit code plz?
Quote Originally Posted by Spotty98 View Post
Sprint, stamina and 1 damage hit work still. If anyone can get wasteland working again, I'd really appreciate that
I would also lkie the 1 hit code plz
Quote Originally Posted by MrSirGib View Post
I've got a working 1 hit
really? can you send it to me?
Quote Originally Posted by MrSirGib View Post
I've got a working 1 hit
Can you send that? Plz

- - - Updated - - -

[QUOTE=wubba30;14588976]really? can you send it to me?[/QUOTE

Share with us If you got that
Posts 91105 of 123 · Page 7 of 9

Post a Reply

Similar Threads

Tags for this Thread

Need help?