Cojonudo NO15E.
En xload en la seccion de tutos hay un par de ellos interesantes que os pongo aqui, que he probado y funcionan
DVDX2 as you Default DVD Player .
In default.xip --> default.xap
This will launch DVDx2 instead of the MS DVD player on insertion of a DVD.
Search for "function OnDiscInserted()" and scroll down till
you see "else if (discType == "Video")" Replace the original function with this...
Code:
else if (discType == "Video")
{
launch( "default.xbe", "\\device\\harddisk0\\partition" );
}
just addon to the end of \\device\\harddisk0\\partition which partition and which folder DVDX2 is in...
Enable/disable autolaunching If you wish to enable/disable autoloading of video dvds/ games, heres how: Open up the default.xip/default.xap file.
Look for this:
Code:
else if (discType == "Video")
{
theLauncherLevel.GoTo();
}
and replace it with this:
Code:
else if (discType == "Video")
{
if(AutoLaunchDVD = "true")
{
theLauncherLevel.GoTo();
}
else if(AutoLaunchDVD = "false")
{
return;
}
}
Then find this code:
Code:
else if (discType == "Title")
{
theLauncherLevel.GoTo();
}
And replace with this:
Code:
else if (discType == "Title")
{
if(AutoLaunch = "true")
{
theLauncherLevel.GoTo();
}
else if(AutoLaunch = "false")
{
return;
}
}
Now, search for this:
Code:
var gamename;
var appname;
var emuname;
var dashname;
var password;
var nPsswrd;
var magicnumber;
var use5ButtonMainMenu;
var autoDvdx2;
var dvdx2path;
And add these variables under it:
Code:
var AutoLaunch;
var AutoLaunchDVD;
Next, search for this:
Code:
function OnYDown()
{
TellUser("Dash brought to you by Voltaic, Dunny, Gcue, NikeJustDoItOk?, Vulgusprofanum, Dfunked, Dlux, and a little help from MS!", "");
}
and add this under it:
Code:
function OnXDown()
{
theDiscDrive.LaunchDisc();
}
Then save the file. After that, open up the default.xip/config.xap and search for this:
Code:
// Set path to xbox media player
XBMPpath = "DeviceHarddisk0Partition1Utilitiesxbmp";
and add this under it:
Code:
AutoLaunchDVD = "false"; //Set to true/false to enable/disable auto launch for DVD Movies
AutoLaunch = "false"; //set to true/false to enable/disable auto launch for Games
save, re-insert, and resign.
Now just set whether you want the disks to autolaunch or not in the config file.
And to launch them, press X.
Los he probado por separado, y tiran los dos cambios. Un saludo
Credits go to quall & Sniperkilla from Xbox-Scene forums