Page 1 of 12
The Forever winter
Posted: Tue Sep 24, 2024 8:33 pm
by haztarocks
Game Name: The Forever Winter
Game Engine: Unreal Engine 5
Game Version: 24.09.2024 initial release
Options Required: Godmode, XP, Carryweight, Money, Ghost mode, unlimited ammo and most of all Water supply
Steam Website:
It just released and its got some real potential, however a cheat table would be really useful to stress test the current build and provide some feedback and bug reports.
In particular its got a offline degradation mechanic that wipes your base progress and inventory stash when your water supply runs dry, this is kind of a deal breaker to many.
Re: The Forever winter
Posted: Tue Sep 24, 2024 9:39 pm
by ShadoweCZ
it seems values are easy to find as simple 4bits
ammo in the current weapon, stack values of items in the stash are easy 4bits
i guess health will be the same
the only one that didn't work for me is directly editing money but then again you can edit infinite items and sell them, so rn it mainly about the survival stats when in raid
EDIT:
health seems to be a tricky one and isn't simply findable like the rest
Re: The Forever winter
Posted: Wed Sep 25, 2024 1:56 pm
by NotAFedBoy
ShadoweCZ wrote: ↑Tue Sep 24, 2024 9:39 pm
it seems values are easy to find as simple 4bits
ammo in the current weapon, stack values of items in the stash are easy 4bits
i guess health will be the same
the only one that didn't work for me is directly editing money but then again you can edit infinite items and sell them, so rn it mainly about the survival stats when in raid
EDIT:
health seems to be a tricky one and isn't simply findable like the rest
Hows the progress so far
Re: The Forever winter
Posted: Wed Sep 25, 2024 2:20 pm
by JIEKC3
v3.1 - inf inv improvement, added experimental scripts:
inf HP - Sometimes it work, sometimes not, but with it easy to find HP, do it just before mission load (activate it -> go to memory view -> Ctrl+G -> past "aob_fghfh33888" -> disable script -> RMB at instruction and "Find out what addresses this instruction access".
inf char xp - Allow to learn skills but it broke available xp and don't allow to get prestige =\, "xp reset" may help after complete mission.
v4 - added Player HP Pointers, inf money, inf all Items and "CE compact mode" special for s4boi
v4.1 - little improvements , added "reset items to 1"
v5 - added FOV script special for Tbby, decrease inf items by default from 90000 to 9000, added Reset money
v6 - Updated to game build [Link]
If you have like 5,312,523,634,6347 money after Hot-Fix 2.0 and reset money doesn't work try to find money value (8 bytes without dots) or you can use similar method above in upd v3.1 with HP but "aob_fghrtu568", change it to 1, activate script and sell\buy something, it should help.
Slightly improve inf character xp and reset xp, try it and give feedback. Other little improvements.
v7 - Added Godmode hotkey and OneHitKill, added experimental Inf recruits
v7.1 - Added Max weapon lvl
v7.2 - Reworked Max weapon lvl, now its Max weapon lvl + Max reputation lvl
v7.3 - Max weapon lvl + Max reputation lvl moved to experimental, try to improve GodMode
v8 - Reworked Inf Money and Reset Money, now it's Inf Money+Inf Char XP (doesn't affect prestige, it's safe), added Prestige XP to experimental, removed danger scripts.
v8.1 - Updated to game build [Link] or 0.1.37792.0 in main menu
v8.2 - Fix experimental Prestige XP script, added NoScopeZoom.
V9 - Added NoRecoil, NoSpread, JumpHeight, LowerCameraShake, IncreaseMarksDistance, EZ Prestige lvl up (experimental), improve GodMode
V9.1 - Updated to game build [Link] Fixed NoScopeZoom and
Weapon XP
v9.2 - Updated to game build [Link] Removed Weapon XP
v9.3 - Try to fix rare case when GodMode pointers doesn't point to right addresses (it's hard to find stable pointers in this game), added note for Inf All Items, Max Weapon XP v2 added to experimental
v9.4 - Updated to game build [Link]
v9.5 - Updated to game build [Link]
Re: The Forever winter
Posted: Wed Sep 25, 2024 3:45 pm
by masterrune
JIEKC3 wrote: ↑Wed Sep 25, 2024 2:20 pm
Quick table for inf ammo and inv weight
For HP search float value, change it to 9000 and freeze
upd fix inf inv xD
whenever you heal with inv weight on it crashes the game (downloaded v2 btw)
Re: The Forever winter
Posted: Wed Sep 25, 2024 6:08 pm
by ShadoweCZ
JIEKC3 wrote: ↑Wed Sep 25, 2024 2:20 pm
Quick table for inf ammo and inv weight
For HP search float value, change it to 9000 and freeze
upd v2 fix inf inv xD
upd v3 crash fix
works well,
if you manage to add the HP, please be sure to post an update

