<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="46">
  <CheatEntries>
    <CheatEntry>
      <ID>523</ID>
      <Description>"Cheats &amp; Mods (From Telegram:@RRS_HIDDEN)"</Description>
      <Options moHideChildren="1"/>
      <GroupHeader>1</GroupHeader>
      <CheatEntries>
        <CheatEntry>
          <ID>368</ID>
          <Description>"freeze ammo and health"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
//mov [esi+0C],eax
//mov esi,[esp+30]

exit:
jmp returnhere

"GForce.exe"+9D503:
jmp newmem
nop 2
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GForce.exe"+9D503:
db 89 46 0C 8B 74 24 30
//mov [esi+0C],eax
//mov esi,[esp+30]
</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>592</ID>
          <Description>"One Hit Kill and full health on kill (also never die)"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
label(is_one)
label(is_zero)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

cmp dword ptr [esi+edi*4+1C],0
jg is_zero
jmp is_one

is_one:
movss [esi+edi*4+04],xmm2
jmp exit

is_zero:
movss [esi+edi*4+04],xmm1
jmp exit

originalcode:
// (replaced by conditional code above)

exit:
jmp returnhere

"GForce.exe"+13ED28:
jmp newmem
nop
returnhere:


[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GForce.exe"+13ED28:
db F3 0F 11 44 BE 04
//movss [esi+edi*4+04],xmm0

</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>233</ID>
          <Description>"Freeze mooch time"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
//movss [esi+000006C0],xmm0

exit:
jmp returnhere

"GForce.exe"+140D8C:
jmp newmem
nop 3
returnhere:



 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GForce.exe"+140D8C:
db F3 0F 11 86 C0 06 00 00
//movss [esi+000006C0],xmm0
</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>7</ID>
          <Description>"Fly"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)

newmem:
//this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
// Skip the zero write - just continue to exit
// Original instruction: mov word ptr [ebp+00],0000

exit:
jmp returnhere

"GForce.exe"+B338A:
jmp newmem
nop
returnhere:

[DISABLE]
//code from here till the end of the code will be used to disable the cheat
"GForce.exe"+B338A:
mov word ptr [ebp+00],0000

dealloc(newmem)
</AssemblerScript>
          <Hotkeys>
            <Hotkey Active="0">
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>96</Key>
              </Keys>
              <ID>0</ID>
              <ActivateSound>Activate</ActivateSound>
              <DeactivateSound>Deactivate</DeactivateSound>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>356</ID>
          <Description>"TP to mooch"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
local src = readQword(getAddress("GForce.exe+512788"))
local dst = readQword(getAddress("GForce.exe+5128DC"))
if src and dst then
  writeFloat(dst+0xE8, readFloat(src+0xE8))
  writeFloat(dst+0xF0, readFloat(src+0xF0))
  local z = readFloat(src+0xEC)
  writeFloat(dst+0xEC, z + 0.3)
else
  print("[Teleport] ERROR: Source or destination pointer invalid.")
end

-- auto-disable after a tiny delay
local rec = memrec  -- 'memrec' is a built-in variable: the memory record running this script
if rec then
  local t = createTimer()
  t.Interval = 50
  t.OnTimer = function(timer)
    rec.Active = false
    timer.destroy()
  end
end

[DISABLE]

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Activate</Action>
              <Keys>
                <Key>106</Key>
              </Keys>
              <ID>0</ID>
              <ActivateSound>Activate</ActivateSound>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>370</ID>
          <Description>"Freeze time limited tasks timer"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,50)
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
//movss [esi+28],xmm0

exit:
jmp returnhere

"GForce.exe"+42621:
jmp newmem
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GForce.exe"+42621:
db F3 0F 11 46 28
//movss [esi+28],xmm0
</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>529</ID>
          <Description>"Always can hover and boost up"</Description>
          <Options moHideChildren="1"/>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]


"GForce.exe"+EA954:
db 90 90 90 90 90


[DISABLE]

dealloc(newmem)
"GForce.exe"+EA954:
db F3 0F 11 42 0C

