summaryrefslogtreecommitdiff
path: root/npc/functions/moubootalk.txt
diff options
context:
space:
mode:
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;
-}