summaryrefslogtreecommitdiff
path: root/npc/functions/sailortalk.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
commitcf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch)
treef9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/functions/sailortalk.txt
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/functions/sailortalk.txt')
-rw-r--r--npc/functions/sailortalk.txt37
1 files changed, 0 insertions, 37 deletions
diff --git a/npc/functions/sailortalk.txt b/npc/functions/sailortalk.txt
deleted file mode 100644
index 73145768..00000000
--- a/npc/functions/sailortalk.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Evol functions.
-// Author:
-// Reid
-// Description:
-// Tell a random sentence.
-// Variables:
-// .@rand = Random number between the number of sentence choice.
-
-function script sailortalk {
-
- .@rand = rand(8);
- if (.@rand == 0) goodbye;
- if (.@rand == 1)
- {
- speech(
- l("These purple mushrooms are called @@s. There are plenty of 'em on this island!", getitemlink(Plushroom)),
- l("It's a kind of mushroom that tastes like a marshmallow and looks like a plush! @@, get it?", getitemlink(Plushroom)),
- l("These funny fungi are mushrooming all around this island. Just pick some @@s and have a try.", getitemlink(Plushroom)));
- close;
- }
- if (.@rand == 2) npctalkonce(l("Good to hear from you!"));
- if (.@rand == 3) npctalkonce(l("So finally someone has came to visit me?"));
- if (.@rand == 4)
- {
- speech(
- l("A sunny and hot day,"),
- l("a quiet place,"),
- l("a ground!"),
- l("What else do you need?"));
- close;
- }
- if (.@rand == 5) npctalkonce(l("A-hoy matey!"));
- if (.@rand == 6) npctalkonce(l("We are glad captain Nard has let you join the crew!"));
- if (.@rand == 7) npctalkonce(l("Howdy?"));
-
- end;
-}