summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2020-05-03 22:52:02 +0200
committerGitHub <noreply@github.com>2020-05-03 22:52:02 +0200
commit24f518fa590066e6a303cfacccbe7c748b6dbdae (patch)
tree475b5ca6cfeb08a7d3ec55669b01787794eae22b /src/map/script.c
parent090d276f4b329b37afdb1a370fbad15d6903f22a (diff)
parente8d6a43de1ad1efe19f7091ce62b0ea52aaf3617 (diff)
downloadhercules-24f518fa590066e6a303cfacccbe7c748b6dbdae.tar.gz
hercules-24f518fa590066e6a303cfacccbe7c748b6dbdae.tar.bz2
hercules-24f518fa590066e6a303cfacccbe7c748b6dbdae.tar.xz
hercules-24f518fa590066e6a303cfacccbe7c748b6dbdae.zip
Merge pull request #2691 from Kenpachi2k13/mob_skill_db
Extend and clean up monster skill DB code
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c
index c08f5e829..5cdd16367 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -27847,6 +27847,11 @@ static void script_hardcoded_constants(void)
script->set_constant("MST_AROUND4", MST_AROUND4, false, false);
script->set_constant("MST_AROUND", MST_AROUND , false, false);
+ script->constdb_comment("Monster group constants");
+ script->set_constant("ALL_MOBS_NONBOSS", ALL_MOBS_NONBOSS, false, false);
+ script->set_constant("ALL_MOBS_BOSS", ALL_MOBS_BOSS, false, false);
+ script->set_constant("ALL_MOBS", ALL_MOBS, false, false);
+
script->constdb_comment("pc block constants, use with *setpcblock* and *checkpcblock*");
script->set_constant("PCBLOCK_NONE", PCBLOCK_NONE, false, false);
script->set_constant("PCBLOCK_MOVE", PCBLOCK_MOVE, false, false);