summaryrefslogtreecommitdiff
path: root/npc/000-2-1/chefgado.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2015-06-20 15:57:31 +0200
committerReid <reidyaro@gmail.com>2015-06-20 15:57:31 +0200
commit0af6f46e4f30d0b4be7bfc0981a91532aa23a7be (patch)
treeb4d35b9af14039eef6f7237bd444d111aef7fcff /npc/000-2-1/chefgado.txt
parent292270ca3bec31382ee31aa12c327ca855c568a4 (diff)
downloadserverdata-0af6f46e4f30d0b4be7bfc0981a91532aa23a7be.tar.gz
serverdata-0af6f46e4f30d0b4be7bfc0981a91532aa23a7be.tar.bz2
serverdata-0af6f46e4f30d0b4be7bfc0981a91532aa23a7be.tar.xz
serverdata-0af6f46e4f30d0b4be7bfc0981a91532aa23a7be.zip
Replace NPC names by NPC IDs.
Diffstat (limited to 'npc/000-2-1/chefgado.txt')
-rw-r--r--npc/000-2-1/chefgado.txt30
1 files changed, 15 insertions, 15 deletions
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt
index cf9e3df6..e55cf5c0 100644
--- a/npc/000-2-1/chefgado.txt
+++ b/npc/000-2-1/chefgado.txt
@@ -23,7 +23,7 @@
if (.@q == 2) goto L_PoisonAccepted;
if (.@q == 3) goto L_PoisonJulia;
if (.@q == 4) goto L_QuestComplete;
- if (.@q == 5 && countitemcolor("PoisonedDish") > 0) goto L_Aborting;
+ if (.@q == 5 && countitemcolor(717) > 0) goto L_Aborting;
if (.@q > 4) goto L_QuestAborted;
if (.@n == 3) goto L_QuestStart;
@@ -79,9 +79,9 @@ L_Rude:
next;
mesq l("I just realized I am lacking some common things, and one key ingredient, to prepare a... A special recipe.");
next;
- mesq l("I only need 2 @@, 2 @@s, 1 @@...", getitemlink("PiouLegs"), getitemlink("HalfCroconut"), getitemlink("Aquada"));
+ mesq l("I only need 2 @@, 2 @@s, 1 @@...", getitemlink(505), getitemlink(512), getitemlink(509));
next;
- mesq l("... and 1 @@.", getitemlink("SeaDrops"));
+ mesq l("... and 1 @@.", getitemlink(508));
next;
menu
@@ -93,7 +93,7 @@ L_Rude:
mesn;
mesq l("Well done! Collect all the ingredients and then come back here. You will be rewarded, once I am satisfied that they understand who rules this ship!");
next;
- mesq l("Before you go, let me tell you how to get @@s, because you don't look very smart.", getitemlink("HalfCroconut"));
+ mesq l("Before you go, let me tell you how to get @@s, because you don't look very smart.", getitemlink(512));
goto L_OpenCroconut;
@@ -103,7 +103,7 @@ L_QuestAccepted:
next;
menu
- rif(countitemcolor("PiouLegs") > 1 && countitemcolor("HalfCroconut") > 0 && countitemcolor("Aquada") > 0 && countitemcolor("SeaDrops") > 0, l("All your... Fresh ingredients are ready to be cooked.")), L_GotAll,
+ rif(countitemcolor(505) > 1 && countitemcolor(512) > 0 && countitemcolor(509) > 0 && countitemcolor(508) > 0, l("All your... Fresh ingredients are ready to be cooked.")), L_GotAll,
l("What are your needs?"), L_Need,
l("Where can I find a half croconut?"), L_OpenCroconut,
l("Not yet. I will be back soon."), L_Quit;
@@ -111,7 +111,7 @@ L_QuestAccepted:
L_OpenCroconut:
mes "";
mesn;
- mesq lg("Take a @@ and try opening it using something like a sharp knife! I doubt you'll succeed though, you're being such a weak girl in all.", "Take a @@ and try opening it using something like a sharp knife! I doubt you'll succeed though, you're being such a weak boy in all.", getitemlink("Croconut"), "Take a @@ and try opening it using something like a sharp knife! I doubt you'll succeed though, you're being such a weak boy in all.", getitemlink("Croconut"));
+ mesq lg("Take a @@ and try opening it using something like a sharp knife! I doubt you'll succeed though, you're being such a weak girl in all.", "Take a @@ and try opening it using something like a sharp knife! I doubt you'll succeed though, you're being such a weak boy in all.", getitemlink(513), "Take a @@ and try opening it using something like a sharp knife! I doubt you'll succeed though, you're being such a weak boy in all.", getitemlink(513));
next;
mesq l("Now move!");
@@ -122,10 +122,10 @@ L_GotAll:
inventoryplace 717, 1;
- delitem "PiouLegs", 2;
- delitem "HalfCroconut", 1;
- delitem "Aquada", 1;
- delitem "SeaDrops", 1;
+ delitem 505, 2;
+ delitem 512, 1;
+ delitem 509, 1;
+ delitem 508, 1;
mesn;
mesq l("Let me see... Crispy legs, disgusting liquids... Let's start!");
@@ -135,7 +135,7 @@ L_GotAll:
mesq l("Done. Here, take it! Now, here is the plan. Go talk to her and offer our beautiful lady a bite of her arrogance!");
setq ShipQuests_ChefGado, 2;
- getitem "PoisonedDish", 1;
+ getitem 717, 1;
close;
@@ -144,9 +144,9 @@ L_Need:
mesn;
mesq l("Shhht, don't say it that loud...");
next;
- mesq l("I only need 2 @@, 2 @@, 1 @@ and...", getitemlink("PiouLegs"), getitemlink("HalfCroconut"), getitemlink("Aquada"));
+ mesq l("I only need 2 @@, 2 @@, 1 @@ and...", getitemlink(505), getitemlink(512), getitemlink(509));
next;
- mesq l("... And 1 @@.", getitemlink("SeaDrops"));
+ mesq l("... And 1 @@.", getitemlink(508));
close;
@@ -164,7 +164,7 @@ L_PoisonJulia:
Zeny = Zeny + 200;
message strcharinfo(0), l("You receive @@ E!", 200);
inventoryplace 502, 2;
- getitem "Bread", 1;
+ getitem 502, 1;
getexp 15, 0;
close;
@@ -189,7 +189,7 @@ L_Aborting:
next;
mesq lg("Give me back this dish, you dirty liar!");
- if (countitemcolor("PoisonedDish") > 0) delitem "PoisonedDish", 1;
+ if (countitemcolor(717) > 0) delitem 717, 1;
next;
mesq l("You're like the rest of this filthy crew, I can't trust you!");