summaryrefslogtreecommitdiff
path: root/src/emap/init.c
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-10 17:52:46 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-10 17:52:46 -0300
commitc2db4a2100de4c92ecd1201df505bc42f5b3b15a (patch)
tree4415c08faaf3b9ee4d6071bdfc250b82e4258f20 /src/emap/init.c
parentb8774f1d734300fe1746d254cdf5d672fabf653b (diff)
downloadevol-hercules-c2db4a2100de4c92ecd1201df505bc42f5b3b15a.tar.gz
evol-hercules-c2db4a2100de4c92ecd1201df505bc42f5b3b15a.tar.bz2
evol-hercules-c2db4a2100de4c92ecd1201df505bc42f5b3b15a.tar.xz
evol-hercules-c2db4a2100de4c92ecd1201df505bc42f5b3b15a.zip
Include the functions which scripts will need: aggravate, calcdmg and harm
Diffstat (limited to 'src/emap/init.c')
-rw-r--r--src/emap/init.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emap/init.c b/src/emap/init.c
index 158b82b..8cad8aa 100644
--- a/src/emap/init.c
+++ b/src/emap/init.c
@@ -222,6 +222,12 @@ HPExport void plugin_init (void)
addScriptCommand("getnpcsubtype", "?", getNpcSubtype);
addScriptCommand("kick", "v?", kick);
addScriptCommand("getskillname", "i", getskillname);
+
+ // From Moubootaur Legends
+ addScriptCommand("aggravate", "i", aggravate);
+ addScriptCommand("calcdmg", "iii", calcdmg);
+ addScriptCommand("harm", "ii??", harm);
+
// Overrides
addScriptCommand("debugmes","v*",debugmes);