From 0f48341ad741ad282a8fe2668c6153fc6aa82d7c Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Tue, 23 Sep 2025 01:31:24 +0100 Subject: [PATCH] Delete Peds/PedsClowiningAround.lua --- Peds/PedsClowiningAround.lua | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 Peds/PedsClowiningAround.lua diff --git a/Peds/PedsClowiningAround.lua b/Peds/PedsClowiningAround.lua deleted file mode 100644 index e71651d..0000000 --- a/Peds/PedsClowiningAround.lua +++ /dev/null @@ -1,26 +0,0 @@ -EffectInfo = { - Name = "Clowning Around", - EffectId = "peds_clowningaround", - TimedType = "None", - EffectGroup = "_group_trafficspawner", - EffectCategory = "TrafficSpawner" - -} - -function OnStart() - clownVanHash = GET_HASH_KEY("speedo2") - SetSurroundingPedsInVehicles(clownVanHash, 0) - - playerPed = PLAYER_PED_ID() - - coords = GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(playerPed, 0, 10, 0) - heading = GET_ENTITY_HEADING(playerPed) - van = CreateTempVehicle(clownVanHash, coords.x, coords.y, coords.z, heading) - TASK_WARP_PED_INTO_VEHICLE(playerPed, van, -1) -end - -function OnStop() -end - -function OnTick() -end