</AssemblerScript>
          <CheatEntries>
            <CheatEntry>
              <ID>536</ID>
              <Description>"Dont limit boost height"</Description>
              <VariableType>Auto Assembler Script</VariableType>
              <AssemblerScript>[ENABLE]

"GForce.exe"+EC4E8:
db 90 90

 
 
[DISABLE]

dealloc(newmem)
"GForce.exe"+EC4E8:
db 76 0E

</AssemblerScript>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
        <CheatEntry>
          <ID>384</ID>
          <Description>"Jump Code multiplier"</Description>
          <Options moHideChildren="1"/>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
// code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
label(zero)
label(doStore)

alloc(jpmult,4)             // allocate space for multiplier
registersymbol(jpmult)

newmem: // this is allocated memory, you have read,write,execute access
  comiss xmm0,[zero]        // compare xmm0 with 0.0
  jbe short doStore         // if &lt;= 0, skip scaling (falling or apex)
  mulss xmm0,[jpmult]       // only scale if positive (jumping up)

doStore:
originalcode:
  movss [ecx+000000B0],xmm0

exit:
  jmp returnhere

zero:
  dd (float)0.0

"GForce.exe"+AFDDB:
  jmp newmem
  nop 3
returnhere:

jpmult:
  dd (float)3.0             // default multiplier, editable live

[DISABLE]
// code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
dealloc(jpmult)
unregistersymbol(jpmult)

"GForce.exe"+AFDDB:
  db F3 0F 11 81 B0 00 00 00
// movss [ecx+000000B0],xmm0

</AssemblerScript>
          <CheatEntries>
            <CheatEntry>
              <ID>385</ID>
              <Description>"Jump multiplier"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>Float</VariableType>
              <Address>jpmult</Address>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
        <CheatEntry>
          <ID>541</ID>
          <Description>"Always Do power whip"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]

"GForce.exe"+1A5626:
db 90 90

 
 
[DISABLE]

dealloc(newmem)
"GForce.exe"+1A5626:
db 72 0E

</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>578</ID>
          <Description>"Instant NanoHack"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]


