Ok, here is how you can fix your problem
Go to this website (it's my ftp site):
***(Dead Link Now, sorry.)***
and download the gmcommandseditted.txt file.
There you will find all the commands for each letter of access.
Find a letter that has the least amount of things and edit that LETTER in the command_overrides table in your WORLD database. (Be sure not to select the one in your character database as that one is no longer in use.)
Here is an example of what you would enter into the command list.
Code:
insert into `command_overrides`(`command_name`,`access_level`) values ('mount','h');
insert into `command_overrides`(`command_name`,`access_level`) values ('summon','x');
insert into `command_overrides`(`command_name`,`access_level`) values ('cheat','x');
insert into `command_overrides`(`command_name`,`access_level`) values ('cheat fly','x');
insert into `command_overrides`(`command_name`,`access_level`) values ('cheat land','x');
insert into `command_overrides`(`command_name`,`access_level`) values ('cheat taxi','x');
insert into `command_overrides`(`command_name`,`access_level`) values ('cheat explore','x');
insert into `command_overrides`(`command_name`,`access_level`) values ('appear','k');
insert into `command_overrides`(`command_name`,`access_level`) values ('revive','k');
insert into `command_overrides`(`command_name`,`access_level`) values ('recall','k');
insert into `command_overrides`(`command_name`,`access_level`) values ('recall list','k');
insert into `command_overrides`(`command_name`,`access_level`) values ('recall port','k');
insert into `command_overrides`(`command_name`,`access_level`) values ('reviveplr','h');
This is from my database. It gives the command you see to the letter you see. These are the commands I have given to my donors.
Since each of the letters share common commands already, you do not have to insert those into your command_overrides table.
Now, when you have designated what commands you are giving with each letter you go to your accounts database table and give them all the letters that you want to give them commands.
So my highest donor would have the commands from 'xhk'. So, all the commands in the code would be given plus the ones already for each of those letters (in the text file).
I hope this helps you out as it took me a little bit to figure all this out.