summaryrefslogtreecommitdiff
path: root/npc/functions/masks.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-05-30 18:13:36 -0300
committerJesusaves <cpntb1@ymail.com>2018-05-30 18:13:36 -0300
commit7700279c0d332a974245c0e85b74840c9e3abb1b (patch)
tree4a40368021b70e751a817f93625470dd035a575e /npc/functions/masks.txt
parenta5cc0cb7a3d5ce851380114e9b2e52c5e58cbee8 (diff)
downloadserverdata-7700279c0d332a974245c0e85b74840c9e3abb1b.tar.gz
serverdata-7700279c0d332a974245c0e85b74840c9e3abb1b.tar.bz2
serverdata-7700279c0d332a974245c0e85b74840c9e3abb1b.tar.xz
serverdata-7700279c0d332a974245c0e85b74840c9e3abb1b.zip
Make maps, and delete useless file
Diffstat (limited to 'npc/functions/masks.txt')
-rw-r--r--npc/functions/masks.txt68
1 files changed, 0 insertions, 68 deletions
diff --git a/npc/functions/masks.txt b/npc/functions/masks.txt
deleted file mode 100644
index 98e8bdf87..000000000
--- a/npc/functions/masks.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-// Evol functions.
-// Author:
-// Reid
-// Description:
-// Triggers functions to add and remove masks.
-// Variables:
-// none
-
-// Artis Aemil's Legion
-
-function script artisALRemTopMask {
- if ((getareausers("001-2-33", 23, 27, 45, 31) >= 1) ||
- (getareausers("001-2-33", 23, 32, 26, 38) >= 1) ||
- (getareausers("001-2-33", 42, 32, 45, 38) >= 1))
- {
- removemapmask "001-2-33", 4;
- }
- return 0;
-}
-
-function script artisALAddTopMask {
- if ((getareausers("001-2-33", 23, 27, 45, 31) == 0) &&
- (getareausers("001-2-33", 23, 32, 26, 38) == 0) &&
- (getareausers("001-2-33", 42, 32, 45, 38) == 0))
- {
- addmapmask "001-2-33", 4;
- }
- return 0;
-}
-
-function script artisALRemBotMask {
- if (getareausers("001-2-33", 23, 32, 45, 46) >= 1)
- {
- removemapmask "001-2-33", 8;
- }
- return 0;
-}
-
-function script artisALAddBotMask {
- if (getareausers("001-2-33", 23, 32, 45, 46) == 0)
- {
- addmapmask "001-2-33", 8;
- }
- return 0;
-}
-
-function script artisALUpdateMask {
- if (getareausers("001-2-33", 23, 32, 45, 46) >= 1)
- {
- removemapmask "001-2-33", 8;
- }
- else
- {
- addmapmask "001-2-33", 8;
- }
- if ((getareausers("001-2-33", 23, 27, 45, 31) >= 1) ||
- (getareausers("001-2-33", 23, 32, 26, 38) >= 1) ||
- (getareausers("001-2-33", 42, 32, 45, 38) >= 1))
- {
- removemapmask "001-2-33", 4;
- }
- else
- {
- addmapmask "001-2-33", 4;
- }
-
- return 0;
-}