diff options
author | Haru <haru@dotalux.com> | 2017-04-09 00:53:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-09 00:53:14 +0200 |
commit | 2e23268d5c3c73baa91dbdb3d059c8c4d1cdab58 (patch) | |
tree | 17ab808ae60887f7eb299b0151c65c72b591871c /doc/constants.md | |
parent | ff56322529c290be85a44fda7914a70b31694132 (diff) | |
parent | 7580593b6c5d8bcb63befb0027609255ab255ef6 (diff) | |
download | hercules-2e23268d5c3c73baa91dbdb3d059c8c4d1cdab58.tar.gz hercules-2e23268d5c3c73baa91dbdb3d059c8c4d1cdab58.tar.bz2 hercules-2e23268d5c3c73baa91dbdb3d059c8c4d1cdab58.tar.xz hercules-2e23268d5c3c73baa91dbdb3d059c8c4d1cdab58.zip |
Merge pull request #1657 from mekolat/getunits2
add getunits() buildin
Diffstat (limited to 'doc/constants.md')
-rw-r--r-- | doc/constants.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/constants.md b/doc/constants.md index 22d285412..e6bf656d8 100644 --- a/doc/constants.md +++ b/doc/constants.md @@ -3758,6 +3758,21 @@ - `BG_AREA_WOS`: 30 - `BG_QUEUE`: 31 +### block_list types (units) + +- `BL_PC`: 1 +- `BL_MOB`: 2 +- `BL_PET`: 4 +- `BL_HOM`: 8 +- `BL_MER`: 16 +- `BL_ITEM`: 32 +- `BL_SKILL`: 64 +- `BL_NPC`: 128 +- `BL_CHAT`: 256 +- `BL_ELEM`: 512 +- `BL_CHAR`: 539 (shorthand for `BL_PC|BL_MOB|BL_HOM|BL_MER|BL_ELEM`) +- `BL_ALL`: 4095 + ### LOOK_ constants, use in setlook/changelook script commands - `LOOK_BASE`: 0 |