diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-30 10:30:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-30 10:34:04 -0300 |
commit | fce3b0239ea177694b1b64d8395ffa6e1eaaa5f1 (patch) | |
tree | 86ec6f0164d5ae4cc4b36e3ee181c87307a92490 /npc/functions/harbours.txt | |
parent | 5ae273e31f3537b6f6c013dedd1c00a7ae22ae7a (diff) | |
download | serverdata-fce3b0239ea177694b1b64d8395ffa6e1eaaa5f1.tar.gz serverdata-fce3b0239ea177694b1b64d8395ffa6e1eaaa5f1.tar.bz2 serverdata-fce3b0239ea177694b1b64d8395ffa6e1eaaa5f1.tar.xz serverdata-fce3b0239ea177694b1b64d8395ffa6e1eaaa5f1.zip |
Delete unused file, move season()
Diffstat (limited to 'npc/functions/harbours.txt')
-rw-r--r-- | npc/functions/harbours.txt | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/npc/functions/harbours.txt b/npc/functions/harbours.txt deleted file mode 100644 index 63d58076b..000000000 --- a/npc/functions/harbours.txt +++ /dev/null @@ -1,39 +0,0 @@ -// Evol scripts. -// Author: -// Reid -// Description: -// Harbour utility functions -// Animation: -// Length: 1680 -// Values: -// 2 Hook moving down. -// 4 Hook moving up. -// 6 Hook down. -// 8 Hook up. - -function script harbourClic { - if (.dir == 0) - { - .dir = 2; - - initnpctimer; - startnpctimer; - close; - } - - if (.dir == 6) - { - .dir = 4; - - initnpctimer; - startnpctimer; - close; - } -} - -function script harbourTimer { - stopnpctimer; - if (.dir == 2) .dir = 6; - if (.dir == 4) .dir = 0; - end; -} |