summaryrefslogtreecommitdiff
path: root/npc/functions/moubootalk.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-02-26 00:51:24 +0100
committerReid <reidyaro@gmail.com>2016-02-26 00:51:24 +0100
commitd60eea65b37bc0c5c2ed3f428a4285ef6e7b4fa8 (patch)
tree24f9bd5030c45d30d2867e2c7c38668ad5c32808 /npc/functions/moubootalk.txt
parentb6565a398c76332a8734d9027ed98158fddb42f1 (diff)
downloadserverdata-d60eea65b37bc0c5c2ed3f428a4285ef6e7b4fa8.tar.gz
serverdata-d60eea65b37bc0c5c2ed3f428a4285ef6e7b4fa8.tar.bz2
serverdata-d60eea65b37bc0c5c2ed3f428a4285ef6e7b4fa8.tar.xz
serverdata-d60eea65b37bc0c5c2ed3f428a4285ef6e7b4fa8.zip
Add improved mouboos (they now walk!).
Diffstat (limited to 'npc/functions/moubootalk.txt')
-rw-r--r--npc/functions/moubootalk.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/npc/functions/moubootalk.txt b/npc/functions/moubootalk.txt
deleted file mode 100644
index 0d6fb539..00000000
--- a/npc/functions/moubootalk.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-// Evol functions.
-// Author:
-// Reid
-// Description:
-// Tell a random sentence.
-// Variables:
-// .@rand = Random number between the number of sentence choice.
-
-function script moubootalk {
- switch (rand (4))
- {
- case 0:
- npctalk3 l("Moooooo!");
- break;
- case 1:
- npctalk3 l("Moo!");
- break;
- case 2:
- npctalk3 l("Moooooooooooo!");
- break;
- case 3:
- npctalk3 l("Moooo!");
- break;
- }
- return;
-}