summaryrefslogtreecommitdiff
path: root/npc/functions/hello.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-05-30 19:53:21 -0300
committerJesusaves <cpntb1@ymail.com>2018-05-30 19:53:21 -0300
commit359aa55cf8dc0e1484e0153b46e0f6beccf5d15c (patch)
treeb2f49ce430afdca113eb181c3991a1e347344311 /npc/functions/hello.txt
parentb732d581cebcc97f5a831cf3775525942acc7020 (diff)
downloadserverdata-359aa55cf8dc0e1484e0153b46e0f6beccf5d15c.tar.gz
serverdata-359aa55cf8dc0e1484e0153b46e0f6beccf5d15c.tar.bz2
serverdata-359aa55cf8dc0e1484e0153b46e0f6beccf5d15c.tar.xz
serverdata-359aa55cf8dc0e1484e0153b46e0f6beccf5d15c.zip
Delete various unused functions, and unify random talk in a single script file.
Diffstat (limited to 'npc/functions/hello.txt')
-rw-r--r--npc/functions/hello.txt23
1 files changed, 0 insertions, 23 deletions
diff --git a/npc/functions/hello.txt b/npc/functions/hello.txt
deleted file mode 100644
index 9399b3b58..000000000
--- a/npc/functions/hello.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-// Evol functions.
-// Author:
-// Reid
-// Description:
-// Tell a random greeting sentence.
-
-function script hello {
-
- switch (rand(3))
- {
- case 0:
- npctalkonce(l("Heya!"));
- break;
- case 1:
- npctalkonce(l("Hi."));
- break;
- case 2:
- npctalkonce(l("Nice day to you."));
- break;
- }
-
- return;
-}