Does anyone know how to mod the game to letting you choose to proc an event or not? There was a user who did this for the previous versions of the game, but unfortunately disappeared for the final release.
Depending on what you want to do, you have a few options. For example, script decides whatever event will play or not by "x_chance.check_event()" (where "x" is the name of event).
If you want to completely get rid of chance and choose whatever event happens or not, you would have to change content of this function (line 247 in my script, might be a little higer or lower in yours), starting from "if" with:
Code:
menu:
"Proceed with event?"
return True
"Skip event."
return False
At least it should work, I haven't tested it yet. Also, this might require deleting other functions controling chance events (like "inc_chance" just below, for example) if they are calling for eachother somewhere. Also nr.2, sorry for not posting it as nice edit to the script, but I'm writing from different PC.