ACE Permissions
add_principal identifier.discord:394446211341615104 group.admin
# The above line in a server.cfg or permission.cfg will add the player
# who has the discord identifier 394446211341615104 to the group.admin group.
# It should also be noted that lines denoted with a # are commented and will be
# skipped by the .cfg parser.
add_principal group.admin group.moderator
# The above line will make moderator aces inherited by the admin group.
# So group.admin will get all of the same permissions that group.moderator gets. add_ace group.admin "BadgerTools.Spectate" allow
# The above line would give the group.admin permission to use /spectate
# in the BadgerTools script.
add_principal identifier.discord:394446211341615104 group.admin
# The above line now sets the player to inherit all the permissions set up with
# group.admin.
add_ace identifier.discord:394446211341615104 "BadgerTools.Spectate" allow
# The above line will add permission to use /spectate for only the player
# that matches having a discord identifier.
remove_ace group.admin "BadgerTools.Spectate" allow
# The above line will remove the allow status of a permission from the
# group.admin.
remove_ace identifier.discord:394446211341615104 "BadgerTools.Spectate" allow
# The above line will do the same as mentioned above, but will remove
# the allow status of the permission from the player that matches having
# the specified discord identifier ID.Last updated