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/script_commands.txt | |
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/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 581ec182c..e209b0e56 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -3229,6 +3229,40 @@ Notice that NPC objects disabled with disablenpc() will still be located. --------------------------------------- +*getunits(<type>, <variable>, <limit>, "<map>"{, <x1>, <y1>, <x2>, <y2>}) + +This function searches a whole map or area for units and adds their GID to +the provided <variable> array. It filters units by <type> and stops searching +after <limit> units have been found. Set <limit> to false (0) if you wish to +disable the limit altogether. + +Type is the type of unit to search for: + + BL_PC - Character object + BL_MOB - Monster object + BL_PET - Pet object + BL_HOM - Homunculus object + BL_MER - Mercenary object + BL_IEM - Item object (item drops) + BL_SKILL - Skill object (skill fx & sfx) + BL_NPC - NPC object + BL_CHAT - Chat object + BL_ELEM - Elemental object + BL_CHAR - Shorthand for (BL_PC|BL_MOB|BL_HOM|BL_MER|BL_ELEM) + BL_ALL - Any kind of object + +** Do NOT use UNITTYPE_ constants here, they have different values. + +Example: + + .@count = getunits((BL_PC | BL_NPC), .@units, false, "prontera"); + +The above example would search the map "prontera" for all PC and NPC units and +add them to the .@units array, while setting .@count to the amount of units +added to the array (useful in for() loops). + +--------------------------------------- + *getgmlevel() This function will return the (GM) level of player group the account to |