Forum adresimize hoş geldin FiveMTürk olarak amacımız siz değerli kullanıcılarımıza en aktif fikir ve paylaşım platformu sunmak bir yana en güvenilir şekilde alışveriş yapabileceğiniz bir platform sunmaktır.
Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
"Polis işi menüsüne nasıl eklenir."
esx_policejob: client/main.lua:
Kod:
{label = _U('fine'), value = 'fine'},
--add code below (don't forget to add ',' before new row)
{label = "Community Service", value = 'communityservice'}
elseif action == 'unpaid_bills' then
OpenUnpaidBillsMenu(closestPlayer)
-- add code below
elseif action == 'communityservice' then
SendToCommunityService(GetPlayerServerId(closestPlayer))
end
--add this function
function SendToCommunityService(player)
ESX.UI.Menu.Open('dialog', GetCurrentResourceName(), 'Community Service Menu', {
title = "Community Service Menu",
}, function (data2, menu)
local community_services_count = tonumber(data2.value)
if community_services_count == nil then
ESX.ShowNotification('Invalid services count.')
else
TriggerServerEvent("esx_communityservice:sendToCommunityService", player, community_services_count)
menu.close()
end
end, function (data2, menu)
menu.close()
end)
end
"Polis işi menüsüne nasıl eklenir."
esx_policejob: client/main.lua:
Kod:
{label = _U('fine'), value = 'fine'},
--add code below (don't forget to add ',' before new row)
{label = "Community Service", value = 'communityservice'}
elseif action == 'unpaid_bills' then
OpenUnpaidBillsMenu(closestPlayer)
-- add code below
elseif action == 'communityservice' then
SendToCommunityService(GetPlayerServerId(closestPlayer))
end
--add this function
function SendToCommunityService(player)
ESX.UI.Menu.Open('dialog', GetCurrentResourceName(), 'Community Service Menu', {
title = "Community Service Menu",
}, function (data2, menu)
local community_services_count = tonumber(data2.value)
if community_services_count == nil then
ESX.ShowNotification('Invalid services count.')
else
TriggerServerEvent("esx_communityservice:sendToCommunityService", player, community_services_count)
menu.close()
end
end, function (data2, menu)
menu.close()
end)
end
"Polis işi menüsüne nasıl eklenir."
esx_policejob: client/main.lua:
Kod:
{label = _U('fine'), value = 'fine'},
--add code below (don't forget to add ',' before new row)
{label = "Community Service", value = 'communityservice'}
elseif action == 'unpaid_bills' then
OpenUnpaidBillsMenu(closestPlayer)
-- add code below
elseif action == 'communityservice' then
SendToCommunityService(GetPlayerServerId(closestPlayer))
end
--add this function
function SendToCommunityService(player)
ESX.UI.Menu.Open('dialog', GetCurrentResourceName(), 'Community Service Menu', {
title = "Community Service Menu",
}, function (data2, menu)
local community_services_count = tonumber(data2.value)
if community_services_count == nil then
ESX.ShowNotification('Invalid services count.')
else
TriggerServerEvent("esx_communityservice:sendToCommunityService", player, community_services_count)
menu.close()
end
end, function (data2, menu)
menu.close()
end)
end