109 lines
2.1 KiB
Lua
109 lines
2.1 KiB
Lua
|
Config = {}
|
||
|
--------------------------------
|
||
|
-- [Date Format]
|
||
|
|
||
|
Config.DateFormat = '%H:%M' -- To change the date format check this website - https://www.lua.org/pil/22.1.html
|
||
|
|
||
|
-- [Staff Groups]
|
||
|
|
||
|
Config.StaffGroups = {
|
||
|
'god',
|
||
|
'admin',
|
||
|
'moderator',
|
||
|
'mod'
|
||
|
}
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Clear Player Chat]
|
||
|
|
||
|
Config.AllowPlayersToClearTheirChat = true
|
||
|
|
||
|
Config.ClearChatCommand = 'clear'
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Staff]
|
||
|
|
||
|
Config.EnableStaffCommand = true
|
||
|
|
||
|
Config.StaffCommand = 'staff'
|
||
|
|
||
|
Config.AllowStaffsToClearEveryonesChat = false
|
||
|
|
||
|
Config.ClearEveryonesChatCommand = 'clearall'
|
||
|
|
||
|
-- [Staff Only Chat]
|
||
|
|
||
|
Config.EnableStaffOnlyCommand = false
|
||
|
|
||
|
Config.StaffOnlyCommand = 'staffo'
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Advertisements]
|
||
|
|
||
|
Config.EnableAdvertisementCommand = false
|
||
|
|
||
|
Config.AdvertisementCommand = 'ad'
|
||
|
|
||
|
Config.AdvertisementPrice = 1000
|
||
|
|
||
|
Config.AdvertisementCooldown = 5 -- in minutes
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Twitch]
|
||
|
|
||
|
Config.EnableTwitchCommand = false
|
||
|
|
||
|
Config.TwitchCommand = 'twitch'
|
||
|
|
||
|
-- Types of identifiers: license: | xbl: | live: | discord: | fivem: | ip:
|
||
|
Config.TwitchList = {
|
||
|
'license:7fcf584ef3665d61212f92b6b4a2817z09fgd1a0' -- Example, change this
|
||
|
}
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Youtube]
|
||
|
|
||
|
Config.EnableYoutubeCommand = false
|
||
|
|
||
|
Config.YoutubeCommand = 'youtube'
|
||
|
|
||
|
-- Types of identifiers: steam: | license: | xbl: | live: | discord: | fivem: | ip:
|
||
|
Config.YoutubeList = {
|
||
|
'license:7fcf584ef3665d61212f92b6b4a2817z09fgd1a0' -- Example, change this
|
||
|
}
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Twitter]
|
||
|
|
||
|
Config.EnableTwitterCommand = false
|
||
|
|
||
|
Config.TwitterCommand = 'twitter'
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Police]
|
||
|
|
||
|
Config.EnablePoliceCommand = true
|
||
|
|
||
|
Config.PoliceCommand = 'police'
|
||
|
|
||
|
Config.PoliceJobName = 'police'
|
||
|
|
||
|
--------------------------------
|
||
|
-- [Ambulance]
|
||
|
|
||
|
Config.EnableAmbulanceCommand = true
|
||
|
|
||
|
Config.AmbulanceCommand = 'ambulance'
|
||
|
|
||
|
Config.AmbulanceJobName = 'ambulance'
|
||
|
|
||
|
--------------------------------
|
||
|
-- [OOC]
|
||
|
|
||
|
Config.EnableOOCCommand = true
|
||
|
|
||
|
Config.OOCCommand = 'ooc'
|
||
|
|
||
|
Config.OOCDistance = 9999.0
|
||
|
|
||
|
--------------------------------
|