For the complete documentation index, see llms.txt. This page is also available as Markdown.

configChatPd.lua

config.chatPd = {
    {
        active = true,
        command = "pdc",              -- Command for police to send a message to other police in chat
        jobs = { "police", },         -- Jobs that can use this command
        chatClor = { 0, 0, 200 },
        chatPrefix = "CHAT_PD_PREFIX" -- This is the translation key for the chat prefix, you can change it in the language file
    },
    {
        active = false,
        command = "sc",
        jobs = { "sheriff", },
        chatClor = { 0, 0, 200 },
        chatPrefix = "CHAT_PD_PREFIX"
    }
}

Last updated