• 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.

FS2004 SCASM removing red/green end lights?

Messages
585
Country
unitedstates
Here is a picture of my lights, I made my own custom ones in Gmax that look pretty decent, but with the SCASM code it makes theses default runway end lights. Is there a way to get rid of them but still keep the lights?

scasm.jpg


Code:
;---------------------------------------------------------------------------
;  SCASM file generated by Airport Freeware Version 3.0 Build 192 for FS 2004
; KIWA.SCA  Wednesday, April 06, 2011  -  2:38:01 PM
;---------------------------------------------------------------------------
;  MagVar = -12.3
;---------------------------------------------------------------------------

Set(  FSVERS 0x800 ) 
Set( BUF 1024 )
Set( areamx 1024 )
Set( LINBUF 2048 )

Header(       1     33.43283   33.18283   -111.78047   -111.53047   )

LatRange(     33.18283   33.43283   )

Copyright( "Ryan [Freeware Version 3.0 Build 192]" )



; FS2000 runway  12R
; [using newer SCASM Runway command for FS2K & beyond]

Area( 5  33:18.4480  -111:39.6653  30 )
    Smoothing ( 1 ) 
    Runway(   33:18.4480 -111:39.6653 
      Altitude    421.2
      Heading     135.64
      Length      10405
      Width       155
      Id          12R
      Surface     -1
      Markers     0
      THRESHOLD    0
      Lights      6
      ThrLightsN  00
      ThrLightsF  00
      )
    Smoothing ( 0 ) 
EndA


Area( 5  33:18.4629  -111:39.2681  30 )
    Smoothing ( 1 ) 
    Runway(   33:18.4629 -111:39.2681 
      Altitude    421.2
      Heading     135.65
      Length      10205
      Width       155
      Id          12C
      Surface     -1
      Markers     0
      THRESHOLD    0
      Lights      6
      VasiBarsN   8
      VasiSlopeN  3
      VasiSpaceN  300
      VasiDistN   4352
      VasiSideN   L95
      VasiBarsF   8
      VasiSlopeF  3
      VasiSpaceF  300
      VasiDistF   4402
      VasiSideF   L95
      AprLN       8
      StrobesN    5
      ThrLightsN  04
      ThrLightsF  00
      )
    Smoothing ( 0 ) 
EndA



Area( 5  33:18.5077  -111:39.0450 30 )
    Smoothing ( 1 ) 
    Runway(   33:18.5077 -111:39.0450
      Altitude    421.2
      Heading     135.66
      Length      9305
      Width       155
      Id          12L
      Surface     -1
      Markers     0
      THRESHOLD    0
      Lights      6
      ThrLightsN  00
      ThrLightsF  00
      VasiBarsN   8
      VasiSlopeN  3
      VasiSpaceN  300
      VasiDistN   3902
      VasiSideN   L95
      VasiBarsF   8
      VasiSlopeF  3
      VasiSpaceF  300
      VasiDistF   3902
      VasiSideF   L95
      )
    Smoothing ( 0 ) 
EndA

Thanks, Ryan
 
Messages
454
Country
england
Hi Ryan,

If you are talking about runway 12C then try changeing ThrLightsN 04 to ThrLightsN 00

David
 
Messages
454
Country
england
Another thought, have you turned the runway end lights off in the AFCAD?

David
 
Messages
585
Country
unitedstates
Yeah everything is off, I talked with a friend and he told me that this was hardcoded into SCASM and it could not be removed. He recomended that I removed the BGL light and keep the gmax model so that makes alot of sense.
Thanks for all your help!

Ryan
 

arno

Administrator
Staff member
FSDevConf team
Resource contributor
Messages
31,944
Country
netherlands
Hi,

I think it could indeed be that some of the those lights are linked to the runway centre lights. If you disable those the threshold lights might also be gone. But then there is not much purpose for the SCASM runway at all anymore I guess :).
 
Top