Dynaverse.net

Taldrenites => Starfleet Command Mission Scripting => Topic started by: Stealth on June 16, 2006, 10:31:37 am

Title: SFC3 Mission script problems - Teaminfo.cpp is causing the problem.
Post by: Stealth on June 16, 2006, 10:31:37 am
Hello everybody, when I try out missions like the Meta_Scan and Pelican's Survey mission, then I get a assertion failed. Basically what that means is that the planet/planets won't show up in the misson if I ingored the assertion failed.

The assertion failed report says that "teaminfo.cpp" is causing the problem on line 421. When I go and check the problem then I get this data

if( Info.fSelectedClassType == kNoClassType )
{
// Ship was not created
Assert( false );                          <- Line 421
return kFalse;
}

I got no clue what that means. I hope it is not a hardcoded problem, if so, these type of missions to the Sci-Fi Wars mod in association with S31-IKS fleet has to be scrapped.

So, can anybody help? please?

<S>
Title: Re: SFC3 Mission script problems - Teaminfo.cpp is causing the problem.
Post by: S31-Riptide on June 16, 2006, 04:53:48 pm
can you open that in your VC++ and post what line 421 is... that would help greatly
Title: Re: SFC3 Mission script problems - Teaminfo.cpp is causing the problem.
Post by: Stealth on June 20, 2006, 10:45:52 am
I can't compile the scriptinterface project completely, missing files and you need access to q3 file, so it is hardcoded then. Damn Activision. O well, I have to put aside all mission scripts refering to this problem, assertion failure at line 421 in teaminfo.cpp

if( Info.fSelectedClassType == kNoClassType )
{
// Ship was not created
Assert( false );                          <- Line 421
return kFalse;
}

<S>