Jump to content
sizraide

Create large white smoke

Recommended Posts

Hello, i'm creating a COOP mission where they fight AI in an urban environment

I was wondering if their is a way I can create bigger white smoke grenades? Is there a way to increase the particle size or effect?
 

Quote

{

    Smoke="SmokeShell" createVehicle (getPos _x);

} forEach [red, red_1, red_2, red_3, red_4, red_5, red_6];

 

This is the script i'm using for now

Share this post


Link to post
Share on other sites

Hey @sizraide, give this a try;
 

{
	_smoke = "SmokeShellArty" createVehicle (getPos _x);
	_smoke hideObjectGlobal true;	//	Hide the smoke shell - Optional.
} forEach [red, red_1, red_2, red_3, red_4, red_5, red_6];

 

Edited by Maff
hideObjectGlobal
  • Like 2

Share this post


Link to post
Share on other sites
2 hours ago, Maff said:

Hey @sizraide, give this a try;
 


{
	_smoke = "SmokeShellArty" createVehicle (getPos _x);
	_smoke hideObjectGlobal true;	//	Hide the smoke shell - Optional.
} forEach [red, red_1, red_2, red_3, red_4, red_5, red_6];
 

 


Thanks! It works.

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

×