diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-10 12:14:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-10 12:14:59 -0300 |
commit | a3a5446593660529f3530e252a818d6d1b364c64 (patch) | |
tree | f77729f2d92f525bdddf7344fb2b5fda34fd3c5d | |
parent | 5703b57b686fc649c5981fea39cc6fbb20c7054b (diff) | |
download | serverdata-a3a5446593660529f3530e252a818d6d1b364c64.tar.gz serverdata-a3a5446593660529f3530e252a818d6d1b364c64.tar.bz2 serverdata-a3a5446593660529f3530e252a818d6d1b364c64.tar.xz serverdata-a3a5446593660529f3530e252a818d6d1b364c64.zip |
Raise Zegas Quest Level to 5
-rw-r--r-- | npc/005-1/zegas.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/005-1/zegas.txt b/npc/005-1/zegas.txt index 14f539bd9..a0dfb076e 100644 --- a/npc/005-1/zegas.txt +++ b/npc/005-1/zegas.txt @@ -2,6 +2,8 @@ 005-1,35,77,0 script Zegas NPC_MONA,{ .ItemCreate = CandorShorts; .@q = getq(CandorQuest_Barrel); + if (BaseLevel < 5) + goto L_Weak; if (.@q == 1) goto L_Find; if (.@q == 2) @@ -12,6 +14,11 @@ goto L_Thanks; goto L_Meet; +L_Weak: + mesn; + mesq l("Do not enter on this storehouse, the maggots there will kill you."); + close; + L_Meet: mesn; mesq l("Hey do you have a second?"); |