First off, I would like to say I love the new forums

and minerCPP is awesome. Now to what I would like to have some help with. My C++ knowledge is very limited and I would like to know how to change the rank colors. The red for owner is too hard to read.
Thank you,
ziek
Heya ziek1526. Sadly, you have to manually edit the color codes in the source code. The good news is its all in one spot.
Open up
Server.cpp and go to
line 1749. This is the function that returns the color codes based on the user level. If you want to change the color for the owner, edit:
Code:
if(userlevel == 255)
return '4';
Thank you so much! and I'll make sure to break the software so I can find you some bugs

Heh, also you might want to change /help entry for owner to whatever new color you set.
Also change the levelToClass() function, so they receive the proper message when you change their userlevel.
(02-28-2010 05:43 AM)Unison Wrote: [ -> ]Also change the levelToClass() function, so they receive the proper message when you change their userlevel.
How? What to put?
The colors are listed in 3 places for each rank. the levelToClass() function, the help messages, and getColorCode().
If you change the colors you will have to change them in all three places.
I can't understand

.
I have changed the rank names in all instances i could find yet it makes no effect, and the colors, and helpranks i cant even find the user levels and such, is it all in the server file?