summaryrefslogtreecommitdiff
path: root/npc/005-4
diff options
context:
space:
mode:
authorSaulc <lucashelaine14@gmail.com>2018-02-06 19:36:06 +0100
committerSaulc <lucashelaine14@gmail.com>2018-02-06 19:36:06 +0100
commit492f9ed19cd0618026b3c160397da9730da442bc (patch)
tree9d29a2fe7cd87accfa121110b494f70903be5d8c /npc/005-4
parent76ed64d09c767983c73eba2dfbb95af994e67934 (diff)
downloadserverdata-492f9ed19cd0618026b3c160397da9730da442bc.tar.gz
serverdata-492f9ed19cd0618026b3c160397da9730da442bc.tar.bz2
serverdata-492f9ed19cd0618026b3c160397da9730da442bc.tar.xz
serverdata-492f9ed19cd0618026b3c160397da9730da442bc.zip
fix tolchi quest condition
Diffstat (limited to 'npc/005-4')
-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)