I will show you how to change the message you see when you first log into the game
to "YourEmu". For example;
ArcEmu is recruiting developers: Join us on irc.emulationnetwork.com:6667 #arcemu
etc.
1. Open up the ArcEmu Source.
2. Go open up "StdAfx.h" and scroll down till you see
Code:
#define RECRUITING "Info: |cff00FF7FArcEmu is recruiting developers: Join us on irc.emulationnetwork.com:6667 #arcemu"
#define BUGTRACKER "http://arcemu.info/trac"
Change arcemu and the IRC, Links, etc to your server so for example you would change it to ..
Code:
#define RECRUITING "Info: |cff00FF7FPedregon's Awesomesauce Server is recruiting developers: Join us on irc.emulationnetwork.com:1337 #pedregon"
#define BUGTRACKER "http://pedregonuberemulator.com/trac"
3. Next go to "CharacterHandler.pp" and look for
Code:
#ifdef WIN32
_player->BroadcastMessage("Server: %sArcEmu %s - %s-Windows-%s", MSG_COLOR_WHITE, BUILD_TAG, CONFIG, ARCH);
#else
Which is pretty much at the bottom of the source, change ArcEmu to YourEmu, so for example it would be;
Code:
#ifdef WIN32
_player->BroadcastMessage("Server: %sPedregonisaSexyBeast %s - %s-Windows-%s", MSG_COLOR_WHITE, BUILD_TAG, CONFIG, ARCH);
#else
4. Now compile, Log in and See your changes! :]