<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="46">
  <CheatEntries>
    <CheatEntry>
      <ID>902</ID>
      <Description>"Flight + Noclip"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_6790D0', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_6790D0'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_6790D0')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>903</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_6790D0</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>904</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>905</ID>
                  <Description>"LocalPlayers [1 x ObjectProperty]"</Description>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+38</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>906</ID>
                      <Description>"[0]"</Description>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>907</ID>
                          <Description>"PlayerController"</Description>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>908</ID>
                              <Description>"Pawn"</Description>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+2F8</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>909</ID>
                                  <Description>"CharacterMovement"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+340</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1004</ID>
                                      <Description>"MovementMode (1 walk | 3 fall | 5 fly)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <Color>40FF00</Color>
                                      <VariableType>Byte</VariableType>
                                      <Address>+241</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1020</ID>
                                      <Description>"Up/Down = Space/Ctrl"</Description>
                                      <Color>00FF00</Color>
                                      <VariableType>Auto Assembler Script</VariableType>
                                      <AssemblerScript>[ENABLE]
{$lua}
if not syntaxcheck then
  if _G.verticalMoveTimer then
    _G.verticalMoveTimer.destroy()
    _G.verticalMoveTimer = nil
  end

  local upVelocity   = 500.0
  local downVelocity = -500.0

  local function getZVelocityAddress()
    local gworld = getAddress("gworld_addr_6790D0")
    if not gworld then return nil end

    local addr = readPointer(gworld)  -- GWorld*
    if not addr then return nil end
    addr = readPointer(addr + 0x228)              -- OwningGameInstance*
    if not addr then return nil end
    addr = readPointer(addr + 0x38)               -- LocalPlayers TArray data ptr
    if not addr then return nil end
    addr = readPointer(addr)                       -- LocalPlayer[0]*
    if not addr then return nil end
    addr = readPointer(addr + 0x30)               -- PlayerController*
    if not addr then return nil end
    addr = readPointer(addr + 0x2F8)              -- Pawn*
    if not addr then return nil end
    addr = readPointer(addr + 0x340)              -- CharacterMovement*
    if not addr then return nil end
    -- Velocity is an inline FVector struct at +0xE0, Z is +0x10 within it
    return addr + 0xE0 + 0x10                     -- Z velocity (Double)
  end

  local function updateVelocity()
    local addr = getZVelocityAddress()
    if not addr then return end
    local spacePressed = isKeyPressed(VK_SPACE)
    local ctrlPressed  = isKeyPressed(VK_CONTROL)
    if spacePressed and not ctrlPressed then
      writeDouble(addr, upVelocity)
    elseif ctrlPressed and not spacePressed then
      writeDouble(addr, downVelocity)
    else
      writeDouble(addr, 0)
    end
  end

  _G.verticalMoveTimer = createTimer(nil)
  _G.verticalMoveTimer.Interval = 10
  _G.verticalMoveTimer.OnTimer = updateVelocity
  _G.verticalMoveTimer.Enabled = true
  print("Vertical movement enabled!")
end
{$asm}

[DISABLE]
{$lua}
if not syntaxcheck then
  if _G.verticalMoveTimer then
    _G.verticalMoveTimer.Enabled = false
    _G.verticalMoveTimer.destroy()
    _G.verticalMoveTimer = nil
  end
  local gworld = getAddress("gworld_addr_6790D0")
  if gworld then
    local addr = readPointer(gworld)
    if addr then addr = readPointer(addr + 0x228) end
    if addr then addr = readPointer(addr + 0x38) end
    if addr then addr = readPointer(addr) end
    if addr then addr = readPointer(addr + 0x30) end
    if addr then addr = readPointer(addr + 0x2F8) end
    if addr then addr = readPointer(addr + 0x340) end
    if addr then writeDouble(addr + 0xE0 + 0x10, 0) end
  end
  print("Vertical movement disabled")
