summaryrefslogtreecommitdiff
path: root/npc/functions/mouboofunc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/mouboofunc.txt')
-rw-r--r--npc/functions/mouboofunc.txt16
1 files changed, 4 insertions, 12 deletions
diff --git a/npc/functions/mouboofunc.txt b/npc/functions/mouboofunc.txt
index f01e4847..c0f7d96b 100644
--- a/npc/functions/mouboofunc.txt
+++ b/npc/functions/mouboofunc.txt
@@ -8,16 +8,16 @@ function script moubootalk {
switch (rand (4))
{
case 0:
- npctalk3 l("Moooooo!");
+ npctalkonce(l("Moooooo!"));
break;
case 1:
- npctalk3 l("Moo!");
+ npctalkonce(l("Moo!"));
break;
case 2:
- npctalk3 l("Moooooooooooo!");
+ npctalkonce(l("Moooooooooooo!"));
break;
case 3:
- npctalk3 l("Moooo!");
+ npctalkonce(l("Moooo!"));
break;
}
return;
@@ -87,11 +87,3 @@ function script mouboograph {
initnpctimer;
end;
}
-
-function script mouboochecklock {
- if (Repeat_NPC_lock <= gettimetick (2))
- {
- Repeat_NPC_lock = gettimetick (2) + 1;
- moubootalk;
- }
-}