increasing name characters

change it here /src/common/mmo.h

search for this line 

Code:
//For character names, title names, guilds, maps, etc.//Includes null-terminator as it is the length of the array.#define NAME_LENGTH (23 + 1)
 
change it here /src/common/mmo.h

search for this line 

//For character names, title names, guilds, maps, etc.//Includes null-terminator as it is the length of the array.#define NAME_LENGTH (23 + 1)
i can just add 1 ? or i can add more?

 
simple modify number 23 change it to 35 or 40

then recompile your server and your done

 
Last edited by a moderator:
You can increase the length of character and npc names just changing macros in Hercules' src, but, if I'm not mistaken, the client won't show any extra characters as they are hard coded.

 
Back
Top