Commands

InGame and Live Console Commands

Each command's name can be changed from the config.lua file

removeStorage

An inGame only admin command to remove the closest storage to the player (admin)

removeAllStorages

An inGame and Live Console admin command to remove all the created storages in the server

Admin Commands Access

In the config.lua file you got config.admins.allowedPlayers value (as an array) in which you can put all the different identifiers of the players no matter which identifier of a player you use

Example:

config.admins = {
    allowedPlayers = {
        'discord:0000', -- Person 1
        'license:0000', -- Person 2
        'steam:0000' -- Person 3
    },
    removeStorageName = 'removeStorage',
    removeAllStoragesName = 'removeAllStorages'
}

Last updated