Hmm...
Guter Reiter , not really sure if your code is broke or just strangely wrote.
All your variable assignations are wrote
= +1
, what mean that you are assigning the value 1 to the variable, and that the variable's value will always be 1. Therefore when you have
like_cum_on = +1
in ep_2.rpy:446, then on ep_3.rpy:584, even if the player hit the two, the value of
like_cum_on
will be 1, and not 2.
If you expect the variables to act as flags, it's alright ; just strange since you also have regular flags with a boolean value. But if you want the value to evolve, by example to weight vaginal and anal liking, then it's absolutely not like this that it must be done. You should write
+= 1
instead of what there's actually in your code.