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

Missing textures

  • Thread starter Thread starter GHD
  • Start date Start date

GHD

Messages
12,244
Country
england
I added the line "ShowMissingTextureAlert=1" to the [Scenery] section of FSX.CFG and found that many of my AI aircraft had missing textures. Is there a tool which will scan .mdl files and report missing textures? I have tried FSLibScan but this seems to scan only scenery bgls and not aircraft

George
 
Hi George,

I have never seen such a tool, maybe another forum member has.

Else, I might be able to create something for you. While exploring the new FsX MDL format I have made some test tools to dump information about a MDL file. That includes the used textures as well.
 
Hi Arno,

I think such a tool would be appreciated by many. FSX must waste a lot of resources by continually trying to find textures that are not present.

George
 
There is such a tool ;)

It is freeware, goes by the name of FlightSim Manager Version 2.8 from Rana Hossain. Sadly it is abandoned since a long time, and Rana has implemented a end of life function for November 30, 2006. The result is, that the version you can download from avsim (site is down, so no link) will not start.

The solution is to start it with a small script that saves the current date/time, sets an old date, starts the tool and restores the current date. You can download the script from avsim as well, but it prepared to work with the English date delimiters.

This version works for me:

Code:
@echo off
REM Get useful date out of Windows XP
REM Set to same date in year 2005 ver 1.0

REM Set a local scope for the following variables
setlocal

for /F "tokens=1-4 delims=." %%i in ('date /t') do (
   set Month=%%j
   set Day=%%i
   set Year=%%k
)

echo.
echo.
echo Datum: %Day%.%Month%.%Year%
echo.

date %Day%.%Month%.2005
start FlightSimManager.exe
sleep 10
date %Day%.%Month%.%Year%


REM End the local scope for variables
endlocal

The program will check one or all aircrafts for missing textures / gauges / sounds and does a dozen other useful things as well. Beware, it's a powerful tool which can do harm if misused ;)
 
Thanks Martin but that tool does not check the .mdl file for required .bmps it just checks the texture folders specified in the .cfg.

George
 
Back
Top