Tired of gm's that are hired, that don't follow the rules and spawn random crap everywhere!?
I AM...



Here's a custom rank u can assign to new gm's so that u won't find random spawned npc's or objects without knowing it yourself!
It only contains commands a GM really needs to assist players.

Execute this query, into your logon database's "Command_overrides" table

And then go to the accounts table and add "gm" instead of "a" to the accounts you wish!

Code:
INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('char learnskill', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('char additem', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('char removeitem', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('playerinfo', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('paralyze', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('unparalyze', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('gm allowwhispers', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('gm blockwhispers', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('kick byplayer', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('kick byaccount', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('ban ip', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('unban ip', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('lookup item', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('char forcerename', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('gmannounce', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('announce', 'gm');

INSERT INTO command_overrides
   (`command_name`, `access_level`)
VALUES
   ('ban account', 'gm');
In short, just type the accounts permissions "gm" for those you wish to make GM and they will only have these limited commands!

Credits to METALIVO from Ac-Web.