TriggerEvent('es:addGroupCommand', 'pedizin', 'admin', function(source, args, user)
if tonumber(args[1]) and args[2] and tonumber(args[3]) then
local xPlayer = ESX.GetPlayerFromId(args[1])
local situation = tostring(args[2])
local rights = tostring(args[3])
if xPlayer then
MySQL.Async.execute('UPDATE users SET ped = @ped, ped_rights = @ped_rights WHERE identifier = @identifier', {
['@identifier'] = xPlayer.identifier,
['@ped'] = situation,
['@ped_rights'] = rights
})
TriggerClientEvent('chat:addMessage', source, { args = { '^1SYSTEM', '' .. args[1] .. ' oyuncusunun ped durumu ' .. situation .. ' ve ped hakkı ' .. rights .. ' olarak değiştirildi!' } })
else
TriggerClientEvent('chat:addMessage', source, { args = { '^1SYSTEM', 'Oyuncu bulunamadı.' } })
end
else
TriggerClientEvent('chat:addMessage', source, { args = { '^1SYSTEM', 'Hatalı kullanım. Olması gerken */pedizin [id] [true/false] [0-10]*' } })
end
end, {help = "/pedver [id] [true/false] [0-10]"})