end
{$asm}
</AssemblerScript>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1017</ID>
                                  <Description>"CapsuleComponent"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+348</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1018</ID>
                                      <Description>"BodyInstance (BodyInstance)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+388</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1019</ID>
                                          <Description>"CollisionEnabled (3 on | 0 off)"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Byte</VariableType>
                                          <Address>+17</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>100</ID>
      <Description>"Player Stuff"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_29B645', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_29B645'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_29B645')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>101</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_29B645</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>102</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>103</ID>
                  <Description>"LocalPlayers [1 x ObjectProperty]"</Description>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+38</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>104</ID>
                      <Description>"[0]"</Description>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>105</ID>
                          <Description>"PlayerController"</Description>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>106</ID>
                              <Description>"Pawn"</Description>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+2F8</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>151</ID>
                                  <Description>"CustomTimeDilation"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <Color>00FF00</Color>
                                  <VariableType>Float</VariableType>
                                  <Address>+70</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>212</ID>
                                  <Description>"BlueprintCreatedComponents [5 x ObjectProperty (8B)]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+2A0</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>213</ID>
                                      <Description>"[0] Flashlight (SpotLightComponent)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>214</ID>
                                      <Description>"[1] EquipmentAttachmentPointHead (EquipmentAttachmentPoint)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>215</ID>
                                      <Description>"[2] EquipmentAttachmentPointEyes (EquipmentAttachmentPoint)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>216</ID>
                                      <Description>"[3] BETSurvivor (BETSurvivorComponent)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>217</ID>
                                      <Description>"[4] TriiodideVoiceChatSynth (TriiodideVoiceChatSynthComponent)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>229</ID>
                                  <Description>"PlayerState"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+2D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>231</ID>
                                  <Description>"Controller"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+2E8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>243</ID>
                                  <Description>"CharacterMovement"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+340</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>244</ID>
                                  <Description>"CapsuleComponent"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+348</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>305</ID>
                                  <Description>"JumpMaxCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+474</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>363</ID>
                                  <Description>"bCollapsePlayer"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+678</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>364</ID>
                                  <Description>"EnemyCheckTimerHandle (TimerHandle)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+680</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>365</ID>
                                      <Description>"Handle"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>366</ID>
                                  <Description>"PlayerNumber"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+688</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>367</ID>
                                  <Description>"MountedRemoteViewPitch"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+68C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>368</ID>
                                  <Description>"RemoteViewYaw"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+68D</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>369</ID>
                                  <Description>"CharacterAbilities [18 x ClassProperty (8B)]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+6A0</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>370</ID>
                                      <Description>"[0] GA_Sprint_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>371</ID>
                                      <Description>"[1] GA_Interact_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>372</ID>
                                      <Description>"[2] GA_Crouch_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>373</ID>
                                      <Description>"[3] GA_PauseMenu_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>374</ID>
                                      <Description>"[4] GA_Interact_Timed_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>375</ID>
                                      <Description>"[5] GA_Flashlight_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>376</ID>
                                      <Description>"[6] GA_Flashlight_Enemycheck_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>377</ID>
                                      <Description>"[7] GA_Jump_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>378</ID>
                                      <Description>"[8] GA_Inventory_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>379</ID>
                                      <Description>"[9] GA_Stunned_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>380</ID>
                                      <Description>"[10] GA_PickupItem_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>381</ID>
                                      <Description>"[11] GA_Death_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>382</ID>
                                      <Description>"[12] GA_Down_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>383</ID>
                                      <Description>"[13] GA_LookBack_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>384</ID>
                                      <Description>"[14] GA_Point_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>385</ID>
                                      <Description>"[15] GA_Dance_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>386</ID>
                                      <Description>"[16] GA_Electrocuted_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>387</ID>
                                      <Description>"[17] GA_ThumbsUp_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>388</ID>
                                  <Description>"DefaultAttributes"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>389</ID>
                                  <Description>"StartupEffects [2 x ClassProperty (8B)]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+6B8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>390</ID>
                                      <Description>"[0] GE_StaminaRegen_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>391</ID>
                                      <Description>"[1] GE_SanityDepletion_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>392</ID>
                                  <Description>"DefaultTags (GameplayTagContainer)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+6C8</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>393</ID>
                                      <Description>"GameplayTags [1 x GameplayTag (8B)]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>394</ID>
                                          <Description>"[0]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>395</ID>
                                              <Description>"TagName"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>4 Bytes</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>396</ID>
                                      <Description>"ParentTags"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>397</ID>
                                  <Description>"LocalMeshXOffset"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6E8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>398</ID>
                                  <Description>"PawnExtComponent"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+6F0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>399</ID>
                                  <Description>"StimuliSourceComponent"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+6F8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>402</ID>
                                  <Description>"EquipmentManagerComponent"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+710</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>403</ID>
                                  <Description>"SanityComponent"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+718</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>417</ID>
                                  <Description>"BETSurvivor"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+7F0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>420</ID>
                                  <Description>"Flashlight"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>8 Bytes</VariableType>
                                  <Address>+808</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>421</ID>
                                  <Description>"Action Value"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+810</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>422</ID>
                                  <Description>"FlashlightState"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+818</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1029</ID>
      <Description>"Player Stats"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_F2520E', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_F2520E'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_F2520E')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1030</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_F2520E</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>1031</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>1032</ID>
                  <Description>"LocalPlayers [1 x ObjectProperty]"</Description>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+38</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1033</ID>
                      <Description>"[0]"</Description>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1034</ID>
                          <Description>"PlayerController"</Description>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1035</ID>
                              <Description>"PlayerState"</Description>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+2C0</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1036</ID>
                                  <Description>"AttributeSet"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+3D0</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>108</ID>
                                      <Description>"Inf Stamina"</Description>
                                      <Options moAlwaysHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <Color>00FF00</Color>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+38</Address>
                                      <CheatEntries>
                                        <CheatEntry ValueOnActivate="100" RestoreOnDeactivate="1">
                                          <ID>110</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>117</ID>
                                      <Description>"Inf Sanity"</Description>
                                      <Options moAlwaysHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <Color>00FF00</Color>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+68</Address>
                                      <CheatEntries>
                                        <CheatEntry ValueOnActivate="100" RestoreOnDeactivate="1">
                                          <ID>1037</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>111</ID>
                                      <Description>"MaxStamina (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+48</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>113</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>114</ID>
                                      <Description>"StaminaRegenRate (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+58</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>116</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>120</ID>
                                      <Description>"MaxSanity (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+78</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>122</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>123</ID>
                                      <Description>"SanityDepletionRate (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+88</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>125</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>126</ID>
                                      <Description>"LookSpeedMultiplier (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+98</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>128</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>129</ID>
                                      <Description>"MovementSpeedMultiplier (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+A8</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>131</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>132</ID>
                                      <Description>"ReviveDuration (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+B8</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>134</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>135</ID>
                                      <Description>"DownedBlood (GameplayAttributeData)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+C8</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>137</ID>
                                          <Description>"CurrentValue"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1021</ID>
      <Description>"Flashlight"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_6E8624', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_6E8624'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_6E8624')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1022</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_6E8624</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>1023</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>1024</ID>
                  <Description>"LocalPlayers [1 x ObjectProperty]"</Description>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+38</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1025</ID>
                      <Description>"[0]"</Description>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1026</ID>
                          <Description>"PlayerController"</Description>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1027</ID>
                              <Description>"Pawn"</Description>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+2F8</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>107</ID>
                                  <Description>"Flashlight"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+808</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1028</ID>
                                      <Description>"Enable Flashlight Hack?"</Description>
                                      <Options moAlwaysHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                                      <Color>00FF00</Color>
                                      <GroupHeader>1</GroupHeader>
                                      <CheatEntries>
                                        <CheatEntry ValueOnActivate="1000" RestoreOnDeactivate="1">
                                          <ID>178</ID>
                                          <Description>"Brightness"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+270</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="100" RestoreOnDeactivate="1">
                                          <ID>179</ID>
                                          <Description>"Intensity"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+274</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="100000" RestoreOnDeactivate="1">
                                          <ID>246</ID>
                                          <Description>"LightFunctionFadeDistance"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+328</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="3700000000" RestoreOnDeactivate="1">
                                          <ID>262</ID>
                                          <Description>"AttenuationRadius"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+3C4</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="0" RestoreOnDeactivate="1">
                                          <ID>268</ID>
                                          <Description>"LightFalloffExponent"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+3DC</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="1000000000" RestoreOnDeactivate="1">
                                          <ID>272</ID>
                                          <Description>"InnerConeAngle"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+3F0</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="1000000000" RestoreOnDeactivate="1">
                                          <ID>273</ID>
                                          <Description>"OuterConeAngle"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+3F4</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1077</ID>
      <Description>"AI Stuff"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_FAA09D', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_FAA09D'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_FAA09D')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1078</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_FAA09D</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>1079</ID>
              <Description>"AISystem"</Description>
              <Options moHideChildren="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+1B8</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>1080</ID>
                  <Description>"BehaviorTreeManager"</Description>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+108</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1081</ID>
                      <Description>"ActiveComponents [1 x ObjectProperty]"</Description>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+40</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1082</ID>
                          <Description>"[0]"</Description>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1083</ID>
                              <Description>"AIOwner"</Description>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+D8</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1084</ID>
                                  <Description>"Pawn"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+2F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1085</ID>
                                      <Description>"Freeze AI?"</Description>
                                      <Options moAlwaysHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                                      <Color>00FF00</Color>
                                      <GroupHeader>1</GroupHeader>
                                      <CheatEntries>
                                        <CheatEntry ValueOnActivate="0" RestoreOnDeactivate="1">
                                          <ID>145</ID>
                                          <Description>"bActorEnableCollision"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+65</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="0.00009999999747" RestoreOnDeactivate="1">
                                          <ID>152</ID>
                                          <Description>"CustomTimeDilation"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Float</VariableType>
                                          <Address>+70</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="0" RestoreOnDeactivate="1">
                                          <ID>439</ID>
                                          <Description>"WantsToScream"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Byte</VariableType>
                                          <Address>+8A0</Address>
                                        </CheatEntry>
                                        <CheatEntry ValueOnActivate="0" RestoreOnDeactivate="1">
                                          <ID>440</ID>
                                          <Description>"bSoundsStarted"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <Color>00FF00</Color>
                                          <VariableType>Byte</VariableType>
                                          <Address>+8A1</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1038</ID>
      <Description>"Effects (useless ig)"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_F5F945', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_F5F945'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_F5F945')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1039</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_F5F945</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>1040</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>1041</ID>
                  <Description>"LocalPlayers [1 x ObjectProperty]"</Description>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+38</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1042</ID>
                      <Description>"[0]"</Description>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1043</ID>
                          <Description>"PlayerController"</Description>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1044</ID>
                              <Description>"PlayerState"</Description>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+2C0</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1045</ID>
                                  <Description>"PawnData"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+3C0</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1046</ID>
                                      <Description>"AbilitySets [1 x ObjectProperty]"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+38</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>109</ID>
                                          <Description>"[0]"</Description>
                                          <ShowAsHex>1</ShowAsHex>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <Offsets>
                                            <Offset>0</Offset>
                                          </Offsets>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>1047</ID>
                                              <Description>"GrantedGameplayEffects [3 x BETAbilitySet_GameplayEffect (16B)]"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <GroupHeader>1</GroupHeader>
                                              <Address>+40</Address>
                                              <Offsets>
                                                <Offset>0</Offset>
                                              </Offsets>
                                              <CheatEntries>
                                                <CheatEntry>
                                                  <ID>1050</ID>
                                                  <Description>"[1]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+10</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>115</ID>
                                                      <Description>"GameplayEffect-SanityDrain"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1051</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1052</ID>
                                                  <Description>"[2]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+20</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>118</ID>
                                                      <Description>"GameplayEffect-StaminaDrain"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>119</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1056</ID>
                                                  <Description>"[3]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+30</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1057</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1058</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1053</ID>
                                                  <Description>"[4]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+40</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1054</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1055</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1059</ID>
                                                  <Description>"[5]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+50</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1060</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1061</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1062</ID>
                                                  <Description>"[6]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+60</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1063</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1064</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1065</ID>
                                                  <Description>"[7]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+70</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1066</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1067</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1068</ID>
                                                  <Description>"[8]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+80</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1069</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1070</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1071</ID>
                                                  <Description>"[9]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+90</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1072</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1073</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1074</ID>
                                                  <Description>"[10]"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+100</Address>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>1075</ID>
                                                      <Description>"GameplayEffect"</Description>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>8 Bytes</VariableType>
                                                      <Address>+0</Address>
                                                    </CheatEntry>
                                                    <CheatEntry>
                                                      <ID>1076</ID>
                                                      <Description>"EffectLevel"</Description>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <VariableType>Float</VariableType>
                                                      <Address>+8</Address>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                              </CheatEntries>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
  </CheatEntries>
  <UserdefinedSymbols/>
</CheatTable>
