Can you please give me your savegame? It's in /home/user/.config/sakya/LoneWolf_6.ini
I think it's correct as it is now. The rules says: In the case of the tournament you're in combat and you have a bow equipped (in a normal fight this cannot happen), and during the combat you choose from the random table.
This sounds really strange. The script is this: Code: Window.MessageBox('', Window.GetLostEndurancePoints()); Window.MessageBox('', Window.GetEnemyLostEndurancePoints()); if (Window.GetLostEndurancePoints() >= 50){ Section.GetChoice(0).SetEnabled(true); Section.GetChoice(1).SetEnabled(false); Section.GetChoice(2).SetEnabled(false); }else if (Window.GetEnemyLostEndurancePoints >= 50){ Section.GetChoice(0).SetEnabled(false); Section.GetChoice(1).SetEnabled(true); Section.GetChoice(2).SetEnabled(false); } and if you see message boxes how can the if fail?
Window.MessageBox('', Window.GetLostEndurancePoints()); Window.MessageBox('', Window.GetEnemyLostEndurancePoints()); if (Window.GetLostEndurancePoints() >= 50){ Section.GetChoice(0).SetEnabled(true); Section.GetChoice(1).SetEnabled(false); Section.GetChoice(2).SetEnabled(false); }else if (Window.GetEnemyLostEndurancePoints >= 50){ Section.GetChoice(0).SetEnabled(false); Section.GetChoice(1).SetEnabled(true); Section.GetChoice(2).SetEnabled(false); }