Config
Config.Notifications
--[[
All possible notification systems, choose the one you want:
esx
okokNotify
renzu_notify
mythic_notify
custom -- for your custom notification system put it at rbStaff/shared/notifications.lua
]]
Config.Notifications = "esx"Config.Aduty
-- Built in Command (Admin Duty)
-- You can disable this at Config.BuiltInCommands
Config.Aduty = {
group = "mod",
command = "aduty",
clothes = { -- if remove the table and set to false disables cloth change
male = {
['tshirt_1'] = 15, ['tshirt_2'] = 0,
['torso_1'] = 274, ['torso_2'] = 0,
['arms'] = 9,
['pants_1'] = 106, ['pants_2'] = 0,
['shoes_1'] = 2, ['shoes_2'] = 0,
['armor_1'] = 0,
},
female = {
['tshirt_1'] = 15, ['tshirt_2'] = 0,
['torso_1'] = 274, ['torso_2'] = 0,
['arms'] = 9,
['pants_1'] = 106, ['pants_2'] = 0,
['shoes_1'] = 2, ['shoes_2'] = 0,
},
},
runSprintMultiplier = 1.49, -- 1.0 or false it doesnt change the player speed
unlimitedStamina = true,
invencible = true,
ids = true,
--[[
In admin mode, when you hover over a player or vehicle and press "E," an additional menu opens showing info about that entity.
If you press "E" while pointing at a player and then open the staff menu it will open focused on that player’s profile.
]]
superpowers = true,
}Config.Chat
-- Chat
Config.Chat = {
command = "a", -- command to send messages to the admin chat without being in the menu
cooldown = 3, -- cooldown to send messages in seconds
maxMessages = 50, -- will only show the last X messages when loading the admin chat after entering the server
}Config.Spectate
-- Spectate
Config.Spectate = {
enabled = true,
group = "mod", -- minimum group allowed
command = "spectate",
commandStop = "spectateoff",
}Config.Reports
-- Reports
Config.Reports = {
enabled = true,
group = "mod",
command = "report", -- /report i need help | to make a report
commandAccept = "raccept", -- /raccept id | to accept the report
commandFinish = "rfinish", -- /rfinish | to finish the report
-- Time it takes for the report to expire
timeToExpire = 120,
-- How much time the player will need to wait to create another report (WIP)
cooldown = 60,
}Last updated