summaryrefslogtreecommitdiff
path: root/npc/000-2-3/elmo.txt
diff options
context:
space:
mode:
authorSaulc <lucashelaine14@gmail.com>2018-02-18 02:08:36 +0100
committerSaulc <lucashelaine14@gmail.com>2018-02-18 02:08:36 +0100
commit26faa9a208a15ea858f5069a4c0d92e8a0709bdb (patch)
tree7ef0a6a5e39cb63f72ea9a6742f5a4cb320b41b4 /npc/000-2-3/elmo.txt
parentb9416a07a0f085c64888ac02fecd47d43feee218 (diff)
downloadserverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.gz
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.bz2
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.xz
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.zip
delete evol maps
Diffstat (limited to 'npc/000-2-3/elmo.txt')
-rw-r--r--npc/000-2-3/elmo.txt67
1 files changed, 0 insertions, 67 deletions
diff --git a/npc/000-2-3/elmo.txt b/npc/000-2-3/elmo.txt
deleted file mode 100644
index f2209824e..000000000
--- a/npc/000-2-3/elmo.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-// Evol scripts.
-// Authors:
-// Qwerty Dragon
-// Reid
-// Description:
-// Elmo's second dialog.
-
-000-2-3,27,27,0 script Elmo#000-2-3 NPC_ELMO,{
- function got_money {
- speech S_LAST_NEXT,
- lg("Be patient a little while longer, in the next few days we will arrive at the port of Artis..."),
- l("If you feel bored or like running around in circles, you may want to talk with the other sailors around here to get some tasks to do."),
- l("From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island."),
- l("Other than that, I don't know much about what else is going on, so directly asking the Cap'tain about it could be a good idea.");
-
- goodbye;
- }
-
- if (getq(General_Narrator) > 0)
- {
- sailortalk;
- }
-
- if (getq(ShipQuests_ArpanMoney) == 2)
- {
- got_money;
- }
-
- speech S_LAST_NEXT,
- l("Hey you, sorry for leaving your room so quickly. I needed to speak with the captain about the food reserves. You know, now that we have a new mouth to feed, we need to check what we have."),
- l("So, how is it going? Did you meet any other crew members yet?");
-
- switch (select(l("Yes, Arpan gave me these clothes."), l("Not yet.")))
- {
- case 1:
- speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Oh good! Did he give you your money back as well?");
-
- switch (select(l("Yes he did."), l("He told me nothing about that.")))
- {
- case 1:
- speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Ok, be patient a little while longer, in the next few days we will arrive at the port of Artis...");
- break;
- case 2:
- speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Hehe, sometimes he gets his head in the clouds, You should go ask him about that.");
- setq ShipQuests_ArpanMoney, 1;
- break;
- }
-
- break;
- case 2:
- speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You should go see them."),
- l("You still got a few days before we arrive at the port, maybe you can learn something from them?");
-
- break;
- }
-
- goodbye;
-
-OnInit:
- .sex = G_MALE;
- .distance = 5;
- end;
-}