Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Strive for Power

Fantasy Slave Management/RPG Erotic Game · By Strive4Power

Gallery Reset

A topic by shawn99 created Dec 02, 2019 Views: 284 Replies: 2
Viewing posts 1 to 2
(1 edit)

So, I was mucking about with a mod and somehow my Character Gallery got reset. I'm not sure what happened, but I was up to where I had about half of the characters and now I have none. I've tried going into "gallery.gd" and putting everything that I had before as "true" but it doesn't seem to do anything. If anyone has any knowledge of how to fix this, I'd appreciate it.

The values in "gallery.gd" are default values and are only used when a new "progressdata" file is created in Strive's AppData. Otherwise, they get overwritten by the values in "progressdata". The simple way to reset those values to your new default is to delete "progressdata". 

The more complex way would be to open "globals.gd" and change line line 198:   "if temp.has(character):"   to   "if false && temp.has(character):"  by adding the " false && ".  Then save a progress once to overwrite the saved values with your default values, and remove the added code.  This way is probably unnecessary, but it would preserve any save file summaries(the data about a save you see when you select it in save/load menu) stored in "progressdata".

Thank you for the help. Worked like a charm.