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!

Gm Commands

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 7, 2009
Messages
52
Reaction score
0
How do gm commands can be used only by people 250lvl?
 
Experienced Elementalist
Joined
Jun 5, 2010
Messages
281
Reaction score
8
GM commands are possible when you'r a [GM], set your `acceslevel` at your database ( Navicat @ list_Config) to 500, and you'll be a GameMaster, commands can be used wheter level 1 or 250.
 
Skilled Illusionist
Joined
Nov 24, 2007
Messages
329
Reaction score
9
or if you wanted to make commands only usable by GMs, mods, admins, and level 250 players, you could always set a check in the source to see if the player is level 250 or greater; something like
Code:
if (thisclient->Stats->level > 249 || isGM) {
    Code stuff that I'm too lazy to write
}
 
Status
Not open for further replies.
Back
Top