
Results 1 to 6 of 6
Threaded View
-
29-07-10, 02:12 PM #1
How to Change the ArcEmu Message at Startup
How to Change the Startup Message
It's in your src directory in arcemu-world. You have to edit CharacterHandler.cpp. I say to the leave the current message, but to add a line of text about your server as well.
Code:// Revision _player->BroadcastMessage("Revision: %s%u, Welcome to QualityWoW!", MSG_COLOR_CYAN, BUILD_REVISION); // Bugs _player->BroadcastMessage("Bugs: Please Send all bugs/problems to the Staff of QualityWoW!", MSG_COLOR_***HOTPINK); // Recruiting message _player->BroadcastMessage(RECRUITING); // Shows Online players, and connection peak _player->BroadcastMessage("Online Players: %s%u |rPeak: %s%u|r Accepted Connections: %s%u", MSG_COLOR_***GREEN, sWorld.GetSessionCount(), MSG_COLOR_***BLUE, sWorld.PeakSessionCount, MSG_COLOR_***BLUE, sWorld.mAcceptedConnections);