summaryrefslogtreecommitdiff
path: root/npc/functions/hammocks.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/hammocks.txt')
-rw-r--r--npc/functions/hammocks.txt50
1 files changed, 0 insertions, 50 deletions
diff --git a/npc/functions/hammocks.txt b/npc/functions/hammocks.txt
deleted file mode 100644
index 8e1c2fec..00000000
--- a/npc/functions/hammocks.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-// Evol functions.
-// Authors:
-// 4144
-// Reid
-// Description:
-// Hammocks utility functions
-// Variables:
-// none
-
-function script hamTouchLeft {
- if (getareausers() <= 1)
- {
- .dir = 0;
- stopnpctimer;
- initnpctimer;
- }
- close;
-}
-
-function script hamUnTouch {
- if (getareausers() == 0)
- {
- .dir = 2;
- initnpctimer;
- startnpctimer;
- }
- close;
-}
-
-function script hamTimerLeft {
- stopnpctimer;
- if (.dir == 2) .dir = 0;
- end;
-}
-
-function script hamTouchRight {
- if (getareausers() <= 1)
- {
- .dir = 0;
- stopnpctimer;
- initnpctimer;
- }
- close;
-}
-
-function script hamTimerRight {
- stopnpctimer;
- if (.dir == 2) .dir = 0;
- end;
-}