Page 1 of 1

The Hong Kong Massacre 1.0.4a

Posted: Fri Apr 10, 2020 9:01 am
by macslayerz
Hello Hopefully some here can help make this table, Thanks in advance

God Mode
Infinite Ammo
Infinite Stars
No Reload
Low Ammo
Fast Movement Speed
Ignore Weapon Unlock Price
Unlimited Slow Motion Power
Freeze Timer

Re: The Hong Kong Massacre 1.0.4a

Posted: Fri Apr 10, 2020 6:01 pm
by GamerCare
godmode
infinite ammo
infinite stars /
ignore weapon unlock price
no reload
fast movement speed
unlimited slow motion power
weapon rapidfire

Re: The Hong Kong Massacre 1.0.4a

Posted: Sun Apr 12, 2020 2:48 am
by macslayerz
GamerCare wrote:
Fri Apr 10, 2020 6:01 pm
godmode
infinite ammo
infinite stars /
ignore weapon unlock price
no reload
fast movement speed
unlimited slow motion power
weapon rapidfire
You're amazing thank you!!!!!

Re: The Hong Kong Massacre 1.0.4a

Posted: Tue Jun 18, 2024 1:36 am
by jgoemat
Here's a script to disable AI, pretty much (doesn't work on first boss at least). Feel free to add it to your table:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>79</ID>
      <Description>"HOOK: AIManager.Awake"</Description>
      <Options moHideChildren="1"/>
      <LastState/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>define(hook,"THKM.AIManager:Awake")
define(bytes,55 48 8B EC 56)

[enable]

assert(hook, bytes)
alloc(newmem,$1000, hook)
{
  RCX: AIManager (this)

  Returns RAX (System.Void)
}

newmem:
  // original code
  // push rbp
  // mov rbp,rsp
  // push rsi
  xor rax,rax
  ret
  readmem(hook,5)
  jmp hook+5

hook:
  jmp long newmem

[disable]

hook:
  db bytes

dealloc(newmem)
</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
If anyone else wants to add it to theirs, just do 'Select All', then copy and you can paste it into your table.