Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutorial] Change window title from WarZ to your server name

Status
Not open for further replies.
Newbie Spellweaver
Joined
May 2, 2013
Messages
96
Reaction score
141
I was asked how to do this so..

in WarZ.sln

in Main.cpp

find
Code:
#ifdef FINAL_BUILD
const char * g_szApplicationName = "WarZ";
#else
const char * g_szApplicationName = "Eclipse Studio";
#endif

Change to your server name like so
Code:
#ifdef FINAL_BUILD
const char * g_szApplicationName = "FartZ";
#else
const char * g_szApplicationName = "Eclipse Studio";
#endif

Enjoy the modified title bar
T2admJx - [Tutorial] Change window title from WarZ to your server name - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
May 2, 2013
Messages
96
Reaction score
141
and... version ?
If you look right below that, there it magically is.

Code:
int32_t    g_nProjectVersionMajor = 1;
int32_t    g_nProjectVersionMinor = 0;
= v1.0
Major version is the number before the first dot, minor is the second one.
 
Last edited:
Status
Not open for further replies.
Back
Top