diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-14 11:06:11 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-14 11:06:11 -0200 |
commit | 5cc1535c48a2f255e5449fd4b7cce62a37d46761 (patch) | |
tree | ca27f8059c3d34ce7338acb3d8ed3ca9d9843e3d /npc/017-1/pet_detective.txt | |
parent | 07eeaa78fcf69750b6f8f7ad759c512e93f2500d (diff) | |
download | serverdata-5cc1535c48a2f255e5449fd4b7cce62a37d46761.tar.gz serverdata-5cc1535c48a2f255e5449fd4b7cce62a37d46761.tar.bz2 serverdata-5cc1535c48a2f255e5449fd4b7cce62a37d46761.tar.xz serverdata-5cc1535c48a2f255e5449fd4b7cce62a37d46761.zip |
Redesign mob hunter quest entirely. It's now fully dependent on Pet Detective.
Diffstat (limited to 'npc/017-1/pet_detective.txt')
-rw-r--r-- | npc/017-1/pet_detective.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/npc/017-1/pet_detective.txt b/npc/017-1/pet_detective.txt index 5d65fc0b8..a96e2caad 100644 --- a/npc/017-1/pet_detective.txt +++ b/npc/017-1/pet_detective.txt @@ -16,14 +16,14 @@ mesq l("The Pet Caring Guild will collect them after a while, and capture many others."); next; mesn l("Ace Ventura"); - mesq l("So, what do you say about a deal? I'll affiliate you on the Pet Caring Guild for only 150.000 GP!"); - if (Zeny < 150000) + mesq l("So, what do you say about a deal? I'll affiliate you on the Pet Caring Guild for only 5.000 GP!"); + if (Zeny < 5000) close; next; if (askyesno() == ASK_NO) close; mes ""; - if (Zeny < 150000) { + if (Zeny < 5000) { mesn l("Ace Ventura"); mesq l("Oh, but we are affiliated with Jesusalva, whom hates cheaters. So, meet your dismissal!"); percentheal -100, 0; @@ -34,10 +34,10 @@ */ close; } - Zeny=Zeny-150000; + Zeny=Zeny-5000; getexp 0, 500; setq LoFQuest_Pets, 1; - setarray PETMEMO, 0, 1; + setarray PETMEMO, 0, 0; mesn l("Ace Ventura"); mesq l("Congrats! You are now part from the Pet Caring Guild. You can now buy pets! %%G"); close; @@ -48,6 +48,9 @@ L_Menu: mesn l("Ace Ventura"); mesq l("I currently have some pets with me. For most, you need to finish their Grand Hunter Quest, of course."); mes ""; + mesc l("Note: some pets still weren't implemented!"); + mesc l("NYI: @@, @@, @@, @@", getmonsterlink(Snake), getmonsterlink(Scorpion), getmonsterlink(Moggun), getmonsterlink(Fluffy)); + mes ""; select rif(GHMEMO[GHQ_GetQuestIDByMonsterID(Maggot)] >= 10000 && !countitem(MaggotCocoon), l("Cute Maggot")), rif(GHMEMO[GHQ_GetQuestIDByMonsterID(ForestMushroom)] >= 10000 && !countitem(ForestShroomEgg), l("Forest Mushroom")), @@ -90,7 +93,7 @@ OnInit: OnSun0000: OnWed1200: - .stock+=1; + .stock+=2; end; } |