diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-20 13:38:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-20 13:38:52 -0300 |
commit | 890ed4b074999c3c8bcabf328e17b350ce6474d3 (patch) | |
tree | 33fa00eec5a4cd3ba79c6c00a2f886bdede27021 /npc/002-4/nard.txt | |
parent | 14d101aae3e6b03f24a4428a4ea5db190ad29c36 (diff) | |
download | serverdata-890ed4b074999c3c8bcabf328e17b350ce6474d3.tar.gz serverdata-890ed4b074999c3c8bcabf328e17b350ce6474d3.tar.bz2 serverdata-890ed4b074999c3c8bcabf328e17b350ce6474d3.tar.xz serverdata-890ed4b074999c3c8bcabf328e17b350ce6474d3.zip |
Class Tier 2. T2 Class Skill still TODO
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; |