1. I need a moderator rank for my permissions.cfg cause so much of my admins bases looks so unlegit and looks like they spawn shit in but I need to move them to moderator so they only do specific commands like.

    Kick & Ban
    Teleport
    Fly
    Godmode
    Mute
    ect. Except spawning shit in the server like blocks, steel etc.

    Please help.
     
  2. Just make a new group and assign the permissions to this group... then just add the group to a player more info... type "/help permission" (without quotation marks) in your server's console.
     
  3. Code:
    mod {
            inherits = 'default'
            permissions {
               - 'codehatch.command.admin.ban'
               - 'codehatch.command.admin.kick'
               - 'rok.command.teleport'
               - 'rok.command.teleport.coord'
               - 'rok.command.teleport.origin'
               - 'rok.command.teleport.user'
               - 'rok.command.teleport.usertocoord'
               - 'rok.command.teleport.usertouser'
               - 'rok.command.admin.fly'
               - 'rok.command.admin.godmode'
               - 'rok.command.admin.godmode.others'
            }
        }
    I use this spreadsheet to get my permissions
    Who ever made it seems to keep it pretty up to date.
     
  4. I am also trying to add a mod rank to my server. but whenever i do, anyone with this rank has no chat tag and access to no commands, here is my permissions.cfg folder, someone please help
    Code:
    groups {
        default {
            default = 'True'
            inherits = ''
            permissions {
                - 'rok.fairplay'
            }
            nameFormat = '%name%'
            chatFormat = '%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        admin {
            nameFormat = '%name%'
            chatFormat = '[00FFDD](ADMIN) %name% : [FFFFFF]%message%'
            guildFormat = '[00CC00][%guild%] %chatFormat%[-]'
            permissions {
                - '*'
            }
            default = 'false'
            inherits = ''
        }
    }
       Mod }
            nameFormat = '%name%'
            chatFormat = '[003AFF](Moderator) %name% : [003AFF]%message%'
            guildFormat = '[003AFF][%guild%] %chatFormat%[-]'
            permissions {
                - 'rok.chat.me'
                - 'rok.chat.guild'
                - 'rok.teleport
                - 'rok.admin.fly'
                - 'codehatch.admin.kick'
                - 'codehatch.admin.ban''
            }
            default = 'false'
            inherits = ''
        }
    }
    macros {
    }
    users {
    Chester {
            groups {
                - 'admin'
            }        permissions {
            }
        }}kelticfrost {
            groups {
                - 'Mod'
            }        permissions {
            }
        }}
    what is wrong with it please help!
     
  5. Try this
    Code:
    groups {
        default {
            default = 'True'
            inherits = ''
            permissions {
                - 'rok.fairplay'
            }
            nameFormat = '%name%'
            chatFormat = '%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        admin {
            nameFormat = '%name%'
            chatFormat = '[00FFDD](ADMIN) %name% : [FFFFFF]%message%'
            guildFormat = '[00CC00][%guild%] %chatFormat%[-]'
            permissions {
                - '*'
            }
            default = 'false'
            inherits = 'default'
       }
       Mod {
            nameFormat = '%name%'
            chatFormat = '[003AFF](Moderator) %name% : [003AFF]%message%'
            guildFormat = '[003AFF][%guild%] %chatFormat%[-]'
            permissions {
                - 'rok.chat.me'
                - 'rok.chat.guild'
                - 'rok.teleport
                - 'rok.admin.fly'
                - 'codehatch.admin.kick'
                - 'codehatch.admin.ban''
            }
            default = 'false'
            inherits = 'default'
        }
    }
    macros {
    }
    users {
        Chester {
            groups {
                - 'admin'
            }
            permissions {
            }
        }
        kelticfrost {
            groups {
                - 'Mod'
            }
            permissions {
            }
        }
    }