atcommands.c

You need to edit atcommand_exec

This piece of code here orders that part. I think if you just remove the check for group level it will work.

Code:
    if (info == NULL) {
        if (pc_get_group_level(sd) == 0) // TODO: remove or replace with proper permission
            return false;
        sprintf(output, msg_fd(fd,153), command); // "%s is Unknown Command."
        clif->message(fd, output);
        atcommand->get_suggestions(sd, command + 1, is_atcommand);
        return true;
    }
 
Back
Top