- Katılım
- 2 yıl 5 ay 24 gün
- Mesajlar
- 55
Merhaba, qb-inventory kullanıyorum. Meslekleğe özel bir market açmak istiyorum, polis için oluşturduğumda market ilk açılımdan sonra kayboluyor, aynı şekilde gunshop olarak hiçbir şekilde oluşturamadım. Yardımcı olabilir misiniz?
Paket: qbtoesx
Paket: qbtoesx
Kod:
Citizen.CreateThread(function()
while true do
local sleep = 2000
local ped = PlayerPedId()
local plyCoords = GetEntityCoords(ped, false)
local distMarket = Vdist(plyCoords.x, plyCoords.y, plyCoords.z, 482.542, -995.41, 30.6897)
if distMarket <= 4.0 then
sleep = 7
DrawMarker(2, 482.542, -995.41, 30.6897, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 0.2, 0, 255, 0, 200, 0, 0, 0, 1)
if distMarket <= 0.5 then
DrawText3D(482.542, -995.41, 30.6897 + 0.3, 0.35, '[E] Polis Marketi')
if IsControlJustReleased(1, 51) then
if ESX.PlayerData.job.name == 'police' then
else
end
Polis()
end
end
end
Citizen.Wait(sleep)
end
end)
function Polis()
ESX.PlayerData = xPlayer
TriggerServerEvent("inventory:server:OpenInventory", "shop", "Polis", Config.Polis)
end