Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+2)

Hello everybody! i don't know if the dev will aprove or not but you can change some value inside your save files!

For example you can change your Idols Name, spec, stamina, you can even change her apparence! (i think it's a start for apparence mods)

You can even change single title, revenue for a contract and many more! i'll gladly help if someone is interested!

(+1)

I would definitely be interested in how to change the appearance of the idols!  The ones I get with the good stats are always the ones that don't look that great

(+4)

Okay, first you need to open your save file with a text editor. Save files are here:
Win: C:\Users\*username*\AppData\LocalLow\Glitch Pitch\Idol Manager\data
Mac: ~/Library/Application Support/Glitch Pitch/Idol Manager/data/

Find your idol in data_girls__Girls and find her "textureAssets". You can change her appearance by editing "asset_id" parameters. You can get IDs from this folder: *game_folder*\IM_Data\StreamingAssets\Textures\IdolPortraits

"textureAssets": [
                {
                    "type": 0,  <- Body
                    "asset_id": "0 5 0"
                },
                {
                    "type": 1, <- Hair
                    "asset_id": "1 5 1" <- First number = same as "type". Second number = Body ID. Third number = Asset ID.
                },
                {
                    "type": 2, <- Face
                    "asset_id": "2 5 1"
                },
                {
                    "type": 3, <- Accessory
                    "asset_id": "3 5 0"
                }
            ],

Thank you so much for the quick response, Sadambober!

Can I do this on the fly? Or I have to kill the game before editing save files?

Yep, you can (except for auto_save.json)