Character Server Configuration
This section contains settings for managing characters on the server.
Character Command
Defines the required group and command to access character management
characters = {
group = 'admin',
command = 'characters',
},
Main Identifier
Defines how the server tracks players for character slots.
mainIdentifier = 'license'
Character Deletion
This function runs when a character is deleted.
characterDelete = function(identifier)
if GetResourceState('bcs_housing') == 'started' then
exports.bcs_housing:RevokePropertyByIdentifier(identifier)
end
end
Last updated on