if Config.EnableTwitchCommand then
RegisterCommand(Config.TwitchCommand, function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local length = string.len(Config.TwitchCommand)
local message = rawCommand:sub(length + 1)
local time = os.date(Config.DateFormat)
playerName = xPlayer.getName()
local twitch = twitchPermission(source)
if twitch then
TriggerClientEvent('chat:addMessage', -1, {
template = '<div class="chat-message twitch"><i class="fab fa-twitch"></i> <b><span style="color: #9c70de">{0}</span> <span style="font-size: 14px; color: #e1e1e1;">{2}</span></b><div style="margin-top: 5px; font-weight: 300;">{1}</div></div>',
args = { playerName, message, time }
})
end
end)
end
function twitchPermission(id)
for i, a in ipairs(Config.TwitchList) do
for x, b in ipairs(GetPlayerIdentifiers(id)) do
if string.lower(b) == string.lower(a) then
return true
end
end
end
end
if Config.EnableYoutubeCommand then
RegisterCommand(Config.YoutubeCommand, function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local length = string.len(Config.YoutubeCommand)
local message = rawCommand:sub(length + 1)
local time = os.date(Config.DateFormat)
playerName = xPlayer.getName()
local youtube = youtubePermission(source)
if youtube then
TriggerClientEvent('chat:addMessage', -1, {
template = '<div class="chat-message youtube"><i class="fab fa-youtube"></i> <b><span style="color: #ff0000">{0}</span> <span style="font-size: 14px; color: #e1e1e1;">{2}</span></b><div style="margin-top: 5px; font-weight: 300;">{1}</div></div>',
args = { playerName, message, time }
})
end
end)
end
function youtubePermission(id)
for i, a in ipairs(Config.YoutubeList) do
for x, b in ipairs(GetPlayerIdentifiers(id)) do
if string.lower(b) == string.lower(a) then
return true
end
end
end
end
if Config.EnableTwitterCommand then
RegisterCommand(Config.TwitterCommand, function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local length = string.len(Config.TwitterCommand)
local message = rawCommand:sub(length + 1)
local time = os.date(Config.DateFormat)
playerName = xPlayer.getName()
TriggerClientEvent('chat:addMessage', -1, {
template = '<div class="chat-message twitter"><i class="fab fa-twitter"></i> <b><span style="color: #2aa9e0">{0}</span> <span style="font-size: 14px; color: #e1e1e1;">{2}</span></b><div style="margin-top: 5px; font-weight: 300;">{1}</div></div>',
args = { playerName, message, time }
})
end)
end
if Config.EnablePoliceCommand then
RegisterCommand(Config.PoliceCommand, function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local length = string.len(Config.PoliceCommand)
local message = rawCommand:sub(length + 1)
local time = os.date(Config.DateFormat)
playerName = xPlayer.getName()
local job = xPlayer.job.name
if job == Config.PoliceJobName then
TriggerClientEvent('chat:addMessage', -1, {
template = '<div class="chat-message police"><i class="fas fa-bullhorn"></i> <b><span style="color: #4a6cfd">{0}</span> <span style="font-size: 14px; color: #e1e1e1;">{2}</span></b><div style="margin-top: 5px; font-weight: 300;">{1}</div></div>',
args = { playerName, message, time }
})
end
end)
end
if Config.EnableAmbulanceCommand then
RegisterCommand(Config.AmbulanceCommand, function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local length = string.len(Config.AmbulanceCommand)
local message = rawCommand:sub(length + 1)
local time = os.date(Config.DateFormat)
playerName = xPlayer.getName()
local job = xPlayer.job.name
if job == Config.AmbulanceJobName then
TriggerClientEvent('chat:addMessage', -1, {
template = '<div class="chat-message ambulance"><i class="fas fa-ambulance"></i> <b><span style="color: #e3a71b">{0}</span> <span style="font-size: 14px; color: #e1e1e1;">{2}</span></b><div style="margin-top: 5px; font-weight: 300;">{1}</div></div>',
args = { playerName, message, time }
})
end
end)
end
if Config.EnableOOCCommand then
RegisterCommand(Config.OOCCommand, function(source, args, rawCommand)
local xPlayer = ESX.GetPlayerFromId(source)
local length = string.len(Config.OOCCommand)
local message = rawCommand:sub(length + 1)
local time = os.date(Config.DateFormat)
playerName = xPlayer.getName()
TriggerClientEvent('chat:ooc', -1, source, playerName, message, time)
end)
end
function isAdmin(xPlayer)
for k,v in ipairs(Config.StaffGroups) do
if xPlayer.getGroup() == v then
return true
end
end
return false
end
function showOnlyForAdmins(admins)
for k,v in ipairs(ESX.GetPlayers()) do
if isAdmin(ESX.GetPlayerFromId(v)) then
admins(v)
end
end
end
|