summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-30 08:52:26 +0000
committerLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-30 08:52:26 +0000
commit78c658cde4dbc59da851434e7acd4104344bf01d (patch)
treeca5643527037dacbede49551f8c706b2dd79c598 /src/map/npc.c
parentdcb0f634feedf4b37176f0199969a99b660b414f (diff)
downloadhercules-78c658cde4dbc59da851434e7acd4104344bf01d.tar.gz
hercules-78c658cde4dbc59da851434e7acd4104344bf01d.tar.bz2
hercules-78c658cde4dbc59da851434e7acd4104344bf01d.tar.xz
hercules-78c658cde4dbc59da851434e7acd4104344bf01d.zip
* Added execution of OnInterIfInit, OnCharIfInit and OnInterIfInitOnce on script reload.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5806 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index b890a4ce6..e39d9abb6 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -2611,6 +2611,12 @@ int npc_reload (void)
//Execute the OnInit event for freshly loaded npcs. [Skotlex]
ShowStatus("Event '"CL_WHITE"OnInit"CL_RESET"' executed with '"
CL_WHITE"%d"CL_RESET"' NPCs.\n",npc_event_doall("OnInit"));
+ // Execute rest of the startup events if connected to char-server. [Lance]
+ if(!CheckForCharServer()){
+ ShowStatus("Event '"CL_WHITE"OnCharIfInit"CL_RESET"' executed with '"CL_WHITE"%d"CL_RESET"' NPCs.\n", npc_event_doall("OnCharIfInit"));
+ ShowStatus("Event '"CL_WHITE"OnInterIfInit"CL_RESET"' executed with '"CL_WHITE"%d"CL_RESET"' NPCs.\n", npc_event_doall("OnInterIfInit"));
+ ShowStatus("Event '"CL_WHITE"OnInterIfInitOnce"CL_RESET"' executed with '"CL_WHITE"%d"CL_RESET"' NPCs.\n", npc_event_doall("OnInterIfInitOnce"));
+ }
return 0;
}