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!

Change Name [GM], [D], [MOD] etc

Status
Not open for further replies.
Newbie Spellweaver
Joined
Sep 19, 2011
Messages
39
Reaction score
6
You can find this file in HANDLE_CHARACTER_INFO.cs

Code:
if (User.Rank > 4) User.Nickname = "[GM]" + User.Nickname;
                        else if (User.Rank > 2) User.Nickname = "[MOD]" + User.Nickname;
                        else if (User.Rank > 1) User.Nickname = "[D]" + User.Nickname;
                        DB.runQuery("UPDATE users SET lasthwid='" + User.HWID + "' WHERE id='" + User.UserID + "'");
                        if (User.ClanID != -1)
                        {
                            User.ClanRank = int.Parse(UserData[15]);
                        }
 
Newbie Spellweaver
Joined
Mar 21, 2010
Messages
46
Reaction score
0
Do you know perhaps where i can find a commands list for the ranks?

Edit; never mind. Found it in the tutorial section.
 
Newbie Spellweaver
Joined
Sep 19, 2011
Messages
39
Reaction score
6
Do you know perhaps where i can find a commands list for the ranks?

Edit; never mind. Found it in the tutorial section.

Okay

and all Commands in Your Source Code
can you find in virtualUser.cs

P00w - Change Name [GM], [D], [MOD] etc - RaGEZONE Forums
 
Junior Spellweaver
Joined
Jul 9, 2013
Messages
157
Reaction score
4
how i set the tag GM or other before the name that all see it?
and where i set the color yellow fon name of gm and write?
 
Junior Spellweaver
Joined
Jul 9, 2013
Messages
157
Reaction score
4
where i post that code? 0.0 anywhere?
 
Last edited:
Status
Not open for further replies.
Back
Top