Npcleri bu kod ile açıp kapatabilirsiniz. Eğer ki qb-smallresources kullanıyorsanız config'dekileri silmeniz gerekir.
Selamlar, aşağıda paylaşacağım kod satırının amacı sunucunuzdaki npc'leri aktif etmektir, sayılarını istediğiniz gibi ayarlıyabilirsiniz. Kod satırının çalışabilmesi için kod satırını bir client'in içerisine atmalısınız.
Selamlar, aşağıda paylaşacağım kod satırının amacı sunucunuzdaki npc'leri aktif etmektir, sayılarını istediğiniz gibi ayarlıyabilirsiniz. Kod satırının çalışabilmesi için kod satırını bir client'in içerisine atmalısınız.
Kod:
TrafficAmount = 0
PedestrianAmount = 0
ParkedAmount = 0
Citizen.CreateThread(function()
while true do
Wait(0)
SetVehicleDensityMultiplierThisFrame((TrafficAmount/100)+.0)
SetPedDensityMultiplierThisFrame((PedestrianAmount/100)+.0)
SetRandomVehicleDensityMultiplierThisFrame((TrafficAmount/100)+.0)
SetParkedVehicleDensityMultiplierThisFrame((ParkedAmount/100)+.0)
SetScenarioPedDensityMultiplierThisFrame((PedestrianAmount/100)+.0, (PedestrianAmount/100)+.0)
SetGarbageTrucks(false)
SetRandomBoats(false)
SetCreateRandomCops(false)
SetCreateRandomCopsNotOnScenarios(false)
SetCreateRandomCopsOnScenarios(false)
SetVehicleModelIsSuppressed(GetHashKey("rubble"), true)
SetVehicleModelIsSuppressed(GetHashKey("dump"), true)
SetVehicleModelIsSuppressed(GetHashKey("taco"), true)
SetVehicleModelIsSuppressed(GetHashKey("biff"), true)
SetVehicleModelIsSuppressed(GetHashKey("blimp"), true)
SetVehicleModelIsSuppressed(GetHashKey("boxville5"), true)
SetVehicleModelIsSuppressed(GetHashKey("technical"), true)
SetVehicleModelIsSuppressed(GetHashKey("ninef"), true)
SetVehicleModelIsSuppressed(GetHashKey("comet"), true)
SetVehicleModelIsSuppressed(GetHashKey("bullet"), true)
SetVehicleModelIsSuppressed(GetHashKey("carbonizzare"), true)
SetVehicleModelIsSuppressed(GetHashKey("neon"), true)
SetVehicleModelIsSuppressed(GetHashKey("tropos"), true)
end
end)