Hello there.
On a map I'm working on, I decided to add in some flyer domes. These work fine on CW, with the correct ones being shown, but when you get in to GCW you have flyers from both CW and from GCW. I have no idea why, as the CW ones aren't in the LUA for GCW. Does anyone have a solution for this?
Thanks.
Incorrect Flyer Domes
Moderator: Moderators
-
theultimat
- Lieutenant General

- Posts: 679
- Joined: Sun Apr 13, 2008 1:39 pm
- Location: UK
- Jendo7
- Sith

- Posts: 1304
- Joined: Wed Apr 01, 2009 6:37 pm
- Location: Cambridge, England.
- Contact:
Re: Incorrect Flyer Domes
I used the domes from ]v['s +123 source files: http://www.filefront.com/13913683/123_source_files.zip
All I did was place the msh and tga's in my side and called for them in my lua like so:
ReadDataFile("dc:SIDE\\bf2.lvl",
"all_fly_snowspeeder_dome",
"all_fly_xwing_dome",
"imp_fly_tiefighter_dome")
And added them to the worlds .sky file for example:
SkyObject()
{
Geometry("imp_fly_tiefighter_dome");
NumObjects(20);
Height(80, 140);
VelocityZ(80, 120);
VelocityY(-10, 10);
Distance(600);
InDirectionFactor(0.5);
}
I don't believe there in the core game, or the way there set up is not seperate from the cw era domes.
All I did was place the msh and tga's in my side and called for them in my lua like so:
ReadDataFile("dc:SIDE\\bf2.lvl",
"all_fly_snowspeeder_dome",
"all_fly_xwing_dome",
"imp_fly_tiefighter_dome")
And added them to the worlds .sky file for example:
SkyObject()
{
Geometry("imp_fly_tiefighter_dome");
NumObjects(20);
Height(80, 140);
VelocityZ(80, 120);
VelocityY(-10, 10);
Distance(600);
InDirectionFactor(0.5);
}
I don't believe there in the core game, or the way there set up is not seperate from the cw era domes.
- bobfinkl
- Rebel Colonel

- Posts: 593
- Joined: Sun Jul 13, 2008 9:01 am
- Projects :: Lots of unreleased stuff
- xbox live or psn: No gamertag set
- Location: The quaint little city gametoast.
Re: Incorrect Flyer Domes
No idea what you are talking about Jendo7, but TheUltimat it may be worth your while to get an error log and see if there is anything suspicious in it.
-
theultimat
- Lieutenant General

- Posts: 679
- Joined: Sun Apr 13, 2008 1:39 pm
- Location: UK
Re: Incorrect Flyer Domes
These are the only 2 dome related errors.
Code: Select all
Message Severity: 2
C:\Battlefront2\main\Battlefront2\Source\GameModel.cpp(221)
Model "rep_fly_assault_dome" already loaded in ather level file
Message Severity: 2
C:\Battlefront2\main\Battlefront2\Source\GameModel.cpp(221)
Model "rep_fly_gunship_dome" already loaded in ather level file- Jendo7
- Sith

- Posts: 1304
- Joined: Wed Apr 01, 2009 6:37 pm
- Location: Cambridge, England.
- Contact:
Re: Incorrect Flyer Domes
bobfinkl wrote:No idea what you are talking about Jendo7, but TheUltimat it may be worth your while to get an error log and see if there is anything suspicious in it.
Oh! Do I have the wrong end of the stick. I thought he wanted to have those flyer domes in his sky, like the gunship domes in geonosis, but GCW flyers instead.
-
theultimat
- Lieutenant General

- Posts: 679
- Joined: Sun Apr 13, 2008 1:39 pm
- Location: UK
Re: Incorrect Flyer Domes
Yeah, you do.Jendo7 wrote:bobfinkl wrote:No idea what you are talking about Jendo7, but TheUltimat it may be worth your while to get an error log and see if there is anything suspicious in it.
Oh! Do I have the wrong end of the stick. I thought he wanted to have those flyer domes in his sky, like the gunship domes in geonosis, but GCW flyers instead.
- Jendo7
- Sith

- Posts: 1304
- Joined: Wed Apr 01, 2009 6:37 pm
- Location: Cambridge, England.
- Contact:
Re: Incorrect Flyer Domes
The way I got GCW models in my sky only, was to put them in my side, as mentioned above. Apart from capital ship domes that didn't need to be put in a side. Just the fighter ships like x-wings or tiefighters.theultimat wrote:Yeah, you do.Jendo7 wrote:bobfinkl wrote:No idea what you are talking about Jendo7, but TheUltimat it may be worth your while to get an error log and see if there is anything suspicious in it.
Oh! Do I have the wrong end of the stick. I thought he wanted to have those flyer domes in his sky, like the gunship domes in geonosis, but GCW flyers instead.I meant I have the right dome models in CW, but in GCW I have CW & GCW models.
