Jump to content
Sign in to follow this  
kerozen

Attach Smoke to planes

Recommended Posts

I'm looking for a script that attaches colored smoke to a plane like in airshows, i've looked everywhere but i can't find anything about it. I'm maybe just a really bad searcher

Share this post


Link to post
Share on other sites

Pointing out the obvious,

have you tried entering the thread title into google and adding arma 3 to it?

 

Cheers

  • Like 1

Share this post


Link to post
Share on other sites

Commands used

selectRandom

createVehicle

attachTo

 

Information used

Smoke ammo classnames (search for "SmokeShell", 4th column)

Assuming your plane already exists:

_smoke = selectRandom ["","Red","Green","Yellow","Purple","Blue","Orange"];
_smoke = createVehicle ["SmokeShell"+_smoke, [0,0,0], [], 0 , ""];

_smoke attachTo [_plane, [0,0,0]];
If you wanted this effect to last forever, you could use a loop to re-add a smokeshell every time the existing one becomes null.
  • Like 1

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  

×