Jump to content

How to edit main menu?


PiQUNICO

Recommended Posts

Hello...i have one question.

 

 

How can I edit main menu???

 

 

 

I want to delete selections like 'downloads' and 'live'.But I can't find how to delete them.

 

In TES IV i know how to make that, but in fallout is something different so i can't find how to make this....

 

 

Please help ;)

Link to comment
Share on other sites

@alexandersig:

The question of whether or not a mod should be made is one that should never be asked. The only relevant question is how it might be made. While I agree that things like this are much easier to "solve" by simple avoidance than by actually removing the feature, the information of how to edit this section of Fallout 3 could still be very useful for other things as well.

 

@PiQUNICO:

As far as I know, all menus within Fallout 3 are defined by various XML files that can be found within the "menu" directory within your data folder. I'm not sure which of these files are relevant to the main menu, but if you make some experimental changes hopefully you'll be able to figure out how to do what you want. Make sure to back the files up beforehand, of course.

 

Cipscis

Link to comment
Share on other sites

Also, if you haven't already, go and download the Live Disabler from the files section, Live is bloatware in the extreme and should be killed mercilessly. Incidentally, there is already a mod in the files section that removes the Live button. This piece of code controls that:

 

<!-- Hides "LIVE" Button, thanks to DarN -->
<_isLIVE>
<copy src="parent()" trait="childcount" />
<eq> 10 </eq> <!-- DarN MainMenu -->
<or>
	<copy src="parent()" trait="childcount" />
	<eq> 9 </eq> <!-- DarN PauseMenu -->
</or>
<and>
	<copy src="me()" trait="listindex" />
	<eq> 5 </eq>
</and>
</_isLIVE>

<visible>
   <copy> &true; </copy>
       <not src="me()" trait="_isLIVE" />
</visible>

 

... which is found in Menus\Options\start_menu.xml (this is from the mod I just linked).

 

I wouldn't try copy/pasting that directly though, for all I know there's other stuff in the file that's needed for it to work properly, I'm really just pointing you in the (hopefully) right direction :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...