diff options
Diffstat (limited to 'npc/functions/class.txt')
-rw-r--r-- | npc/functions/class.txt | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/npc/functions/class.txt b/npc/functions/class.txt index 7158c6c5e..b1e404a24 100644 --- a/npc/functions/class.txt +++ b/npc/functions/class.txt @@ -158,11 +158,29 @@ L_T2_Fail: next; mesn; mes col("YOU WILL BE PENALIZED WITH 60% OF HEALTH.", 1); - mes col("IF YOU DIE, YOU'LL SUFFER THE PENALTY.", 1); + mes col("IF YOU DIE, YOU'LL SUFFER THE EXP PENALTY.", 1); percentheal -60, -100; close; } } + + if (ST_TIER == 7) { + if (1) {//countitem(Grimorie) > 0) { + //delitem Grimorie, 1; + dispbottom l("Blame Jesusalva"); + close; + } else { + mesn; + mes col("WARNING. YOU ARE CHEATING THE GRIMORIE QUEST.", 1); + next; + mesn; + mes col("YOU WILL BE PENALIZED WITH 70% OF HEALTH.", 1); + mes col("IF YOU DIE, YOU'LL SUFFER THE EXP PENALTY.", 1); + percentheal -70, -100; + close; + } + } + mes col(".:: Mission Failed ::.", 1); mes col("You ran out of time.", 1); mes ""; @@ -271,6 +289,7 @@ L_T2_S4: delitem MauveHerb, .@r; ST_TIER=5; getexp .@r*3, 0; + //getitem MagicPotion, 1; mesq col("You quickly give him the herbs, and he skillfully mix them on a potion.", 9); next; |