@Laxus
Hello, first of all thank you so much for all the games.
P.S I don’t have VIP to test this game yet, but I am hoping to become a contributor soon.
I think I know a fix for this game.
I think it comes down to the mod forcing values on the client while the server still expects everything to happen in a strict order, especially in the tutorial. That part of the game is heavily scripted and checks things like resource changes and progression flags step by step. When stuff like unlimited currency or instant upgrades gets injected, the sequence breaks and the data no longer lines up. The game ends up reading states that shouldn’t exist yet, which leads to invalid values or missing flags and then it just crashes.
The guest account issue feels worse because it relies more on local data before syncing, so any tampering makes it unstable right away. Without a solid server-backed profile, the game has nothing consistent to reconcile with, so errors stack up faster. Logging in helps since it anchors everything to the server, and getting to level 5 legit basically pushes you past the most strict validation checks. After that the system is looser, so the mod doesn’t immediately conflict with every action.
I have been trying to test my solutions on a slightly modified version of Jurassic world the game which has similar security, but its older. However they have similar bases.