xboxscene.org forums

Pages: 1 ... 10 11 [12] 13 14

Author Topic: Hacking The Ms Xboxdash (news & How To's)  (Read 2286 times)

dlux

  • Archived User
  • Newbie
  • *
  • Posts: 17
Hacking The Ms Xboxdash (news & How To's)
« Reply #165 on: July 16, 2003, 08:31:00 AM »

CODE
function InitMemoryMenuItems()

3.) Paste over that whole function with:
       
CODE
function InitMemoryMenuItems()
{
   var c = theFilesMenu.children[0].children[0];
   var nTitle = c.theSavedGameGrid.curTitle;
   var nSavedGame = c.theSavedGameGrid.curGridItem;

   if (nTitle < 0)
   {
       // we have the device menu
       if (theMemoryMonitor.curDevUnit == 8)
       {
           // TODO: Hard drive menu
           nFileMenuItemCount = 0;
       }
       else
       {
           c.MenuItemText1.text = theTranslator.Translate("PERSONALIZE");
           c.MenuItemText2.text = theTranslator.Translate("FORMAT");
           nFileMenuItemCount = 2;
       }
   }
   else if (nSavedGame < 0)
   {
       // we have the title/soundtrack menu
       c.MenuItemText1.text = theTranslator.Translate("LOAD GAME");
       c.MenuItemText2.text = theTranslator.Translate("DELETE");
       nFileMenuItemCount = 2;
   }
   else
   {
       // we have the saved-game/song menu
       if (c.theSavedGameGrid.CanCopy())
       {
           c.MenuItemText1.text = theTranslator.Translate("COPY");
           c.MenuItemText2.text = theTranslator.Translate("DELETE");
           nFileMenuItemCount = 2;
       }
       else
       {
           c.MenuItemText1.text = theTranslator.Translate("DELETE");
           nFileMenuItemCount = 1;
       }
   }
}


4.) find:
     
CODE
function DoMemoryItemMenuCommand()


5.) paste over that function with:
     
CODE
function Startload()
{
   var c = theFilesMenu.children[0].children[0];
   var blah1 = c.theSavedGameGrid.curTitle;
   var strblah;
   strblah = c.theSavedGameGrid.GetTitleName(blah1);
   if (strblah == "Oddworld: Munch's Oddysee")//you can do this for games with wierd names
   {
      launch("default.xbe", "Device\\Harddisk0\\Partition6\\HDDLoader\\Oddworld");
   }
   else
   {
      launch("default.xbe", "Device\\Harddisk0\\Partition6\\HDDLoader\\" + strblah);//change path to where your games are
   }
}

function DoMemoryItemMenuCommand()
{
   var c = theFilesMenu.children[0].children[0];
   var nTitle = c.theSavedGameGrid.curTitle;
   var nSavedGame = c.theSavedGameGrid.curGridItem;

   if (nTitle < 0)
   {
       // we have the device menu
       if (theMemoryMonitor.curDevUnit == 8)
       {
           // TODO: Hard drive menu
       }
       else
       {
           if (nCurFileMenuItem == 0)
               ShowKeyboard(theTranslator.Translate("PERSONALIZE"), theMemoryMonitor.FormatDeviceName(theMemoryMonitor.curDevUnit), "theMemoryInline.children[0].FinishPersonalize()", "");
           else if (nCurFileMenuItem == 1)
               AskQuestion(theTranslator.Translate("Really format"), "theMemoryInline.children[0].FinishFormat()", "", 1);
       }
   }
   else if (nSavedGame < 0)
   {
       // we have the title/soundtrack collection menu
       if (nCurFileMenuItem == 1)
           StartDelete();
       else if (nCurFileMenuItem == 0)
    Startload();
   }
   else
   {
       // we have the saved-game/soundtrack menu
       if (c.theSavedGameGrid.CanCopy())
       {
           if (nCurFileMenuItem == 0)
               StartCopy();
           else if (nCurFileMenuItem == 1)
               StartDelete();
       }
       else
       {
           StartDelete();
       }
   }
}


6.) save, rebuild, resign.
7.) ftp to your exox, copy over the new default.xip, and your resigned xboxdash.xbe
8.) go to where ever your games are backed up, and change the names of the folders to match the title in the memory menu.
9.) thats it, you're done
Logged

