- Katılım
- 3 yıl 2 ay 22 gün
- Mesajlar
- 2
local src = source
local xPlayer = ESX.GetPlayerFromId(src)
local xItem = xPlayer.getInventoryItem(item)
if xItem ~= nil then
if xItem.count >= 1 then
local count = math.random(1, xItem.count)
xPlayer.removeInventoryItem(item, count)
xPlayer.addMoney(count * price)
TriggerClientEvent('mythic_notify:client:SendAlert', xPlayer.source, { type = 'inform', text = count..' adet '..label..' sattın, '..count*price..'$ para aldın.'})
if Config.EnableDiscordLog then
dclog(xPlayer, '**'..count..'** adet **'..label..'** sattı, **'..count*price..'$** para aldı.')
end
else
TriggerClientEvent('mythic_notify:client:SendAlert', xPlayer.source, { type = 'inform', text = 'Üzerinde hiç '..label..' yok.'})
end
end
end)
kod satırlarını nasıl değiştirmem gerek satıcı kod satırı
local xPlayer = ESX.GetPlayerFromId(src)
local xItem = xPlayer.getInventoryItem(item)
if xItem ~= nil then
if xItem.count >= 1 then
local count = math.random(1, xItem.count)
xPlayer.removeInventoryItem(item, count)
xPlayer.addMoney(count * price)
TriggerClientEvent('mythic_notify:client:SendAlert', xPlayer.source, { type = 'inform', text = count..' adet '..label..' sattın, '..count*price..'$ para aldın.'})
if Config.EnableDiscordLog then
dclog(xPlayer, '**'..count..'** adet **'..label..'** sattı, **'..count*price..'$** para aldı.')
end
else
TriggerClientEvent('mythic_notify:client:SendAlert', xPlayer.source, { type = 'inform', text = 'Üzerinde hiç '..label..' yok.'})
end
end
end)
kod satırlarını nasıl değiştirmem gerek satıcı kod satırı