diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-07 15:14:35 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-07 15:14:35 +0000 |
commit | a6cd6538e4271ea08dc86803e8b7e8c8f235960b (patch) | |
tree | 883d4c1ae282fb67e1720f81c20f564499298ff4 /src/map/mob.h | |
parent | be2871f1e62bbb88c7fd413456d1b9c39d1f2fd9 (diff) | |
download | hercules-a6cd6538e4271ea08dc86803e8b7e8c8f235960b.tar.gz hercules-a6cd6538e4271ea08dc86803e8b7e8c8f235960b.tar.bz2 hercules-a6cd6538e4271ea08dc86803e8b7e8c8f235960b.tar.xz hercules-a6cd6538e4271ea08dc86803e8b7e8c8f235960b.zip |
* Readded @disablenpc
* Fixed @reloadscript not removing old NPC's and monsters first
* Some changes in mob and NPC unloading
* Changed the original @disablenpc to @hidenpc
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1429 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.h')
-rw-r--r-- | src/map/mob.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/mob.h b/src/map/mob.h index e5e95879e..6613c5b6b 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -105,6 +105,7 @@ int mob_target(struct mob_data *md,struct block_list *bl,int dist); int mob_stop_walking(struct mob_data *md,int type); int mob_stopattack(struct mob_data *); int mob_spawn(int); +int mob_setdelayspawn(int); int mob_damage(struct block_list *,struct mob_data*,int,int); int mob_changestate(struct mob_data *md,int state,int type); int mob_heal(struct mob_data*,int); @@ -123,8 +124,9 @@ short mob_get_clothes_color(int); //player mob dye [Valaris] int mob_get_equip(int); // mob equip [Valaris] int do_init_mob(void); +void mob_unload(struct mob_data *md); +int mob_remove_map(struct mob_data *md, int type); int mob_delete(struct mob_data *md); -int mob_catch_delete(struct mob_data *md,int type); int mob_timer_delete(int tid, unsigned int tick, int id, int data); int mob_deleteslave(struct mob_data *md); |