| Line 525... |
Line 525... |
| 525 |
printf ( "Script Type: Patch Mod\n" );
|
525 |
printf ( "Script Type: Patch Mod\n" );
|
| 526 |
else if ( pSpkFile->IsCustomStart() )
|
526 |
else if ( pSpkFile->IsCustomStart() )
|
| 527 |
printf ( "Script Type: Custom Start\n" );
|
527 |
printf ( "Script Type: Custom Start\n" );
|
| 528 |
else if ( pSpkFile->IsPackageUpdate() )
|
528 |
else if ( pSpkFile->IsPackageUpdate() )
|
| 529 |
printf ( "Script Type: Package Update\n" );
|
529 |
printf ( "Script Type: Package Update\n" );
|
| 530 |
else if ( !pSpkFile->GetScriptTypeString(44).Empty() )
|
530 |
else if ( !pSpkFile->GetScriptTypeString(44).empty() )
|
| 531 |
printf ( "Script Type: %s\n", pSpkFile->GetScriptTypeString(44).c_str() );
|
531 |
printf ( "Script Type: %s\n", pSpkFile->GetScriptTypeString(44).c_str() );
|
| 532 |
|
532 |
|
| 533 |
if ( !pSpkFile->GetWaresList()->empty() )
|
533 |
if ( !pSpkFile->GetWaresList()->empty() )
|
| 534 |
{
|
534 |
{
|
| 535 |
for ( CListNode<SWares> * wNode = pSpkFile->GetWaresList()->Front(); wNode; wNode = wNode->next() )
|
535 |
for ( CListNode<SWares> * wNode = pSpkFile->GetWaresList()->Front(); wNode; wNode = wNode->next() )
|
| Line 552... |
Line 552... |
| 552 |
for ( int i = 0; i < pBaseFile->GetMaxWebMirrors(); i++ )
|
552 |
for ( int i = 0; i < pBaseFile->GetMaxWebMirrors(); i++ )
|
| 553 |
printf ("\t%s\n", pBaseFile->GetWebMirror(i).c_str());
|
553 |
printf ("\t%s\n", pBaseFile->GetWebMirror(i).c_str());
|
| 554 |
}
|
554 |
}
|
| 555 |
if ( pSpkFile )
|
555 |
if ( pSpkFile )
|
| 556 |
{
|
556 |
{
|
| 557 |
if ( (!pSpkFile->GetOtherName().Empty()) && (!pSpkFile->GetOtherAuthor().Empty()) )
|
557 |
if ( (!pSpkFile->GetOtherName().empty()) && (!pSpkFile->GetOtherAuthor().empty()) )
|
| 558 |
printf ( "Script is a child to the mod: %s by %s\n", pSpkFile->GetOtherName().c_str(), pSpkFile->GetOtherAuthor().c_str() );
|
558 |
printf ( "Script is a child to the mod: %s by %s\n", pSpkFile->GetOtherName().c_str(), pSpkFile->GetOtherAuthor().c_str() );
|
| 559 |
}
|
559 |
}
|
| 560 |
|
560 |
|
| 561 |
if ( pBaseFile->AnyDependacies() )
|
561 |
if ( pBaseFile->AnyDependacies() )
|
| 562 |
{
|
562 |
{
|