Files
gta-v-chaos-mod-custom-scripts/Peds/PedsPizzaBikes.lua
nathan 8bd8c2c2fa Modified Effects:
Modified the Snow Storm Effect
Create the pizza time effect
2025-09-22 23:02:14 +01:00

20 lines
338 B
Lua

EffectInfo = {
Name = "Pizza Time",
EffectId = "peds_pizzatime",
TimedType = "None",
EffectGroup = "_group_trafficspawner",
EffectCategory = "TrafficSpawner"
}
function OnStart()
bikeHash = GET_HASH_KEY("pizzaboy")
SetSurroundingPedsInVehicles(bikeHash, 0)
end
function OnStop()
end
function OnTick()
end