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!

[For the public] Mute Script + Grade.

Joined
Sep 10, 2007
Messages
970
Reaction score
815
These are all the UGradeIDs defined in Gunz, taken from my server emulator. Not sure what the ones with question marks next to them do, I haven't tested them yet.

Code:
    public enum UGradeIDs : byte
    {
        free = 0,
        regular = 1, // ?
        jjang = 2,
        criminal = 100 , // ?
        warning1 = 101 , // ?
        warning2 = 102, // ?
        warning3 = 103, // ?
        chatBanned = 104 ,
        penalty = 105 , // ?
        gameMaster = 252,
        banned = 253,
        developer = 254,
        administator = 255
    }
Code:
    public enum UserGradeID : byte
    {
        Noraml = 0,
        Premium = 1,
        Event = 2,
        HackReport = ****
        HackReport2 = ****
        HackReport3 = 102,
        HackReport4 = 103,
        ChatBanned = ****
        AccessDenied = ****
        Developer = 252,
        Banned = 253,
        GameModerator = 254,
        Adminstrator = 255
    }
 
Skilled Illusionist
Joined
Nov 11, 2008
Messages
388
Reaction score
42
It's the same really. make the grades you'reself.
 
Skilled Illusionist
Joined
Nov 11, 2008
Messages
388
Reaction score
42
It's just so usefull. And with a script evan more usefull.
 
Skilled Illusionist
Joined
Nov 11, 2008
Messages
388
Reaction score
42
Lol. What abot in his emu ?
 
Master Summoner
Joined
Apr 30, 2009
Messages
539
Reaction score
22
These are all the UGradeIDs defined in Gunz, taken from my server emulator. Not sure what the ones with question marks next to them do, I haven't tested them yet.

Code:
    public enum UGradeIDs : byte
    {
        free = 0,
        regular = 1, // ?
        jjang = 2,
        criminal = 100 , // ?
        warning1 = 101 , // ?
        warning2 = 102, // ?
        warning3 = 103, // ?
        chatBanned = 104 ,
        penalty = 105 , // ?
        gameMaster = 252,
        banned = 253,
        developer = 254,
        administator = 255
    }

Thanks for those <3


@ Nova Thanks, now I can change /jjang ugradeid 2 to ugradeid 104 just to let them shut up in game :)

Good work
 
Skilled Illusionist
Joined
Nov 11, 2008
Messages
388
Reaction score
42
Thanks for those <3


@ Nova Thanks, now I can change /jjang ugradeid 2 to ugradeid 104 just to let them shut up in game :)

Good work

Lol, nice one. I never thought of that lol.
 
Back
Top