summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/005-4/tolchi.txt8
1 files 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)