The info in the .tdf files on the folder "download" is no longer beeing used, right?
Only using the section
[CANBUILD]
in SideData.tdf?
"SideData.tdf" and folder "Download"
Moderator: Moderators
- FoeOfTheBee
- Posts: 557
- Joined: 12 May 2005, 18:26
- PauloMorfeo
- Posts: 2004
- Joined: 15 Dec 2004, 20:53
Weird that both work.
When i coded the importing routines to import a mod from the files, i coded it so that it would check the data in sidedata.tdf as well as the tdfs in Download. But then i went to take a look at the data in Download and something was not right so i commented out the code so it doesn't reads that info anymore.
In XTA_se_v066, i found these 2 infos in Download:
ARMAAP.tdf
ARMAAP1.tdf
Not only is that redundant, defining the same thing, but when playing XTA_se, the ARM Advanced Airplant does not builds the Seaplane Constructor. So i assumed that it didn't read that data. Also considering that the entried in Download are related to the old TA GUI where Spring has a new GUI where that info may not be apliable.
Anyway, the code is there. I guess i will just uncoment it and, whoever is trying to import a mod from the files should take care of not having redundant information in there.
When i coded the importing routines to import a mod from the files, i coded it so that it would check the data in sidedata.tdf as well as the tdfs in Download. But then i went to take a look at the data in Download and something was not right so i commented out the code so it doesn't reads that info anymore.
In XTA_se_v066, i found these 2 infos in Download:
ARMAAP.tdf
Code: Select all
[MENUENTRY1]
{
UNITMENU=ARMAAP;
MENU=2;
BUTTON=5;
UNITNAME=ARMSEAP;
}
[MENUENTRY2]
{
UNITMENU=ARMAAP;
MENU=3;
BUTTON=1;
UNITNAME=ARMSEHAK;
}
Code: Select all
[MENUENTRY1]
{
UNITMENU=ARMAAP;
MENU=2;
BUTTON=5;
UNITNAME=ARMSEAP;
}
[MENUENTRY2]
{
UNITMENU=ARMAAP;
MENU=3;
BUTTON=1;
UNITNAME=ARMSEHAK;
}
...
Anyway, the code is there. I guess i will just uncoment it and, whoever is trying to import a mod from the files should take care of not having redundant information in there.