- Katılım
- 3 yıl 10 ay 28 gün
- Mesajlar
- 40
Selam sunucu için eklemeye çalışığım esx_planting scriptinde soruları yanıtlayıp işlem tamamlandığında bana 0 tane veriyor bir türlü çözemedim yardım edermisiniz.
Kod:
RegisterServerEvent("esx_receptury:statusSuccess")
AddEventHandler("esx_receptury:statusSuccess", function(message, min, max, item)
TriggerClientEvent('esx:showNotification', source, message)
local _source = source
local xPlayer = ESX.GetPlayerFromId(_source)
math.randomseed(os.time())
local amount = math.random(1, 5)
local itemProps = xPlayer.getInventoryItem(item)
if(itemProps.weight < itemProps.count + amount) then
xPlayer.setInventoryItem(item, itemProps.weight)
TriggerClientEvent("pNotify:SendNotification", source, {
text = 'Ceplerinizde yer kalmadığı için bazı malları terk ediyorsunuz.',
type = "error",
timeout = 2000,
layout = "centerLeft"
})
else
xPlayer.addInventoryItem(item, amount)
end
end)