- Katılım
- 5 yıl 4 ay 25 gün
- Mesajlar
- 221
Linkleri,görmek için
Giriş yap veya üye ol.
güncellemeyi Yaptık serverımız server liste çıkmıyor diye sonra bu güncellemeyi yaptığımız için esx_supermarkette sorun oldu itemler gözükmüyor satın al falan çıkmıyor gri ekran sadece konsolda bir hata çıkıyor o güncellemeyi yaptığımda hata bu kısmı gösteriyor sorun ne olabilir AddEventHandler('onMySQLReady', function()
hasSqlRun = true
LoadShop()
end)
-- extremely useful when restarting script mid-game
Citizen.CreateThread(function()
Citizen.Wait(2000) -- hopefully enough for connection to the SQL server
if not hasSqlRun then
LoadShop()
hasSqlRun = true
end
end)
function LoadShop()
local itemResult = MySQL.Sync.fetchAll('SELECT * FROM items')
local shopResult = MySQL.Sync.fetchAll('SELECT * FROM shops')
local itemInformation = {}
for i=1, #itemResult, 1 do
if itemInformation[itemResult.name] == nil then
itemInformation[itemResult.name] = {}
end
itemInformation[itemResult.name].label = itemResult.label
itemInformation[itemResult.name].limit = itemResult.limit
end
for i=1, #shopResult, 1 do
if ShopItems[shopResult.store] == nil then
ShopItems[shopResult.store] = {}
end
if itemInformation[shopResult.item].limit == -1 then
itemInformation[shopResult.item].limit = 30
end
table.insert(ShopItems[shopResult.store], {
label = itemInformation[shopResult.item].label,
item = shopResult.item,
price = shopResult.price,
limit = itemInformation[shopResult.item].limit
})
end
end