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

API tweak

Messages
4
Hello all , I `d like to tweak a 3rd party api macro that I`ve downloaded , the thing is I don`t remotely know how , I just want to have some flashing lights off the API , do I have to open notepad ...then what !!!!
if smone knows thanks in advance
 
Hi,

Do you want to remove the lights? In that case I would look for the Light command (if that is there in the API, older macros might also use the Dot command). You can comment out a line by placing a ; in front, so then you can test if you removed the correct command.
 
Thanks for replying Arno , by the way many thanks for the autogen apis convertion, they were extremely useful ( and all the utilities u made ) ,those autogen man, they still rock !

Now, this API , the thing is should I use SCASM.exe ? it makes a bgl and I dont want that , now...I change the code line, OK then how do I make the api so I can open it with Airport ? Airport-readable ,when I change the code they have the .txt extension , I changed it to .api but didnt work , now what step am I missing out
It may sound very basic for programmers , I really don`t know how to code

also, is there any way to ``load`` with EOD , a macro made with EOD ?
it would be better to tweak it there


any ideas thanxs
 
First of all, You don't need to change the file extension. Right click on the *.api file and then use open, wins will ask You what to do - choose select a program from the list and choose Notepad.exe.

Secondly- I don't bielieve the EOD has the capability of opening the *.api, so
this is not a solution for You.

If Your *.api cannot be selected in any scenery design tool or won't show up in the screen(Airport for windows, FSSC) check the begining of the code for this lines:

;MACRODESC "some text that describes the macro"
;DEFAULTSCALE 0.10
;DEFAULTPARAMS "definition of textures here", , , , , , , ,
;PARAMDESCR Wall texture, Outer front-back wall tex, Inner front-back wall tex, , , , , , , ,
;DEFAULTRANGE 3000
;DEFAULTDENSITY VERY SPARSE
;TEXTURES "another definition of textures here"
;DESIGNSHAPELINES -120, -100, -120, 100, -120, 100, 120, 100, 120, 100, 120, -100, 120, -100, -120, -100,
;=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
;VODDATA Latitude Longitude Range Scale Rotation Wall_texture Outer_front_texture Inner_front_texture Not_used Visibility Altitude Scenery_complexity(0-5) Not_used Not_used

Hope this helps . . .
 
Back
Top