diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-31 05:37:40 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-31 05:37:40 +0000 |
commit | 51680d33aa582128f94a6091fba2e203ebba8faa (patch) | |
tree | e4e3ac63e0cf1b77468f9d593fcc8cc51638cb17 /src/map/npc_chat.c | |
parent | b0931e719ce6db2f887e752b1cf55424857a9a1f (diff) | |
download | hercules-51680d33aa582128f94a6091fba2e203ebba8faa.tar.gz hercules-51680d33aa582128f94a6091fba2e203ebba8faa.tar.bz2 hercules-51680d33aa582128f94a6091fba2e203ebba8faa.tar.xz hercules-51680d33aa582128f94a6091fba2e203ebba8faa.zip |
Removed the mob controller system, now a customization (see topic:194375).
The system consists of
* script command to spawn a controlled mob
* script commands to attach npcs to such mobs and manipulate their AI
* a page of documentation for these commands
* callbacks at various source code locations that invoke the attached npcs
* two npc examples
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13021 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc_chat.c')
-rw-r--r-- | src/map/npc_chat.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/map/npc_chat.c b/src/map/npc_chat.c index d7edf69f0..4278c33f5 100644 --- a/src/map/npc_chat.c +++ b/src/map/npc_chat.c @@ -403,15 +403,6 @@ int npc_chat_sub(struct block_list* bl, va_list ap) return 0; } -int mob_chat_sub(struct block_list* bl, va_list ap) -{ - struct mob_data *md = (struct mob_data *)bl; - if(md->nd) - npc_chat_sub(&md->nd->bl, ap); - - return 0; -} - // Various script builtins used to support these functions int buildin_defpattern(struct script_state* st) |