"GForce.exe"+13ED28:
movss [esi+edi*4+04],xmm2


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GForce.exe"+13ED28:
movss [esi+edi*4+04],xmm0
//movss [esi+edi*4+04],xmm0
</AssemblerScript>
        </CheatEntry>
        <CheatEntry>
          <ID>358</ID>
          <Description>"Pointers"</Description>
          <Options moHideChildren="1"/>
          <GroupHeader>1</GroupHeader>
          <CheatEntries>
            <CheatEntry>
              <ID>464</ID>
              <Description>"Camera Pov"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>465</ID>
                  <Description>"Pov (normal)"</Description>
                  <VariableType>Float</VariableType>
                  <Address>00915794</Address>
                </CheatEntry>
                <CheatEntry>
                  <ID>466</ID>
                  <Description>"Pov (aiming)"</Description>
                  <VariableType>Float</VariableType>
                  <Address>009157F4</Address>
                </CheatEntry>
                <CheatEntry>
                  <ID>427</ID>
                  <Description>"Current"</Description>
                  <VariableType>Float</VariableType>
                  <Address>"GForce.exe"+005154F0</Address>
                  <Offsets>
                    <Offset>8E8</Offset>
                    <Offset>1C8</Offset>
                    <Offset>98</Offset>
                    <Offset>8</Offset>
                    <Offset>4</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>441</ID>
                  <Description>"Current"</Description>
                  <VariableType>Float</VariableType>
                  <Address>"GForce.exe"+00512788</Address>
                  <Offsets>
                    <Offset>8E8</Offset>
                    <Offset>30</Offset>
                    <Offset>14</Offset>
                    <Offset>14</Offset>
                    <Offset>0</Offset>
                    <Offset>FC</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>456</ID>
                  <Description>"Current"</Description>
                  <VariableType>Float</VariableType>
                  <Address>"GForce.exe"+00512B94</Address>
                  <Offsets>
                    <Offset>8E8</Offset>
                    <Offset>1C8</Offset>
                    <Offset>98</Offset>
                    <Offset>8</Offset>
                    <Offset>8C</Offset>
                    <Offset>94</Offset>
                    <Offset>264</Offset>
                  </Offsets>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>343</ID>
              <Description>"Money"</Description>
              <Options moHideChildren="1"/>
              <VariableType>4 Bytes</VariableType>
              <Address>"GForce.exe"+0051546C</Address>
              <Offsets>
                <Offset>288</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>388</ID>
                  <Description>"Max Money"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>4 Bytes</VariableType>
                  <Address>"GForce.exe"+0051546C</Address>
                  <Offsets>
                    <Offset>28C</Offset>
                  </Offsets>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>372</ID>
              <Description>"Health"</Description>
              <Options moHideChildren="1"/>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>4 Bytes</VariableType>
              <Address>"GForce.exe"+0051549C</Address>
              <Offsets>
                <Offset>E8</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>373</ID>
                  <Description>"Max Health"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>4 Bytes</VariableType>
                  <Address>"GForce.exe"+0051549C</Address>
                  <Offsets>
                    <Offset>EC</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>359</ID>
                  <Description>"Lives"</Description>
                  <VariableType>4 Bytes</VariableType>
                  <Address>GForce.exe+515458</Address>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>566</ID>
              <Description>"Guns"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>553</ID>
                  <Description>"Activate Guns"</Description>
                  <Options moHideChildren="1"/>
                  <GroupHeader>1</GroupHeader>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>540</ID>
                      <Description>"super whip charge time"</Description>
                      <VariableType>Float</VariableType>
                      <Address>00908038</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>544</ID>
                      <Description>"Power Whip"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>118</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>663</ID>
                      <Description>"Plasma Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-1E4</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>545</ID>
                      <Description>"Magnet Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-1BC</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>550</ID>
                      <Description>"Scanner Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-1D0</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>546</ID>
                      <Description>"NanoHacker Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-1A8</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>551</ID>
                      <Description>"Flame Thrower Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-180</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>552</ID>
                      <Description>"Freeze Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-194</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>549</ID>
                      <Description>"Shot Bolter"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-16C</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>548</ID>
                      <Description>"Cluster Rifle Gun"</Description>
                      <DropDownList ReadOnly="1" DescriptionOnly="1" DisplayValueAsItem="1">0:Disabled
