- Nov 13, 2017
- 91
- 87
To be honest i´ve made this exact mistake before, its painful.There is a bug in the script in tavern_events.rpy. You can't have two IF "<= 4" and ">= 4". To get the scene you have to change it to "< 4".
Code:"Observar la situación.": if Cuckold <= 4 and Virginity == 0 or Virginity == 1: Player "{color=#f00}No quiero hacer esto.{/color}" jump tomadedecisionestaverna01 if Cuckold >= 4 and Virginity == 0 or Virginity == 1: $ Saki_Love -= 2 jump evento01tavernasakikoobservar
Edit: Just replacing by a >4 will not work, he needs to replace the second conditional by an else clause.
Last edited: