Page 1 of 1

[REQUEST] Zero Hour

Posted: Sat Feb 27, 2021 5:53 pm
by Verif
Game Name: Zero Hour
Game Engine: Unity
Game Version: 7.9.8 (or most recent version)
Options Required:
  • Unlimited Stamina
  • Unlimited Health
  • Unlimited Ammo
Steam Website:

Other Info: I have actually already made simple script for unlimited ammo. But cause I'm new to Cheat Engine and Unity I couldn't find health or stamina. I'll post my script for unlimited ammo here. Thanks for anyone who helps with this!

Edit: Updated Unlimited ammo for newest patch.

Re: [REQUEST] Zero Hour

Posted: Sat Apr 17, 2021 5:53 pm
by ring0star
Hey guys.
Had to update the Ammo script, if anyone needs.

Code: Select all

[ENABLE]

aobscan(AMMO,89 48 10 E9 35 01 00 00)
alloc(newmem,$1000,AMMO)

label(code)
label(return)

newmem:

code:
  mov ecx, #20
  mov [rax+10],ecx
  jmp 1F2D668CC30
  jmp return

AMMO:
  jmp newmem
  nop 3
return:
registersymbol(AMMO)

[DISABLE]

AMMO:
  db 89 48 10 E9 35 01 00 00

unregistersymbol(AMMO)
dealloc(newmem)

Have fun.