diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-09 01:49:50 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-09 01:49:50 +0000 |
commit | e7beef1499ae660af01f163a16b9040bd60d8845 (patch) | |
tree | cefcd0a5eff2a2f041ab5e07f6f14cbc8549d567 /src/map/npc.h | |
parent | 6f96f2dea64de97bd5a16a146c8ce943b01563de (diff) | |
download | hercules-e7beef1499ae660af01f163a16b9040bd60d8845.tar.gz hercules-e7beef1499ae660af01f163a16b9040bd60d8845.tar.bz2 hercules-e7beef1499ae660af01f163a16b9040bd60d8845.tar.xz hercules-e7beef1499ae660af01f163a16b9040bd60d8845.zip |
- Added info on packet 0x86 (simple move packet). Not usable until a clear separation between entering sight/leaving sight/walking in sight is done.
- Propagating const char* from the script engine.
- ".gat" is appended to the map name before sending the changemapserver packet to the client.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9979 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.h')
-rw-r--r-- | src/map/npc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/npc.h b/src/map/npc.h index 86bce296c..0a1025040 100644 --- a/src/map/npc.h +++ b/src/map/npc.h @@ -38,7 +38,7 @@ int npc_event_dequeue(struct map_session_data *sd); int npc_event_timer(int tid,unsigned int tick,int id,int data); int npc_event(struct map_session_data *sd,const unsigned char *npcname,int); int npc_timer_event(const unsigned char *eventname); // Added by RoVeRT -int npc_command(struct map_session_data *sd,const unsigned char *npcname,char *command); +int npc_command(struct map_session_data* sd, const char* npcname, const char* command); int npc_touch_areanpc(struct map_session_data *,int,int,int); int npc_touch_areanpc2(struct block_list *bl); // [Skotlex] int npc_check_areanpc(int flag,int m,int x,int y,int range); @@ -52,7 +52,7 @@ int npc_selllist(struct map_session_data *,int,unsigned short *); int npc_parse_mob(char *w1,char *w2,char *w3,char *w4); int npc_parse_mob2 (struct spawn_data*, int index); // [Wizputer] int npc_parse_warp(char *w1,char *w2,char *w3,char *w4); -int npc_globalmessage(const char *name,char *mes); +int npc_globalmessage(const char *name,const char *mes); int npc_enable(const char *name,int flag); int npc_changename(const char *name, const char *newname, short look); // [Lance] |