diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-03-29 14:52:49 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-04-08 10:50:12 -0400 |
commit | 7580593b6c5d8bcb63befb0027609255ab255ef6 (patch) | |
tree | 7e14baf559e4979b3762ce069785fb432bd924df /doc/constants.md | |
parent | bf7bdd16899e1fafd3717595679591fb51729a7f (diff) | |
download | hercules-7580593b6c5d8bcb63befb0027609255ab255ef6.tar.gz hercules-7580593b6c5d8bcb63befb0027609255ab255ef6.tar.bz2 hercules-7580593b6c5d8bcb63befb0027609255ab255ef6.tar.xz hercules-7580593b6c5d8bcb63befb0027609255ab255ef6.zip |
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 |