diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-28 12:55:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-28 12:55:55 +0300 |
commit | b3bed3c6c764cae9706be429ea0222cad38e2e43 (patch) | |
tree | d8dbdd8595fd1c42f3e388385b0430b0a40fb8a1 /src/map/script.h | |
parent | 833e59fee3e6538863ef7277d7b679fb9f2fe750 (diff) | |
download | plugin-b3bed3c6c764cae9706be429ea0222cad38e2e43.tar.gz plugin-b3bed3c6c764cae9706be429ea0222cad38e2e43.tar.bz2 plugin-b3bed3c6c764cae9706be429ea0222cad38e2e43.tar.xz plugin-b3bed3c6c764cae9706be429ea0222cad38e2e43.zip |
add map mask and script functions for manipulate with it.
New script functions:
setmapmask - set new map mask.
addmapmask - add new map mask to current mask.
removemapmask - remove new mask from current mask.
getmapmask - return current map mask.
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/script.h b/src/map/script.h index 15efc00..3210cca 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -20,5 +20,9 @@ BUILDIN(setNpcDir); BUILDIN(rif); BUILDIN(countItemColor); BUILDIN(miscEffect); +BUILDIN(setMapMask); +BUILDIN(getMapMask); +BUILDIN(addMapMask); +BUILDIN(removeMapMask); #endif // EVOL_MAP_SCRIPT |