Hello, this is my ONE-CLICK HACK.

  • Open Cheat Engine>Table>Show cheat table Lua script (Ctrl-alt-L) paste below code below.
  • Launch standalone client, press Play, when "Communicating with Server" shows, back to Lua script and press Execute sript, DONE.

With this you DON'T have to:
- Open DeadFrontier process in Cheat Engine
- Enable and set speed hack to 0 and 1

I do not own the cheats, it belongs to this community. As always, use cheats at your own risk.

Code:
-- Hook program:
PROCESS_NAME = 'DeadFrontier.exe'

local autoAttachTimer = nil ---- variable to hold timer object
local autoAttachTimerInterval = 1000 ---- Timer intervals are in milliseconds
local autoAttachTimerTicks = 0 ---- variable to count number of times the timer has run
local autoAttachTimerTickMax = 5000 ---- Set to zero to disable ticks max
local function autoAttachTimer_tick(timer) ---- Timer tick call back
---- Destroy timer if max ticks is reached
if autoAttachTimerTickMax > 0 and autoAttachTimerTicks >= autoAttachTimerTickMax then
timer.destroy()
end
---- Check if process is running
if getProcessIDFromProcessName(PROCESS_NAME) ~= nil then
timer.destroy() ---- Destroy timer
openProcess(PROCESS_NAME) ---- Open the process
print("Open DeadFrontier success")
-- Set speed
speedhack_setSpeed'0'
print("Set speed 0")


--------
-------- Remove ones that you don't need
--------

print("\n| DeadFrontier AOB | {v.74}\nUse  at  your  own  account  at  risk\n")

-- HIT KILL:
AoB = AOBScan("02 7B 1E 0E 00 04 7B C3 0D 00 04 28 22 26 00 06 16 6B 3D 4C")
if (AoB) then
print("● Hit Kill: Activated")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+19, 0x00)
end
else
print("● Hit Kill: F̲a̲i̲l̲e̲d̲ ")
end

-- DZA (Disable Zombie Attack)
AoB = AOBScan("00 ?? ?? ?? ?? ?? ?? 20 61 74 74 61 63 6B 00 00")
if (AoB) then
print("● Disable Zombie Attack: Activated")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+9, 0x00, 0x00)
end
else
print("● Disable Zombie Attack: F̲a̲i̲l̲e̲d̲")
end

-- INFINITE ENERGY:
AoB = AOBScan("22 ?? ?? ?? ?? 5A 58 7D ?? ?? ?? ?? 02 7B ?? ?? ?? ?? 02 7B")
if (AoB) then
print("● Infinite Energy: Activated")
for i=0,AoB.getCount()-1 do
writeBytes(tonumber(AoB[i],16)+3, 0x70, 0x41)
end
AoB.Destroy()
AoB = nil
else
print("● Infinite Energy: F̲a̲i̲l̲e̲d̲ | ")
end

-- SUPER SPRINT:
AoB = AOBScan("60 ?? ?? ?? CC ?? ?? ?? ?? 78 ?? ?? 11 ?? 6B 5A 58 5A ?? 9A")
if (AoB) then
print("● Super Sprint: Activated")
for x=0, AoB.getCount()-1 do
writeBytes(tonumber(AoB[x],16)+5, 0x7A, 0x40)
end
else
print("● Super Sprint: F̲a̲i̲l̲e̲d̲")
end

--------
-------- 
--------

-- Set speed
speedhack_setSpeed'1'
print("Set speed 1")

end
autoAttachTimerTicks = autoAttachTimerTicks + 1 ---- Increase ticks
end
autoAttachTimer = createTimer(getMainForm()) ---- Create timer with the main form as it's parent
autoAttachTimer.Interval = autoAttachTimerInterval ---- Set timer interval
autoAttachTimer.OnTimer = autoAttachTimer_tick ---- Set timer tick call back