
Free, forever. 20 single-player cheats for Outbound — a no-paywall, no-timer alternative to WeMod and other paid trainer subscriptions.
Vehicle battery never drops below capacity. Cave at AOB `F3 0F 11 4B 28 7A` loads battery-capacity (`[rbx+0x2C]`) into xmm1 first, then runs the original `movss [rbx+0x28], xmm1` - so capacity always overwrites the cu…
Hunger never increases. Cave at AOB `8B 57 18 43 8D 0C 04` replaces `lea ecx, [r12+rax]` with `mov ecx, edx` - the downstream writeback then stores the same value it just loaded.
Vehicle motor never overheats. Cave at AOB `F3 0F 11 47 7C 0F` loads target temperature (`[rdi+0x80]`) into xmm0 first, then runs the original `movss [rdi+0x7C], xmm0` - current temp stays pinned to target.
Stamina never depletes. Cave at AOB `F3 0F 11 B7 E0 01 00 00` (a `movss [rdi+0x1E0], xmm6` write) loads MaxStamina from `[rdi+0x0D4]` into xmm6 first, so the game writes max-to-current instead of current-to-current.
Item counts in the player inventory never decrement. NOPs the 4 bytes `44 29 7F 18` (= `sub [rdi+0x18], r15d`) at AOB `44 29 7F 18 EB AD`. Original bytes restored on disable.
Items stored in vehicles never decrement on use. NOPs the 3 bytes `29 68 18` (= `sub [rax+0x18], ebp`) at AOB `29 68 18 41 B7 01` with a 3-byte NOP `0F 1F 00`.
Crafting / production processes complete instantly. Cave at AOB `F3 0F 10 43 78 0F 2F 40 38` runs the original `movss xmm0, [rbx+0x78]` then writes `mov dword [rax+0x38], 0` - the downstream `comiss xmm0, [rax+0x38]` …
Slider for inventory carrying limit at `[[pl] + 0x28] + 0x20`. Separate from Weight Limit 99999 (which writes a different field via a code-cave); use this for fine-grained control. Original saved + restored.
Slider for current day number at `[timeptr] + 0x24` (int32). Skip days forward/backward.
Slider for `[pl] + 0x108`. Default 0.0 = no fall damage from any height.
Slider mod - walks the 4-deep chain `[[[[pl]+0x30]+0x14]+0x20]+0x10]+0x20` and writes the slider value as int32 every 250 ms. Default 100. Original NOT saved (Health is meant to be freely edited; not restored on disab…
Slider for Hunger - same 4-deep chain as Set Health but with groupOff = 0x28 (Hunger row instead of Health row).
Slider for jump force at `[pl] + 0xEC`. Default 8.0 (~2x vanilla).
Slider for Max Health - same chain as Set Health with statOff = 0x18 (the 'max' sibling of the 'current' offset).
Slider for Max Hunger - Hunger row, max sibling.
Slider for Max Stamina at `[pl] + 0xD4`. Use together with Freeze Stamina for unlimited sprint.
Slider for the run-speed multiplier float at `[pl] + 0xCC`. Vanilla ~1.5; default 2.0 doubles sprint speed.
Slider for current time of day at `[timeptr] + 0x20` (float). Range typically 0.0-1.0 across a day cycle.
Slider for the player's walk speed float at `[pl] + 0xC8`. Vanilla baseline depends on stamina state; default 5.0 is fast. Original saved + restored on disable.
Carrying limit fields at `[rsi+0x28]+0x20` and `+0x30` are pinned to 999999 each frame via a code-cave at AOB `F3 0F 10 B6 E0 01 00 00`. The cave checks PlayerCapture's noweight gate byte on every run; on disable we s…