local QBCore = exports['qb-core']:GetCoreObject()
-- NPC'yi oluştur
Citizen.CreateThread(function()
local model = GetHashKey("a_m_y_business_03")
RequestModel(model)
while not HasModelLoaded(model) do
Wait(1)
end
local npc = CreatePed(4, model, 1234.0, 5678.0, 30.0, 0.0, false, true)
SetEntityHeading(npc, 180.0)
FreezeEntityPosition(npc, true)
SetEntityInvincible(npc, true)
SetBlockingOfNonTemporaryEvents(npc, true)
end)
-- 24 saatlik zamanlayıcı ve satın alma işlemi
Citizen.CreateThread(function()
while true do
Citizen.Wait(24 * 60 * 60 * 1000) -- 24 saat bekle
-- Ürün satın alma işlemi
local strawberries = 100
print("NPC 100 adet çilek satın aldı!")
end
end)