254:Enabled
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>-158</Offset>
                      </Offsets>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
                <CheatEntry>
                  <ID>565</ID>
                  <Description>"Gun Ammo"</Description>
                  <Options moHideChildren="1"/>
                  <GroupHeader>1</GroupHeader>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>367</ID>
                      <Description>"Plasma Gun Ammo"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>0c</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>554</ID>
                      <Description>"Plasma Gun Ammo Cap"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>10</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>555</ID>
                      <Description>"Cluster Rifle Gun Ammo"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>20</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>556</ID>
                      <Description>"Cluster Rifle Gun Ammo Cap"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>24</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>557</ID>
                      <Description>"Shoot Bolter Gun Ammo"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>34</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>558</ID>
                      <Description>"Shoot Bolter Gun Ammo Cap"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>38</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>559</ID>
                      <Description>"Flame Thrower Gun Ammo"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>48</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>560</ID>
                      <Description>"Flame Thrower Gun Ammo Cap"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>4C</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>561</ID>
                      <Description>"Freeze Gun Ammo"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>5C</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>562</ID>
                      <Description>"Freeze Gun Ammo Cap"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>60</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>563</ID>
                      <Description>"NanoHacker Gun Ammo"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>70</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>564</ID>
                      <Description>"NanoHacker Gun Ammo Cap"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>GForce.exe+515484</Address>
                      <Offsets>
                        <Offset>74</Offset>
                      </Offsets>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>567</ID>
              <Description>"JetPack"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>608</ID>
                  <Description>"jetpack delay (ground boost and hover)"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>CD4</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>606</ID>
                  <Description>"ground Boost (dash)"</Description>
                  <Options moHideChildren="1"/>
                  <GroupHeader>1</GroupHeader>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>602</ID>
                      <Description>"ground boost Fuel"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>GForce.exe+512784</Address>
                      <Offsets>
                        <Offset>C50</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>605</ID>
                      <Description>"ground boost recharge time"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>GForce.exe+512784</Address>
                      <Offsets>
                        <Offset>CDC</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>609</ID>
                      <Description>"Forced run after boost (seconds)"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>GForce.exe+512784</Address>
                      <Offsets>
                        <Offset>C40</Offset>
                      </Offsets>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
                <CheatEntry>
                  <ID>666</ID>
                  <Description>"Hover and Critical Boost"</Description>
                  <Options moHideChildren="1"/>
                  <GroupHeader>1</GroupHeader>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>603</ID>
                      <Description>"Max Hover fuel"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>GForce.exe+512784</Address>
                      <Offsets>
                        <Offset>ce4</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>470</ID>
                      <Description>"Speed when hover"</Description>
                      <Options moHideChildren="1" moRecursiveSetValue="1"/>
                      <GroupHeader>1</GroupHeader>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>467</ID>
                          <Description>"Side to Side"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>GForce.exe+512784</Address>
                          <Offsets>
                            <Offset>CE8</Offset>
                          </Offsets>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>636</ID>
                          <Description>"Front to back"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>GForce.exe+512784</Address>
                          <Offsets>
                            <Offset>CEC</Offset>
                          </Offsets>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>472</ID>
                      <Description>"Basic hover height"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>GForce.exe+512784</Address>
                      <Offsets>
                        <Offset>CF0</Offset>
                      </Offsets>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>473</ID>
                      <Description>"Boost height"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>GForce.exe+512784</Address>
                      <Offsets>
                        <Offset>CF4</Offset>
                      </Offsets>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>613</ID>
              <Description>"Jump height"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>Float</VariableType>
              <Address>GForce.exe+512784</Address>
              <Offsets>
                <Offset>C0C</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>614</ID>
              <Description>"Double jump height"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>Float</VariableType>
              <Address>GForce.exe+512784</Address>
              <Offsets>
                <Offset>C10</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>618</ID>
              <Description>"Take Fall Damage on height"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>Float</VariableType>
              <Address>GForce.exe+512784</Address>
              <Offsets>
                <Offset>C30</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>381</ID>
              <Description>"gravity"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>Float</VariableType>
              <Address>GForce.exe+5128DC</Address>
              <Offsets>
                <Offset>dc</Offset>
                <Offset>148</Offset>
              </Offsets>
              <Hotkeys>
                <Hotkey OnlyWhileDown="1">
                  <Action>Set Value</Action>
                  <Keys>
                    <Key>103</Key>
                  </Keys>
                  <Value>-3</Value>
                  <ID>0</ID>
                </Hotkey>
              </Hotkeys>
            </CheatEntry>
            <CheatEntry>
              <ID>45</ID>
              <Description>"Darwin pos"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>627</ID>
                  <Description>"x"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+5128DC</Address>
                  <Offsets>
                    <Offset>E8</Offset>
                  </Offsets>
                  <Hotkeys>
                    <Hotkey>
                      <Action>Increase Value</Action>
                      <Keys>
                        <Key>17</Key>
                        <Key>102</Key>
                      </Keys>
                      <Value>0.5</Value>
                      <ID>0</ID>
                    </Hotkey>
                    <Hotkey>
                      <Action>Decrease Value</Action>
                      <Keys>
                        <Key>17</Key>
                        <Key>100</Key>
                      </Keys>
                      <Value>0.5</Value>
                      <ID>1</ID>
                    </Hotkey>
                  </Hotkeys>
                </CheatEntry>
                <CheatEntry>
                  <ID>47</ID>
                  <Description>"y"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+5128DC</Address>
                  <Offsets>
                    <Offset>F0</Offset>
                  </Offsets>
                  <Hotkeys>
                    <Hotkey>
                      <Action>Increase Value</Action>
                      <Keys>
                        <Key>17</Key>
                        <Key>104</Key>
                      </Keys>
                      <Value>0.5</Value>
                      <ID>0</ID>
                    </Hotkey>
                    <Hotkey>
                      <Action>Decrease Value</Action>
                      <Keys>
                        <Key>17</Key>
                        <Key>98</Key>
                      </Keys>
                      <Value>0.5</Value>
                      <ID>1</ID>
                    </Hotkey>
                  </Hotkeys>
                </CheatEntry>
                <CheatEntry>
                  <ID>44</ID>
                  <Description>"z"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+5128DC</Address>
                  <Offsets>
                    <Offset>EC</Offset>
                  </Offsets>
                  <Hotkeys>
                    <Hotkey>
                      <Action>Increase Value</Action>
                      <Keys>
                        <Key>17</Key>
                        <Key>105</Key>
                      </Keys>
                      <Value>0.5</Value>
                      <ID>0</ID>
                    </Hotkey>
                    <Hotkey>
                      <Action>Decrease Value</Action>
                      <Keys>
                        <Key>17</Key>
                        <Key>99</Key>
                      </Keys>
                      <Value>0.5</Value>
                      <ID>1</ID>
                    </Hotkey>
                  </Hotkeys>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>357</ID>
              <Description>"Mooch pos"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>327</ID>
                  <Description>"mooch x"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512788</Address>
                  <Offsets>
                    <Offset>E8</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>325</ID>
                  <Description>"mooch y"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512788</Address>
                  <Offsets>
                    <Offset>F0</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>328</ID>
                  <Description>"mooch z"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512788</Address>
                  <Offsets>
                    <Offset>EC</Offset>
                  </Offsets>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>664</ID>
              <Description>"Mooch"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>639</ID>
                  <Description>"Max Time"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>ACC</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>407</ID>
                  <Description>"Max Distance"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>ad8</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>647</ID>
                  <Description>"Speed front"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>AE8</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>654</ID>
                  <Description>"Speed side to side"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>AF8</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>648</ID>
                  <Description>"Mouse Sensitivity (left and right)"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>AEC</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>652</ID>
                  <Description>"Mouse Sensitivity (up and down)"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>AF4</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>659</ID>
                  <Description>"Mouse steer deadzone"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>B0C</Offset>
                  </Offsets>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>665</ID>
              <Description>"Miscellaneous"</Description>
              <Options moHideChildren="1"/>
              <GroupHeader>1</GroupHeader>
              <CheatEntries>
                <CheatEntry>
                  <ID>625</ID>
                  <Description>"coefficient of friction on ice (always between 0 and 1)"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>D24</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>626</ID>
                  <Description>"bouncyness when sliding on ice"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>D28</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>620</ID>
                  <Description>"speed when on fan hover"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512784</Address>
                  <Offsets>
                    <Offset>C14</Offset>
                  </Offsets>
                </CheatEntry>
                <CheatEntry>
                  <ID>378</ID>
                  <Description>"Darwin z vlocity"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>Float</VariableType>
                  <Address>GForce.exe+512788</Address>
                  <Offsets>
                    <Offset>b0</Offset>
                    <Offset>148</Offset>
                  </Offsets>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
  </CheatEntries>
  <UserdefinedSymbols/>
  <Comments>About This Cheat Table:

