RegisterCommand('kaplama', function(source, args, rawCommand)
local ped = GetPlayerPed(-1)
local veh = GetVehiclePedIsIn(ped, false)
local livery = tonumber(args[1])
local liveryCount = GetVehicleLiveryCount(veh)
ESX.PlayerData = ESX.GetPlayerData()
if livery ~= nil then
if ESX.PlayerData.job and (ESX.PlayerData.job.name == 'police' or ESX.PlayerData.job.name == 'sheriff' or ESX.PlayerData.job.name == 'ambulance') then
if GetModel(IsThisModelAHeli(veh)) or GetVehicleClass(veh) == 18 then
if livery <= liveryCount then
SetVehicleLivery(veh, livery)
exports["mythic_notify"]:SendAlert("inform", "Kaplama değiştirildi.")
else
exports["mythic_notify"]:SendAlert("error", "Böyle bir kaplama bulunamadı.")
end
else
exports["mythic_notify"]:SendAlert("error", "Bu komutu sadece polis araçlarında veya helikopterlerde kullanabilirsin.")
end
else
exports["mythic_notify"]:SendAlert("error", "Polis veya şerif olmadan bu komutu kullanamazsın!")
end
else
exports["mythic_notify"]:SendAlert("error", "Geçersiz sayı.")
end
end, false)