• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Please help afturburn effects problem

Messages
4
Country
yugoslavia
Good day everyone. I'm trying to create an afterburn effect on a two-engine plane. I tried everything possible but I only managed to insert the afterburn effect in the section where the lights are and I can activate it with the letter l on the keyboard. How to make effect run over a troll stick not with letter l for lights.Thank you very musch and sorry for my bad english.
 
Sorry, only seeing it now.....You can also use a smoke effect via xml script!
Here is an Example for a fuel dump effect working in FSX:

Code:
  <Element>
    <Select>
      <Value>
          (A:FUEL DUMP SWITCH,bool) 0 == if{ 7 (>K:SMOKE_OFF) 8 (>K:SMOKE_OFF) }
          (A:FUEL DUMP SWITCH,bool) 1 == if{ 7 (>K:SMOKE_ON) 8 (>K:SMOKE_ON) }
      </Value>
    </Select>
  </Element>

aircraft.cfg:

Code:
[smokesystem]
smoke.1 =  -50.0, -19.0,  0.0, fx_engsmoke
smoke.2 =  -50.0, -19.0,  0.0, fx_engsmoke
smoke.3 =  -50.0, -15.0, 0.0, fx_engsmoke
smoke.4 =  -50.0, 15.8, 0.0, fx_engsmoke
smoke.5 =  -50.0, 19.8,  0.0, fx_engsmoke
smoke.6 =  -50.0, 19.8,  0.0, fx_engsmoke
smoke.7=   -55.0,  39.0,  0.0, fx_fueldump          //!         
smoke.8=   -55.0, -39.0,  0.0, fx_fueldump          //!
smoke.9 =  -50.0, -19.0, -2.0, fx_OilLeak
smoke.10 = -50.0, -15.0, -2.0, fx_OilLeak
smoke.11 = -50.0,  15.8, -2.0, fx_OilLeak
smoke.12 = -50.0,  19.8, -2.0, fx_OilLeak

I show the other effects here only that you can see that multiple effects in this section are possible! Hope it helps!
 
Back
Top