Like many others, I returned to one of my old favorite games — but this time with the determination to build a comprehensive cheat and mod toolkit.  
This table is the result of two months of work, created entirely while playing and experimenting.  

I’m confident that using these cheats and pointers will make for a much more fun and flexible experience, giving you new ways to enjoy the game beyond its original limits.

Code-based hacks:

freeze ammo and health: This prevents your health and ammo from decreasing, but instant kills (like trashcans throwing blades) can still kill you since they have instant kill. This also stops you from buying kiosk items, so disable before buying

One Hit Kill and full health on kill (also never die): Contrary to the one above, this will also make you never die (also disables instant kills)

freeze mooch time: the mooch timer gets frozen

Fly: Makes you as if you are always on the ground, use jump to go up and move normally

TP to mooch: Teleports Darwin to the mooch position (you must be in mooch mode before using this, also its hotkey is numpad* )

Freeze time-limited tasks timer: Takes with red bar on top will be frozen, some tasks need their time to run out before the game can proceed, so use with caution

Always can hover and boost up: prevents the game from depleting Jetpack fuel when using critical boost (Boosting upwards)

Dont limit boost height:Lets you use multiple critical boosts to go higher. By default, the game limits the Height based on the starting Z position

Jump Code multiplier: Makes Darwin jump higher. I recommend using the game jump height pointer for better results (see pointers below). This is a deprecated cheat

