Jump to content
Sign in to follow this  
marki980908

Localised colored smoke/fog/smog

Recommended Posts

Spoiler

image.png

I am looking for a script that could do something like this, but yellow. And maybe a little bit higher.
Situation: I am making a mission and a certain area of the map, needs to be "contaminated".

Share this post


Link to post
Share on other sites

Experiment,

Experiment,

Experiment.

 

Every type of bullet in the game has a class name.  Every hand grenade, every mortar round, every bomb, every tank round, all aircraft ordinanc, every rocket has a class name.  See class names at the link:

 

https://community.bistudio.com/wiki/Arma_3:_Assets

 

 

 

How to make a trip flare (in the dark)

= = = = = = = = = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

Create a trigger and:

flare = "F_40mm_White" createVehicle [getPos (thislist select 0) select 0, getPos (thislist select 0) select 1,150];

 

 

How to use a trigger to fire smoke

= = = = = = = = = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

Create a trigger and:

smokeshell = "G_40mm_Smoke" createVehicle [getPos (thislist select 0) select 0, getPos (thislist select 0) select 1,150];

 

 

In both examples above:  “150”  is meters above ground level.  Smoke is best at “25”.  Can also be used for mortar shells, aircraft bombs, satchel charge, or even individual bullets. Try sheperding your men through a mortar attack. 

 

===========================================================================================

It is not just smoke grenades that produce smoke.  There is also mortar smoke shells and artillery smoke shells.  They produce more smoke! Just find the class names.

 

Now that you have your green smoke, set the wind to NIL so it does not blow away.

You will need more than one smoke shell, so place a few of them around.

 

The smoke will dissipate so you need to fire the smoke shells over and over again. To achieve this, place a man over on the side of the map on a level road. He will run through a trigger turn around and run back again. Every time he runs through the trigger he fires the trigger  and you get a new smoke shell.  If you need 10 smoke shells then set up 10 men with 10 triggers.

 

Experiment

Experiment

Experiment

 

 

 

 

 

 

 

 

 

 

 

Share this post


Link to post
Share on other sites
10 hours ago, Joe98 said:

Experiment,

Experiment,

Experiment.

 

Every type of bullet in the game has a class name.  Every hand grenade, every mortar round, every bomb, every tank round, all aircraft ordinanc, every rocket has a class name.  See class names at the link:

 

https://community.bistudio.com/wiki/Arma_3:_Assets

 

 

 

How to make a trip flare (in the dark)

= = = = = = = = = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

Create a trigger and:

flare = "F_40mm_White" createVehicle [getPos (thislist select 0) select 0, getPos (thislist select 0) select 1,150];

 

 

How to use a trigger to fire smoke

= = = = = = = = = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

Create a trigger and:

smokeshell = "G_40mm_Smoke" createVehicle [getPos (thislist select 0) select 0, getPos (thislist select 0) select 1,150];

 

 

In both examples above:  “150”  is meters above ground level.  Smoke is best at “25”.  Can also be used for mortar shells, aircraft bombs, satchel charge, or even individual bullets. Try sheperding your men through a mortar attack. 

 

===========================================================================================

It is not just smoke grenades that produce smoke.  There is also mortar smoke shells and artillery smoke shells.  They produce more smoke! Just find the class names.

 

Now that you have your green smoke, set the wind to NIL so it does not blow away.

You will need more than one smoke shell, so place a few of them around.

 

The smoke will dissipate so you need to fire the smoke shells over and over again. To achieve this, place a man over on the side of the map on a level road. He will run through a trigger turn around and run back again. Every time he runs through the trigger he fires the trigger  and you get a new smoke shell.  If you need 10 smoke shells then set up 10 men with 10 triggers.

 

Experiment

Experiment

Experiment

 

 

 

 

 

 

 

 

 

 

 

That sounds overly complicated, I have found some localised fog scripts by ALIAS, but I remember there being a simpler way. Thanks for help anyway

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×