diff options
Diffstat (limited to 'npc/002-4/nard.txt')
-rw-r--r-- | npc/002-4/nard.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/npc/002-4/nard.txt b/npc/002-4/nard.txt index a09abbc78..5b0ca357c 100644 --- a/npc/002-4/nard.txt +++ b/npc/002-4/nard.txt @@ -185,6 +185,8 @@ L_Travel: menu rif(LOCATION$ != "Candor", l("To Candor Island.")), L_TCandor, rif(LOCATION$ != "Tulim", l("To Tulimshar.")), L_TTulim, + rif(ST_TIER == 7 && gettimetick(2) < QUEST_ELEVARTEMPO ,l("Help me, I need Jesusaves Grimorie!")), L_Tier2, + rif(ST_TIER == 9 && countitem(Lifestone) && gettimetick(2) < QUEST_ELEVARTEMPO ,l("Help me, I need Jesusaves Grimorie!")), L_Tier2Ok, l("No, I'll save my money."), -; } else { mes l("You still need @@ GP to afford it.", (.@price-Zeny)); @@ -223,6 +225,40 @@ L_TTulim: warp "002-5", 39, 26; end; +L_Tier2: + mes ""; + mesn; + mesq l("WHAT?! ARE YOU OUT OF MIND?!?!"); + next; + mesn; + if (nard_reputation() < 8) { + mesq l("THAT GRIMORIE IS A SUPER DUPER MEGA UPER RARE BOOK, I CANNOT GIVE IT TO ANYBODY ASKING ME ABOUT!!"); + next; + mesn; + mesq l("GET OUT OF HERE, YOUR NOBODY!"); + close; + } + mesq l("That is a rare, precious book, which writes itself!"); + next; + mesn; + mesq l("I cannot just give it to you for nothing. Run to Elanore and fetch me a @@. You need to make a new one, an old one I won't accept.", getitemlink(Lifestone)); + ST_TIER=8; + close; + +L_Tier2Ok; + mes ""; + mesn; + mes col("*tut*", 9); + next; + inventoryplace JesusalvaGrimorium, 1; + getitembound "JesusalvaGrimorium", 1, 4; + delitem Lifestone, 1; + getexp 200, 0; + ST_TIER=10; + mesn; + mesq l("Here, take it. If the mana goes out of your body, I'll have your class master to return the book to me."); + close; + L_Close: close; |