Kod:
local function HarvestMelon(source)
if PlayersHarvestingMelon[source] == true then
SetTimeout(Config.TimeToFarmMelon, function()
local xPlayer = ESX.GetPlayerFromId(source)
local _source = source
local melon = xPlayer.getInventoryItem('melon')
if melon.weight ~= -1 and melon.count >= melon.weight then
TriggerClientEvent('esx:showNotification', source, _U('inv_full_melon'))
else
xPlayer.addInventoryItem('melon', 1)
HarvestMelon(source)
end
end)
end
end
Linkleri,görmek için
Giriş yap veya üye ol.
Sqlde bu Şekilde ve üstüme sadece 1 tane alabiliyorum sonra
Kod:
['inv_full_melon'] = 'Daha fazla karpuz taşıyamazsın.',