Main Menu
The Game
Modding
Forums
Affiliates Affiliate
Affiliate
Affiliate
Link to Us

RSS Feeds
Site Stats
Topsites Mod DB Top 100

Rotors
GamesModding.com Link Rotor

Removing the Opening Logos
» Added February 21, 2006 | Written by Lord Of Gifts

Tools Needed:


To start, extract Config.meg. This will create SCRIPTS and XML folders in your GameData\Data\ directory. Navigate to the XML directory and open MOVIES.XML. Right at the top of the file you will find:
Code(MOVIES.XML):
<Movie_Name="Logo 1">
       <Movie_File>Data\Art\Movies\Binked\LucasArtsLogo.bik</Movie_File>
       <Cannot_Skip>true</Cannot_Skip>
</Movie>

<Movie_Name="Logo 2">
       <Movie_File>Data\Art\Movies\Binked\PetroglyphLogo.bik</Movie_File>
       <Cannot_Skip>false</Cannot_Skip>
</Movie>
As you can probably tell by the Movie Name line these are the logo movies. To disable the logos all you have to do is add a <!-- before the first movie and an --> after the last. Your code should then look like this:
Code(MOVIES.XML):
<!--<Movie Name="Logo1">
       <Movie_File>Data\Art\Movies\Binked\LucasArtsLogo.bik</Movie_File>
       <Cannot_Skip>true</Cannot_Skip>
</Movie>

<Movie_Name="Logo 2">
       <Movie_File>Data\Art\Movies\Binked\PetroglyphLogo.bik</Movie_File>
       <Cannot_Skip>false</Cannot_Skip>
</Movie>-->
What the<!-- and --> tags do is make the text in between them a comment. Comments do nothing in the game and are usually used to document code.
Save the file, and the next time you start the game the opening logos will no longer play.

If you still want the option to view the logos, but just want to be able to skip the LucasArts one, simply change
Code:
<Cannot_Skip>true</Cannot_Skip>
to
Code:
<Cannot_Skip>false</Cannot_Skip>
in the code for Logo 1.


Link To This Tutorial: [tut=5]Removing the Opening Logos[/tut]