Added effect + Modified 'Snow Storm' Effect
Changes to be committed: new file: Peds/PedsMillenials.lua modified: Weather/WeatherTrueSnow.lua
This commit is contained in:
22
Peds/PedsMillenials.lua
Normal file
22
Peds/PedsMillenials.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
EffectInfo = {
|
||||
Name = "Millenials",
|
||||
EffectId = "peds_millenials",
|
||||
TimedType = "Normal",
|
||||
EffectGroup = "None",
|
||||
EffectCategory = "None"
|
||||
|
||||
}
|
||||
|
||||
function OnStart()
|
||||
end
|
||||
|
||||
function OnStop()
|
||||
end
|
||||
|
||||
function OnTick()
|
||||
for _, ped in ipairs(GetAllPeds()) do
|
||||
if ped ~= PLAYER_PED_ID() and IS_PED_RUNNING_MOBILE_PHONE_TASK(ped) == false and IS_PED_IN_ANY_VEHICLE(ped, false) == false then
|
||||
TASK_USE_MOBILE_PHONE(ped, 1, 2)
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user