Re: StarBlazers Mod
Campeador I figured out how to fix your ships so they can be starting player ships. Let me know what ships you would want as a player starting ship, some of the fighters come to mind and I will provide a download for them. Or if you want to fix them it is an easy fix by opening the xfile and C&P the bitmap texture to the materials that have a unassigned or default textures to them. An example below is taken from part of the xfile.
From the fighter arrowlet:
Material {
1.000000;1.000000;1.000000;1.000000;;
128.000000;
0.000000;0.000000;0.000000;;
0.000000;0.000000;0.000000;;
TextureFilename {
"Unassigned";
}
}
Material {
0.878431;0.878431;0.878431;1.000000;;
33.000000;
1.000000;1.000000;1.000000;;
0.878431;0.878431;0.878431;;
TextureFilename {
" -- default --";
}
}
Material {
1.000000;1.000000;1.000000;1.000000;;
128.000000;
0.000000;0.000000;0.000000;;
0.000000;0.000000;0.000000;;
TextureFilename {
"RP08.bmp";
}
}
}
}
From the fixed xfile fighter Arrowlet:
Material {
1.000000;1.000000;1.000000;1.000000;;
128.000000;
0.000000;0.000000;0.000000;;
0.000000;0.000000;0.000000;;
TextureFilename {
"RP08.bmp";
}
}
Material {
0.878431;0.878431;0.878431;1.000000;;
33.000000;
1.000000;1.000000;1.000000;;
0.878431;0.878431;0.878431;;
TextureFilename {
"RP08.bmp";
}
}
Material {
1.000000;1.000000;1.000000;1.000000;;
128.000000;
0.000000;0.000000;0.000000;;
0.000000;0.000000;0.000000;;
TextureFilename {
"RP08.bmp";
}
}
}
}
|