1. Hello I hope someone could help me with this after I add my permission.cfg to the server nether I or anyone can enter its just stuck on load

    hear is my CFG
    Code:
    groups {
        Drifter {
            default = 'True'
            inherits = ''
            permissions {
                - 'rok.fairplay'
             # - 'rok.throne.capture.ancient'
            }
            nameFormat = '%name%'
            chatFormat =[#adb0ab]Drifter'%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        Elf {
            inherits = ''
            permissions {
                - 'rok.fairplay'
             # - 'rok.throne.capture.ancient'
            }
            nameFormat = '%name%'
            chatFormat =[#f6b1d4]Elf'%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        Dwarf {
            inherits = ''
            permissions {
                - 'rok.fairplay'
             # - 'rok.throne.capture.ancient'
            }
            nameFormat = '%name%'
            chatFormat =[#f2e032]Dwarf'%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        Human {
            inherits = ''
            permissions {
                - 'rok.fairplay'
             # - 'rok.throne.capture.ancient'
            }
            nameFormat = '%name%'
            chatFormat =[00f9ff]Human]'%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        Orc {
            inherits = ''
            permissions {
                - 'rok.fairplay'
             # - 'rok.throne.capture.ancient'
            }
            nameFormat = '%name%'
            chatFormat =[#fb7703]Orc'%name% : %message%'
            guildFormat = '[21C447][%guild%] %name% : %message%[-]'
            localChatFormat = '[Local] %name% : %message%'
            whisperSendFormat = '[C4257A]%name% >> %message%[-]'
            whisperReceiveFormat = '[D12681]%name% << %message%[-]'
        }
        HumanKing {
            inherits = ''
            permissions {
            nameFormat = '%name%'
            chatFormat = '[00FF00]Human King[FF0066]%name% [000000]: %message%'
            guildFormat = '[FF0066][%guild%] %chatFormat%[-]'
            permissions {
                - '*'
            }
        }   
        ElfKing {
            inherits = ''
            permissions {
            nameFormat = '%name%'
            chatFormat = '[00FF00]Elf King[FF0066]%name% [000000]: %message%'
            guildFormat = '[FF0066][%guild%] %chatFormat%[-]'
            permissions {
                - '*'
            }
        }   
        OrcKing {
            inherits = ''
            permissions {
            nameFormat = '%name%'
            chatFormat = '[00FF00]Orc King[FF0066]%name% [000000]: %message%'
            guildFormat = '[FF0066][%guild%] %chatFormat%[-]'
            permissions {
                - '*'
            }
        }   
        DwarfKing {
            inherits = ''
            permissions {
            nameFormat = '%name%'
            chatFormat = '[00FF00]Dwarf King[FF0066]%name% [000000]: %message%'
            guildFormat = '[FF0066][%guild%] %chatFormat%[-]'
            permissions {
                - '*'
            }
        }
      
    }
    macros {
    }
    users {
        Dozi King Of Lothlorien {
            groups {
                - 'ElfKing'
            }
            permissions {
            }
        }
        salvatore the orc king {
            groups {
                - 'OrcKing'
            }
            permissions {
            }
        }
        Shragnok The Dwarf King {
            groups {
                - 'DwarfKing'
            }
            permissions {
            }
        }
        Aragorn King of Gondor {
            groups {
                - 'HumanKing'
            }
            permissions {
            }
        }
    }
     
  2. first:

    your chat-format is scrambled....

    in RoK you only take HEX-Values, which do not require a #

    insted, the # makes the rest of the code unavailable for the server...

    so this is Probably why your serer wont start.

    convert :

    Code:
    chatFormat =[#adb0ab]Drifter'%name% : %message%'
    to

    Code:
    chatFormat =[ADB0AB]Drifter'%name% : %message%'
    J

    PS: and the rest of the "chat format" entries as well !