dlux

  • Archived User
  • Newbie
  • *
  • Posts: 17
Hacking The Ms Xboxdash (news & How To's)
« Reply #166 on: July 16, 2003, 08:38:00 AM »

only bug so far is that games such as 007 NightFire that have trademark symbols cannot be loaded, I'm working on a way to fix that.

Sidenote: The msdash seems to be a much more powerful launcher than evox, Using this method I was able to launch a completely unpatched backup of Enter the Matrix.
Logged

caphex

  • Archived User
  • Newbie
  • *
  • Posts: 15
Hacking The Ms Xboxdash (news & How To's)
« Reply #167 on: July 16, 2003, 11:58:00 AM »

I KEEP getting error #21 when uploading the updated files using Winxap..

My dashdir is called xboxdashdata.10027100 and it's "clean".

What is the f***ing problem?

I'm getting a bit confused...

I have all files from xboxdashdata.10027100 in 1 dir + the xboxdash.xbe, program does say everything went well but nope I still get error 21..

please help..

I have a Pal box 1.1
Logged

Ev01vEd

  • Archived User
  • Newbie
  • *
  • Posts: 6
Hacking The Ms Xboxdash (news & How To's)
« Reply #168 on: July 16, 2003, 12:59:00 PM »

These dashboard hacks are amazing.  Here is what I am hoping to do.  I would like to have 4 main categories, being Games, Media Player, Xbox Live and Settings.  The Media Player button would launch XBMP right away.  I would like to have the Games category have a "settings" style menu.  Then I would like to put the Music and Memory options in the Settings category.  I'm pretty sure all this is possible it's just putting it all together.  Also I still want the options to shutdown using the remote and controller by hitting the B button.  Did anyone make a tutorial on doing this?  I've browsed the forums and the tutorials and did not find everything.

Thanks.
Logged

tayior7

  • Archived User
  • Full Member
  • *
  • Posts: 195
Hacking The Ms Xboxdash (news & How To's)
« Reply #169 on: July 16, 2003, 01:04:00 PM »

that could easily be done, what i would do if i were you is modify the dash with Xtechs tool first to make the XBMP button then modify the files yourself for menus for teh games and settings using dfunked's tutorial
Logged

ivota

  • Archived User
  • Newbie
  • *
  • Posts: 41
Hacking The Ms Xboxdash (news & How To's)
« Reply #170 on: July 16, 2003, 03:55:00 PM »

CODE

launch("default.xbe", "DeviceHarddisk0Partition6HDDLoader" + strblah);//change path to where your games are


It was not work, for me!!! But I changed...

launch("default.xbe", "DeviceHarddisk0Partition6HDDLoader" + strblah);//change path to where your games are ***   ----> write twice
Logged

BERSEX

  • Archived User
  • Newbie
  • *
  • Posts: 6
Hacking The Ms Xboxdash (news & How To's)
« Reply #171 on: July 16, 2003, 03:55:00 PM »

QUOTE (ivota @ Jul 16 2003, 11:14 PM)
QUOTE
Gcue I download Settings_Language_Config <------ok

My problem my xbox -----> NOT Reboot and NOT Shutdown
-------

function OnBDown()
{
AskQuestion("Do you really wish to Shutdown your Xbox?", "OnPower()", "", 1);
}

function OnPower() //Shutdown XBOX with Remote Control by dfunked
{
launch("Shutdown.xbe", "DeviceHarddisk0Partition2");


whare is the problem?


help my please 



You have to copy Shutdown.xbe and Reboot.xbe in your C.

Tanks...

please it encloses file sad.gif
Logged

Gcue

  • Archived User
  • Jr. Member
  • *
  • Posts: 63
Hacking The Ms Xboxdash (news & How To's)
« Reply #172 on: July 16, 2003, 10:41:00 PM »

New Dash Mod

Settings Style Submenu that goes to Music Style Launcher Menus

With Vulgusprofanums easy Config

Get It Here
Logged

Corvo

  • Archived User
  • Newbie
  • *
  • Posts: 14
Hacking The Ms Xboxdash (news & How To's)
« Reply #173 on: July 16, 2003, 11:29:00 PM »

Well, after two failed tries... (in creating the SaveGame->Launch button)
Try #1: Two buttons appear but no text (Launch, Delete)
Try #2: Main Memory option and Music option don't work

I got to a point where it looks promising...
Try #3: Everything works, though the games won't launch.


The first time I had no slashes in... the second time only one slash... the third time I had the double slashes in.
...so slowly but surely I'm getting the hang of this.


Question: Where-oh-where can I read a tutorial on how to make an extra main-menu button (when modding a non-live dashboard) ??
Logged

dfunked

  • Archived User
  • Hero Member
  • *
  • Posts: 635
Hacking The Ms Xboxdash (news & How To's)
« Reply #174 on: July 17, 2003, 01:13:00 AM »

there's no other way that i could think of to run the memory and music menus from the settings menu, without having the script call back to the mainmenu and then go to the correct menu.. this results in a split second black screen. each of the menu's has a positioning from the main screen, and you'll notice this when you're going back and forth through different menus..it is actually transitioning, but because it is having to move from the bottom right to the top left, the distance from the positions makes it appear as though it's gone black and the new menu will just appear out of nowhere...

i don't see a point in fixing something like that, because i find it a complete waste of time. better to get cracking on something more productive...
Logged

caphex

  • Archived User
  • Newbie
  • *
  • Posts: 15
Hacking The Ms Xboxdash (news & How To's)
« Reply #175 on: July 17, 2003, 01:56:00 AM »

I don't know what i'm doing wrong but nothing is working,

I tried to insert some xap files from a tutorial from http://www.download-...act=ST&f=3&t=49
but nope .. not working..

Even when I download the Livedash dir to my pc, resign all the files at once with winxip (Browse button) becauce when I want to open one single file, it doesn't add it in the "Xip File(s)" screen.

Then press resign, then upload it to my xbox again and I get Error 21 again!

I'm pulling my hair out right now because this doesn't work!!!!

I have the following files in the Xbox C root

Audio <dir>
fonts <dir>
xboxdashdata.10027100 <dir>
xodash <dir>
items.txt
settings_adoc.xip
XBox Book.xtf
Xbox.xtf
xboxdash.xbe


PLEASE HELP ME!!!
Logged

caphex

  • Archived User
  • Newbie
  • *
  • Posts: 15
Hacking The Ms Xboxdash (news & How To's)
« Reply #176 on: July 17, 2003, 05:16:00 AM »

YES! I found out how to make it work when you allways get error 21..

I reinstalled the C drive with the "Slayers_EvoX_Auto-Installer_V2.1_Final" ISO (just copy everything that's in de C directory to the C drive of the Xbox) then it's working...

Logged

brucett

  • Archived User
  • Full Member
  • *
  • Posts: 139
Hacking The Ms Xboxdash (news & How To's)
« Reply #177 on: July 17, 2003, 07:01:00 AM »

QUOTE
New Dash Mod

Settings Style Submenu that goes to Music Style Launcher Menus

With Vulgusprofanums easy Config

Get It Here


Looks great! One Prob Though

Edited the config.xap FINE, I copied over all the xap files to the respective xip ones resigning after completing each one, but now i have the problem when i launch the MS DASH from xboxdash.xbe the sytem reboots to the xbox logo and then back into evox. HELP! PLZ.
Logged

Xaddict2k2

  • Archived User
  • Full Member
  • *
  • Posts: 214
Hacking The Ms Xboxdash (news & How To's)
« Reply #178 on: July 17, 2003, 09:10:00 AM »

what partion is the f drive? I would like to make some links in my msdash, I know that the c drive is partion 2.
Thanks
Logged

tayior7

  • Archived User
  • Full Member
  • *
  • Posts: 195
Hacking The Ms Xboxdash (news & How To's)
« Reply #179 on: July 17, 2003, 09:12:00 AM »

c: \Device\Harddisk0\Partition2
d: \Device\Cdrom0
e: \Device\Harddisk0\Partition1
f: \Device\Harddisk0\Partition6
x: \Device\Harddisk0\Partition3
y: \Device\Harddisk0\Partition4
z: \Device\Harddisk0\Partition5
Logged
Pages: 1 ... 10 11 [12] 13 14