Not a problem.... after all I may've got the idea from another game (or maybe not)- just glad to help out on any game tbh
Thanks Foxy! Currently trying it out in development, I think this feature is pretty fun.
Can't copy paste the code as I've overcomplicated the shit out of the cheating system, but at its basis:
- you have a persistent set of unlocked cheats that carries through to new games
default persistent.unlocked_cheats=set()
- you have a variable that indicates whether you used the "Unlock all cheats" cheat. This variable won't carry through playthroughs.
default all_cheats_unlocked=False
- you have a function unlock_cheat(cheat) that you can call to check if cheat is already in persistent.unlocked_cheats, and if not adds it to it to that set ($ persistent.unlocked_cheats.add(cheat)) and gives a message that you unlocked the cheat ($ renpy.notify(f"You unlocked {cheat}!")).
- In the menu that displays your cheating options, per option you just check if it's either in persistent.unlocked_cheats or all_cheats_unlocked is True. If either, the cheat option gets displayed and the user can use the cheat.
- you have a cheat "Unlock all cheats" that gets displayed if all_cheats_unlocked is False, and which just put all_cheats_unlocked to True if you use it
In this way, people who're used to the cheats being around can just unlock 'm (but they have to do that every playthrough), while people who unlock the cheats during gameplay get a sort of "Newgame+" experience, with more and more cheats being unlocked in a "fair" way.
I don't know what Xaverion's opinion is about the cheating system, and if he's open to change it. I also don't think we had a clear consensus on what people thought of the cheating system and whether it needed changing. But having tried it out, I personally think it'd be fun to do something similar in BSC.