How would you then go about using BOTH mods when playing?
Interesting point.
Have y'all noticed that INIs are loaded sequentially and also that data in INIs is also loaded sequentially and not randomly (unlike usual ini files)? This whole ini system reminds of a database with INI files being tables. The engine must load all files and only then it can find data it needs.
I have this little untested theory.
ships = shiparch.ini ;<--------- original ships defined here
ships = mymod_shiparch.ini ;<------------- contains ONLY tweaked Sabre
ships = yourmod_shiparch.ini ;<------------contains ONLY tweaked Titan
will load just fine (I think) and you will have both tweaked ships in game.
ships = mymod_shiparch.ini ;<------------- contains ONLY tweaked Sabre
ships = shiparch.ini ;<--------- original ships defined here
ships = yourmod_shiparch.ini ;<------------contains ONLY tweaked Titan
this config will only have tweaked Titan because Sabre in shiparch.ini will overwrite Sabre in mymod_shiparch.ini
Edited by - XLancer on 10-03-2003 16:59:28