You tried adding:It seems to be a VFX added with the dlc. Trying to trigger it outside the zones and in the open world Steelport doesn't work.
EDIT:
The weird thing is that it does snow in the new zones though. I have a feeling that the snow VFX is actually part of the zone's czn/czh files.
Editing it like this:function dlc2_m01_start_player_snow()
for i,player in pairs(DLC2_M01_player_list) do
local looping = true
local attach_orient = false
effect_play_attached_to_camera(DLC2_M01_vfx.player_snow, looping, attach_orient, sync_from_player(player) )
end
end
and calling it, right?function dlc2_m01_start_player_snow()
local looping = true
local attach_orient = false
effect_play_attached_to_camera(DLC2_M01_vfx.player_snow, looping, attach_orient, sync_from_player(LOCAL_PLAYER) )
end
Last edited: