This is mainly directed at any Paradox dev that might be watching, but if anyone else has figured how this works I'd be happy for an answer. I'm wondering exactly how the following lines work:
At first I thought it was meant to be something like:
But playing around with values made clear that this was not the case. Furthermore, I tried putting in all sorts of values like 100, 1000, -10000 etc into both and as far as I could tell it did nothing at all. The only reason I don't just conclude that it doesn't work at all is because Paradox uses these values on a couple places. So, anyone that knows, how exactly do these lines work?
Code:
ASK_FOR_VASSALIZATION_INTERACTION_THRESHOLD_FOR_NO = 0,
ASK_FOR_VASSALIZATION_INTERACTION_THRESHOLD_FOR_YES = 0,
At first I thought it was meant to be something like:
Code:
ASK_FOR_VASSALIZATION_INTERACTION_THRESHOLD_FOR_NO = 25, #if 25% of dots are red, say no
ASK_FOR_VASSALIZATION_INTERACTION_THRESHOLD_FOR_YES = 75, #if 75% of dots are green, say yes
But playing around with values made clear that this was not the case. Furthermore, I tried putting in all sorts of values like 100, 1000, -10000 etc into both and as far as I could tell it did nothing at all. The only reason I don't just conclude that it doesn't work at all is because Paradox uses these values on a couple places. So, anyone that knows, how exactly do these lines work?