Re: The Forever winter
Posted: Wed Sep 25, 2024 8:55 pm
by s4boi
JIEKC3 wrote: ↑Wed Sep 25, 2024 2:20 pm
Quick table for inf ammo and inv weight
For HP search float value, change it to 9000 and freeze
upd v2 fix inf inv xD
upd v3 crash fix
upd v3.1 inf inv improvement, added experimental scripts:
inf HP - Sometimes it work, sometimes not, but with it easy to find HP, do it just before mission load (activate it -> go to memory view -> Ctrl+G -> past "aob_fghfh33888" -> disable script -> RMB at instruction and "Find out what addresses this instruction access".
inf char xp - Allow to learn skills but it broke available xp and don't allow to get prestige =\, "xp reset" may help after complete mission
Just a small suggestion for QoL.
You can add one of these two Lua Script to the table.
- 1. This lua script will automatically attach CE to Forever Winter:
Code: Select all
if not syntaxcheck then
getAutoAttachList().add("ForeverWinter-Win64-Shipping.exe")
end
- 2. This version of the lua script will automatically attach to Forever Winter AND activate compact view:
Code: Select all
if not syntaxcheck then
function cycleFullCompact( sender, force )
local state = not( compactmenuitem.Caption == 'Compact View Mode' )
if force ~= nil then
state = not force
end
compactmenuitem.Caption = state and 'Compact View Mode' or 'Full View Mode'
getMainForm().Splitter1.Visible = state
getMainForm().Panel4.Visible = state
getMainForm().Panel5.Visible = state
end
function addCompactMenu()
if compactmenualreadyexists then return end
local parent = getMainForm().Menu.Items
compactmenuitem = createMenuItem( parent )
parent.add( compactmenuitem )
compactmenuitem.Caption = 'Compact View Mode'
compactmenuitem.OnClick = cycleFullCompact
compactmenualreadyexists = 'yes'
end
addCompactMenu()
cycleFullCompact( nil, true )
getAutoAttachList().add("ForeverWinter-Win64-Shipping.exe")
end
Re: The Forever winter
Posted: Thu Sep 26, 2024 4:30 am
by JIEKC3
Little table update

Re: The Forever winter
Posted: Thu Sep 26, 2024 2:14 pm
by NotAFedBoy
JIEKC3 wrote: ↑Wed Sep 25, 2024 2:20 pm
Quick table for inf ammo, inv weight, inf money, inf all Items
For HP search float value, change it to 9000 and freeze or use HP pointers if it shows correct HP
v3.1 - inf inv improvement, added experimental scripts:
inf HP - Sometimes it work, sometimes not, but with it easy to find HP, do it just before mission load (activate it -> go to memory view -> Ctrl+G -> past "aob_fghfh33888" -> disable script -> RMB at instruction and "Find out what addresses this instruction access".
inf char xp - Allow to learn skills but it broke available xp and don't allow to get prestige =\, "xp reset" may help after complete mission
v4 - added Player HP Pointers, inf money, inf all Items and "CE compact mode" special for s4boi
v4.1 - little improvements , added "reset items to 1"
Great updates but small bug with "reset items to 1" it doesn't affect all items some still stay at 90k and is the use of the donation box impossible after using the inf items?
EDIT: It seems the unaffected items by the "reset to 1" script are the ones marked not usable by this character
Re: The Forever winter
Posted: Thu Sep 26, 2024 3:05 pm
by JIEKC3
NotAFedBoy wrote: ↑Thu Sep 26, 2024 2:14 pm
JIEKC3 wrote: ↑Wed Sep 25, 2024 2:20 pm
Quick table for inf ammo, inv weight, inf money, inf all Items
For HP search float value, change it to 9000 and freeze or use HP pointers if it shows correct HP
v3.1 - inf inv improvement, added experimental scripts:
inf HP - Sometimes it work, sometimes not, but with it easy to find HP, do it just before mission load (activate it -> go to memory view -> Ctrl+G -> past "aob_fghfh33888" -> disable script -> RMB at instruction and "Find out what addresses this instruction access".
inf char xp - Allow to learn skills but it broke available xp and don't allow to get prestige =\, "xp reset" may help after complete mission
v4 - added Player HP Pointers, inf money, inf all Items and "CE compact mode" special for s4boi
v4.1 - little improvements , added "reset items to 1"
Great updates but small bug with "reset items to 1" it doesnt affect all items some still stay at 90k and is the use of the donation box impossible after using the inf items?
Just sell 1 amount of item that stay 90k. You can try to open donate box but if you have 90k of any gun the game will freeze and you will need restart the game =D
Re: The Forever winter
Posted: Thu Sep 26, 2024 3:30 pm
by slashdogz
What would be a safe value to open the Donation box? 1k of any gun still not doable.
Re: The Forever winter
Posted: Thu Sep 26, 2024 3:35 pm
by JIEKC3
slashdogz wrote: ↑Thu Sep 26, 2024 3:30 pm
What would be a safe value to open the Donation box? 1k of any gun still not doable.
Try 5 or 10 idk
Re: The Forever winter
Posted: Thu Sep 26, 2024 3:51 pm
by Tbby
Thank you so much for this! It’s gonna be really helpful. I was wondering, would you consider adding a value to change the FOV? I like to make little videos of the game and I prefer the cinematic look of a lower FOV.
Thanks again!
Re: The Forever winter
Posted: Thu Sep 26, 2024 3:54 pm
by NotAFedBoy
slashdogz wrote: ↑Thu Sep 26, 2024 3:30 pm
What would be a safe value to open the Donation box? 1k of any gun still not doable.
After some testing after bring my item counts back to under 50 everything works fine.
i had to sell everything that was left with 90k counts and using a edited money amount everything is working again side note apparently you can get negative Rep if the total cash amount youre selling is toooo high anything past 1 Billion iirc.
Id recommend changing the script value to something other than 90k items i changed mines to just 10 items for inf items
and you can use an edited value on inf money to reset you money to non cheaty levels after selling off all the leftover items
Re: The Forever winter
Posted: Thu Sep 26, 2024 5:02 pm
by JIEKC3
Tbby wrote: ↑Thu Sep 26, 2024 3:51 pm
Thank you so much for this! It’s gonna be really helpful. I was wondering, would you consider adding a value to change the FOV? I like to make little videos of the game and I prefer the cinematic look of a lower FOV.
Thanks again!
Added, didn't test it well, but everything seems to work fine