summaryrefslogtreecommitdiff
path: root/npc/018-1/george.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-14 16:18:09 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-14 16:18:09 -0300
commite728ce273798c379d6c2a1252078b9bb67d1b17e (patch)
tree5d735ab44c9583157fd0ed8e4e54fc040798537e /npc/018-1/george.txt
parent8ecf36cdf0fa1224fd36c68f4e4caa82ac857b8b (diff)
downloadserverdata-e728ce273798c379d6c2a1252078b9bb67d1b17e.tar.gz
serverdata-e728ce273798c379d6c2a1252078b9bb67d1b17e.tar.bz2
serverdata-e728ce273798c379d6c2a1252078b9bb67d1b17e.tar.xz
serverdata-e728ce273798c379d6c2a1252078b9bb67d1b17e.zip
Finish and Release (UNTESTED) George's Quest (LoF).
Diffstat (limited to 'npc/018-1/george.txt')
-rw-r--r--npc/018-1/george.txt31
1 files changed, 19 insertions, 12 deletions
diff --git a/npc/018-1/george.txt b/npc/018-1/george.txt
index 329ae4e62..c899009bd 100644
--- a/npc/018-1/george.txt
+++ b/npc/018-1/george.txt
@@ -46,8 +46,8 @@ L_Main:
l("What is this island?"), L_Explain,
rif(.@q == 1, l("Actually, I heard from Roger that you may need some help.")), L_RequestOne,
rif(.@q == 2, l("About the items you asked me to collect...")), L_ProgressOne,
- rif(.@q == 3 && 0, l("Do you need any more help?")), L_RequestTwo,
- rif(.@q == 4 && 0, l("About the items you asked me to collect...")), L_ProgressTwo,
+ rif(.@q == 3, l("Do you need any more help?")), L_RequestTwo,
+ rif(.@q == 4, l("About the items you asked me to collect...")), L_ProgressTwo,
rif(.@showShovel, l("Could you sell me a treasure map and a shovel?")), L_Shop,
l("Nothing I guess"), L_Close;
@@ -79,7 +79,9 @@ L_RequestTwo:
if (BaseLevel < 60)
goto L_Weak;
mesn l("George the Pirate");
- mes "\"Arrr matey! My captain asked me to have you get him some items. Please bring us 50 zombie nachos and 50 lady fingers, my captain likes to snack on those during our long voyages. Oh, and something to read too!\"";
+ mesq l("Arrr matey! My captain asked me to have you get him some items. Please bring us %d %s and %d %s, my captain likes to snack on those during our long voyages. Oh, and something to read too!",
+ 50, getitemlink(Potatoz),
+ 40, getitemlink(Dragonfruit));
setq LoFQuest_George, 4;
close;
@@ -115,9 +117,9 @@ L_ProgressOne:
// Progress Report 2
L_ProgressTwo:
- if (countitem(WarlordPlate) < 100 ||
- countitem(WarlordPlate) < 50 ||
- countitem(WarlordPlate) < 1)
+ if (countitem(Potatoz) < 50 ||
+ countitem(Dragonfruit) < 40 ||
+ countitem(Almanac) < 1)
goto L_NotEnough;
mesn l("George the Pirate");
@@ -130,16 +132,19 @@ L_ProgressTwo:
goto L_NotEnough;
mesn l("George the Pirate");
- mes "\"Arrr! Good job matey! You brought us everything we asked for, even the Maritime Almanac Scroll!\"";
+ mesq l("Arrr! Good job matey! You brought us everything we asked for, even the Maritime Almanac Scroll!");
inventoryplace CorsairHat, 1;
- delitem WarlordPlate, 50;
- delitem WarlordPlate, 50;
- delitem WarlordPlate, 1;
- mes "\"My captain wanted me to give this to you as a special reward for your efforts.\"";
+ delitem Potatoz, 50;
+ delitem Dragonfruit, 40;
+ delitem Almanac, 1;
+ mesq l("My captain wanted me to give this to you as a special reward for your efforts.");
getitem CorsairHat, 1;
getexp 15000, 0;
setq LoFQuest_George, 5;
+ next;
+ mesn;
+ mesq l("You can call yourself a pirate now! HAR HAR HAR!!");
goto L_Close;
// Fallbacks
@@ -162,7 +167,9 @@ L_NotEnoughOne:
goto L_Close;
L_NotEnoughTwo:
- mesq l("Remember, I need 100 @@, 50 @@, and something interesting to read.", getitemlink(WarlordPlate), getitemlink(CorsairHat));
+ mesq l("Remember, I need %d %s, %d %s, and something interesting to read.",
+ 50, getitemlink(Potatoz),
+ 40, getitemlink(Dragonfruit));
goto L_Close;
L_Shop: