Page 1 of 1

For the People

Posted: Thu Aug 13, 2020 3:16 pm
by The Mogician
Pointer table for:
-Money

I think this points to the amount of money on Day 1, but the way money works in this game is kinda wonky,

Technically, you can find the amount of money by inserting the number the game shows *1000 (because of the K) and you get about 1-2 numbers, you just change that and it will get fixed up. I believe the address changes every single time the money is changed. I'll keep trying to figure out the other stuff in this game.

Save location: Steam\steamapps\common\For the People\game\saves

I assume we can do save editing but I tried pulling it off with UltraEdit/Notepad++ but it only showed up as nonsense. If someone is skilled at this kind of stuff, please let us know.

Re: For the People

Posted: Fri Aug 14, 2020 6:22 am
by Registered_Guest
Much appreciated! Would also like to know how the resources work.

Re: For the People

Posted: Fri Aug 14, 2020 6:26 am
by The Mogician
Registered_Guest wrote:
Fri Aug 14, 2020 6:22 am
Much appreciated! Would also like to know how the resources work.
This is in fact what I am working very hard on right now. My presumption is that it should be similar to the money amount, but since the number for the wolfram resource is much lower, it is much harder to find out. I tried finding the number in proximity to the money count but did not succeed so far.

Re: For the People

Posted: Sun Aug 16, 2020 7:48 pm
by arks1111
hi,

just created an account to say that the save file is actually a .zip archive.

just started looking at it, will post if i find anything.

Re: For the People

Posted: Mon Aug 17, 2020 2:04 am
by danielyee
to my respected grandmaster the magician ..other fella friends..grandmaster table maker..
sir the game is cute n ok..can master plz help on the supplies..too..please..appreciated master

Re: For the People

Posted: Mon Aug 17, 2020 5:21 am
by PhCCRQQsd6Bi
file replacement no table.

money and efficiency should not decrease and whatever relations fails are about should not increase above 0.

and im on version (7, 2, 2). might be old, only copy i found.

update 1:
added districts, will increase district to 100% if it falls below 30%

Re: For the People

Posted: Mon Aug 17, 2020 6:32 am
by danielyee
hi sir the file need password

Re: For the People

Posted: Mon Aug 17, 2020 8:55 am
by Osbornite
danielyee wrote:
Mon Aug 17, 2020 6:32 am
hi sir the file need password
pw: fearlessrevolution
you can see at the attachments box

Re: For the People

Posted: Mon Aug 17, 2020 11:07 am
by Cake-san
Since, I'm lazy, here's a guide...
Enable console:
Open gamename/Renpy/Common/00console.rpy using text editor
Press Ctrl+F and enter config.console (Finding this term)
Set it’s variable to True
so it should look like,
config.console = True
Save the file.
Now the Shift+O should work to open console in-game

Code: Select all

game.data['money']=500000000

game.data['efficiency']=100

game.logistic.iron_data.resources['metal'].storage=1000

game.logistic.iron_data.resources['iron'].storage=1000

game.logistic.iron_data.resources['fuel'].storage=1000

game.logistic.iron_data.resources['light_industry'].storage=1000

game.logistic.iron_data.resources['medecine'].storage=1000

game.logistic.iron_data.resources['food'].storage=1000

Re: For the People

Posted: Thu Aug 20, 2020 6:59 am
by The Mogician
Cake-san wrote:
Mon Aug 17, 2020 11:07 am
Since, I'm lazy, here's a guide...
Enable console:
Open gamename/Renpy/Common/00console.rpy using text editor
Press Ctrl+F and enter config.console (Finding this term)
Set it’s variable to True
so it should look like,
config.console = True
Save the file.
Now the Shift+O should work to open console in-game

Code: Select all

game.data['money']=500000000

game.data['efficiency']=100

game.logistic.iron_data.resources['metal'].storage=1000

game.logistic.iron_data.resources['iron'].storage=1000

game.logistic.iron_data.resources['fuel'].storage=1000

game.logistic.iron_data.resources['light_industry'].storage=1000

game.logistic.iron_data.resources['medecine'].storage=1000

game.logistic.iron_data.resources['food'].storage=1000
How and where did you manage to find these commands?