configChat911.lua
config.chat911 = {
active = false,
commands = lib.array:new(
{
active = false,
command = "911", -- Command to send an emergency message
receivingJobs = { "police", }, -- Jobs that will receive the message
blip = 280,
phoneCheck = false, -- If true, the player must have a phone to use this emergency number
},
{
active = false,
command = "999",
receivingJobs = { "sheriff", },
blip = 280,
phoneCheck = false,
}
)
}
Last updated