Jump multiplier: sets the multiplier for the up vector

Always Do power whip: If power whip is still not acquired, first enable it (see guns in pointers below)

Instant NanoHack: The NanoHack gun will hack instantly

Pointers Section:
Most cheats can be achieved via editing internal game value, which is my preferred way to cheat, since there is zero need for path, and usually gives better results

Camera Pov: Controls point of view angle of the camera

Pov (normal): when just moving around

Pov (aiming): when using any gun

Current: shows current calculated pov value (there are 3 of them since the pointer is not always reliable)

Money: same as saber chips (used to buy items in the kiosk)

Max Money: money cap, lets you set the money cap higher

Health: current health (you can also lock it here)

Max Health: current max health

Lives: current Lives (hearts on top left part)

Guns: gun settings

Activate Guns: lets you active all guns and the powerwhip

Gun Ammo: lets you edit all guns ammo and their cap/max

JetPack: jetpack values (hover, ground-boost/dash, Critical-boost/boost-upwards)

jetpack delay (ground boost and hover): the delay when the jetpack gets activated, setting it too low will crash the game, and also dont let the player reach jump height before activating the hover mode

ground Boost (dash): also know as sprint

ground boost Fuel: in seconds

ground boost recharge time

Forced run after boost (seconds): game forces player to run for a bit after each boost, this controls how much

Hover and Critical Boost

Max Hover fuel: in seconds

Speed when hover: player speed when hovering

Side to Side

Front to back

basic hover height: how high the player must be when starting to hover (set large values like +100)

Boost height: the height the player must reach when critical boosting

Jump height: the final height the player must reach when on the first jump

Double jump height: the final height the player must reach when on second jump

Take Fall Damage on height: go into fall damage animation after falling from this height (setting it to 9999, makes you never take fall damage)

Gravity: players' gravity, but this won't make you jump higher, just slower to jump and then come down

Darwin/player pos: activate this to show values (useful to write custom cheats)

Mooch/flying-mode pos: activate this to show values (useful to write custom cheats)

Mooch: the fly, or as the games devs say: "Flying mode"

Max Time: control mooch timer value (set 99999 to inf time or use freeze above)

Max Distance: the distance it can get far from player/darvin

Speed front

Speed side to side

Mouse Sensitivity (left and right)

Mouse Sensitivity (up and down)

Mouse steer deadzone: the mouse has a deadzone on the mooch screen, setting this near zero will make the mouse more sensitive to movement

Miscellaneous

coefficient of friction on ice (always between 0 and 1): Must always be between 0 and 1

bounciness when sliding on ice: wall bounciness when sliding on ice

speed when on fan hover

Darwin z vlocity
</Comments>
  <DisassemblerComments>
    <DisassemblerComment>
      <Address>"GForce.exe"+E83D8</Address>
      <Comment>REACH HERE
</Comment>
    </DisassemblerComment>
    <DisassemblerComment>
      <Address>"GForce.exe"+13F4F2</Address>
      <Comment>Write org vlaue to hack timer
</Comment>
    </DisassemblerComment>
    <DisassemblerComment>
      <Address>"GForce.exe"+1A0760</Address>
      <Comment>---START
</Comment>
    </DisassemblerComment>
  </DisassemblerComments>
</CheatTable>
