From 492f9ed19cd0618026b3c160397da9730da442bc Mon Sep 17 00:00:00 2001 From: Saulc Date: Tue, 6 Feb 2018 19:36:06 +0100 Subject: fix tolchi quest condition --- npc/005-4/tolchi.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/npc/005-4/tolchi.txt b/npc/005-4/tolchi.txt index 3fbcd7174..197b055b1 100644 --- a/npc/005-4/tolchi.txt +++ b/npc/005-4/tolchi.txt @@ -137,7 +137,7 @@ .@tolchi = getq(CandorQuest_Tolchi); - if (BaseLevel <= 4) + if (BaseLevel <= 4 || BaseLevel <= 9 && .@tolchi == 1 || BaseLevel <= 14 && .@tolchi == 2) { speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("You aren't strong enought. Come Back Later."); @@ -160,9 +160,9 @@ do { select - rif(BaseLevel >= 5 && .@tolchi == 0, l("Yes.")), - rif(BaseLevel >= 10 && .@tolchi == 1, l("Yes.")), - rif(BaseLevel >= 15 && .@tolchi == 2, l("Yes.")), + rif(.@tolchi == 0, l("Yes.")), + rif(.@tolchi == 1, l("Yes.")), + rif(.@tolchi == 2, l("Yes.")), l("No."); switch (@menu) -- cgit v1.2.3-60-g2f50