summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-09-13 11:29:54 -0300
committerJesusaves <cpntb1@ymail.com>2018-09-13 11:29:54 -0300
commit7468e4e043a2a1d907a885157f0c7b5d44b43c03 (patch)
tree1c676e71db44c6ba8cf122bd79a93f63c32af80e
parentdab45f6da01a4954e96aca904c145fa4c58ddb59 (diff)
downloadserverdata-7468e4e043a2a1d907a885157f0c7b5d44b43c03.tar.gz
serverdata-7468e4e043a2a1d907a885157f0c7b5d44b43c03.tar.bz2
serverdata-7468e4e043a2a1d907a885157f0c7b5d44b43c03.tar.xz
serverdata-7468e4e043a2a1d907a885157f0c7b5d44b43c03.zip
Unfinished
-rw-r--r--db/quest_db.conf4
-rw-r--r--npc/017-1/_import.txt1
-rw-r--r--npc/017-1/pet_detective.txt93
3 files changed, 98 insertions, 0 deletions
diff --git a/db/quest_db.conf b/db/quest_db.conf
index f449c31b9..1d7d6acb5 100644
--- a/db/quest_db.conf
+++ b/db/quest_db.conf
@@ -290,6 +290,10 @@ quest_db: (
Id: 273
Name: "LoFQuest_Doug"
},
+{
+ Id: 274
+ Name: "LoFQuest_Pets"
+},
// ID 300 to 320: Seasonal/Annual/Monthly quests
{
diff --git a/npc/017-1/_import.txt b/npc/017-1/_import.txt
index a1f0b24d5..5167645b5 100644
--- a/npc/017-1/_import.txt
+++ b/npc/017-1/_import.txt
@@ -7,6 +7,7 @@
"npc/017-1/misc.txt",
"npc/017-1/nowhere_man.txt",
"npc/017-1/paxel.txt",
+"npc/017-1/pet_detective.txt",
"npc/017-1/roger.txt",
"npc/017-1/shops.txt",
"npc/017-1/signs.txt",
diff --git a/npc/017-1/pet_detective.txt b/npc/017-1/pet_detective.txt
new file mode 100644
index 000000000..1b9d6a6e3
--- /dev/null
+++ b/npc/017-1/pet_detective.txt
@@ -0,0 +1,93 @@
+// TMW2/LoF scripts.
+// Authors:
+// TMW-LoF Team
+// Jesusalva
+// Description:
+// Sell pets (LoFQuest_Pets) (mesn Ace Ventura)
+
+017-1,192,23,0 script Pet Detective NPC_PET_TAMER,{
+ .@q=getq(LoFQuest_Pets);
+ if (.@q) goto L_Menu;
+ mesn;
+ mesq l("I investigate missing pets. Many flee from their owners because they die pathetically or forgot to feed them.");
+ next;
+ mesn;
+ mesq l("If they at least read the @@, they wouldn't have such problems.", getitemlink(PetcaringGuide));
+ mesq l("The Pet Caring Guild will collect them after a while, and capture many others.");
+ next;
+ mesn;
+ mesq l("So, what do you say about a deal? I'll affiliate you on the Pet Caring Guild for only 350.000 GP!");
+ if (Zeny < 350000)
+ close;
+ next;
+ if (askyesno() == ASK_NO)
+ close;
+ mes "";
+ if (Zeny < 350000) {
+ mesn;
+ mesq l("Oh, but we are affiliated with Jesusalva, whom hates cheaters. So, meet your dismissal!");
+ percentheal -100, 0;
+ }
+ Zeny=Zeny-350000;
+ getexp 0, 500;
+ setq LoFQuest_Pets, 1;
+ setarray PETMEMO, 0, 0, 0;
+ mesn;
+ mesq l("Congrats! You are now part from the Pet Caring Guild. You can now buy pets! %%G");
+ close;
+
+L_Menu:
+ if (!.stock)
+ goto L_OutOfStock;
+ mesn;
+ mesq l("I currently have some pets with me. For most, you need to finish their Grand Hunter Quest, of course.");
+ mes "";
+ select
+ rif(GHMEMO[GHQ_GetQuestIDByMonsterID(ForestMushroom)] >= 10000, l("Forest Mushroom")),
+ l("Nothing at the moment.");
+
+ mes "";
+ switch (@menu) {
+ case 1:
+ .@price=30**(PETMEMO[GHQ_GetQuestIDByMonsterID(ForestMushroom)]+1);
+ mesn;
+ mesq l("That'll cost you @@ @@.", .@price, getitemlink(MushroomSpores));
+ next;
+ if (askyesno() == ASK_YES) {
+ if (countitem(MushroomSpores) >= .@price && .stock) {
+ delitem MushroomSpores, .@price;
+ makeegg ForestMushroom;
+ getexp .@price*100, 0;
+ PETMEMO[GHQ_GetQuestIDByMonsterID(ForestMushroom)]+=1;
+ .stock-=1;
+ mesn;
+ mesq l("There you go!");
+ }
+ }
+ break;
+ default:
+ closedialog;
+ goodbye;
+ close;
+ }
+
+ next;
+ goto L_Menu;
+
+L_OutOfStock:
+ mesn;
+ mesq l("Sorry, I don't have any pets at the moment.");
+ close;
+
+OnInit:
+ .sex=G_MALE;
+ .distance=5;
+ .stock=1;
+ end;
+
+OnSun0000:
+OnWed1200:
+ .stock+=1;
+ end;
+}
+