Hey there! I’m trying to add admins through Poodlechat, and no matter what we do coding-wise, it’s not working.
"-- Roles that can appear in front of player names, based on an ace.
– Optionally, each role can be given a custom colour.
– Example:
– {name = ‘Admin’, color = {255, 0, 0}, ace = ‘chat.admin’}
– To show this role for all members of group.admin:
– add_ace group.admin chat.admin allow
ServerConfig.Roles = {
{name = ‘Admin’, color = {151, 77, 54}, ace = ‘chat.admin’},
{name = ‘Moderator’, color = {80, 214, 101}, ace = ‘chat.moderator’}
}
. ."
Add system admins
add_ace group.admin chat.admin allow
add_ace group.moderator chat.moderator allow
add_ace group.admin command allow # allow all commands
add_ace group.admin command.quit deny # but don’t allow quit
#add_ace identifier.steam:0000000000a0000 group.admin command allow # Example Steam Hex Usage
add_principal identifier.fivem:7121044 group.admin
add_principal identifier.fivem:14302567 group.admin allow
This is the coding I have right now, and it’s not working. We’re losing our minds trying to figure this out.