xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 Forum Rules Rules
 
Reply to this topicStart new topic
> Code To Get 2 Memory Menus...sweet!, Auto Launch Menu
BobMcGee
post Sep 18 2003, 12:23 PM
Post #1


X-S Member
*

Group: Dev/Contributor
Posts: 114
Joined: 29-November 02
Member No.: 10926
Xbox Version: unk
360 version: unknown



Ok...I think this is a really sweet feature. The following code will allow you to add multiple memory menus (the one with the saved game icons). On my xbox I have one that I left in the original state and one that is modified to launch things only...that way my friends don't erase my saves or cause some other catastrophy...JbOne and Gcue gave me the info to help me debug this...couldn't have done anything without their hard work.

This process is, basically, 7 steps, and they are assuming that you are using the EasyMusicConfig type setup...you can modify this to work with JbOne's autofill dash, etc...:

1) Open the default.xip--->default.xap and add the following DEF. You can replace the word Games with whatever you want as long as you are consistent. Additoinally you can rename the Games3.xap to whatever you want to call the copy of the memory menu:

CODE
DEF theGamesInline Inline
{
  visible false
  url "Games3.xap"

  function onLoad()
  {
      theGamesInline.children[0].theGamesMenu.GoTo();
  }
}

function GoToGames()
{
  if (theGamesInline.visible)
      theGamesInline.children[0].theFileMenu.GoTo();
  else
      theGamesInline.visible = true;
}


2) In default.xip-->default.xap search for the following line. There should be 4 or 5 to replace:

CODE
if ( MainMenuLaunch4 == 8 )


replace this if statement with

CODE
if ( MainMenuLaunch4 == 8 )
          {
           theGamesMenuIn.Play();
           GoToGames();
          }


3) Open the config.xap file. Change the XBMP tab to read GAMES and assign this tab to function 8 if it is not already. Save. Reinsert. Save



4) Copy the file default.xip-->memory3.xap and rename the copy to games3.xap.

5) Open games3.xap and search for default.xap. There should be two...the second one is memory_files2/default.xap. change to default2.xap. Save. Reinsert. Save.

6) Open memory_files2, extract default.xap copy it...rename the copy to default2.xap...reinsert...save.

7)Resign the dash and if you did everything correctly it should load**

**Note this will just give you 2 copies of the memory menu in their original state. You can alter the games3.xap to load games by following dlux's tutorial in the pinned section (Codes only). It is also very easy to erase the delete function. Additionally, it is possible to customize the crap out of this launch menu...trust me...but it's not my code to release so try experimentation for now.

Hope this little information helps you out.

Peace,

BobMcGee

This post has been edited by BobMcGee: Sep 18 2003, 12:26 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
RuStY9
post Sep 18 2003, 04:29 PM
Post #2


X-S Young Member
*

Group: Members
Posts: 50
Joined: 18-July 02
Member No.: 1829



pretty cool man, nice work tongue.gif

Rus^t
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 24th May 2013 - 06:55 PM