[question][ascent Commands Issues] ...

Results 1 to 3 of 3
  1. #1
    Member vikkman is offline
    MemberRank
    Jul 2007 Join Date
    86Posts

    [question][ascent Commands Issues] ...

    Hy...
    I got my own private server with alot of gms.. now, i gave them diferent accesses to the server.. EX : I gave one of them the "m" access...
    i only gave him m to use .modify speed, scale and displayid...
    but he;'s not listening to me and he can use .additem too.. because .additem is a command linked to the "m" access..

    I'm wondering how can i give players only some of the "m" commands... not all of them...?

    :flag_schw


  2. #2
    Enthusiast daverick is offline
    MemberRank
    Aug 2007 Join Date
    45Posts

    Re: [question][ascent Commands Issues] ...

    not sure its available... only whole command list... (m / az / whatever you want)

  3. #3
    Apprentice gb20 is offline
    MemberRank
    Apr 2008 Join Date
    10Posts

    Re: [question][ascent Commands Issues] ...

    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.
    Last edited by gb20; 15-06-08 at 08:31 AM.



Advertisement