• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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