Help - Search - Members - Calendar
Full Version: How Do U Disable The Stupid 'unrecognized Disc'
Scenyx Entertainment Community > Xbox1 Forums > Dashboard Forums > Official Team UIX Forums > User.Interface.X (UIX) Code
uschardcore
also i have autostart disabled but dvd's still auto run. what gives?
Dazza
If you mean when you turn it on the xbox then open default.xip / default.xap and look for
CODE

if (theDiscDrive.discType == "unknown") { bShowInvalidDisc = true; }


and make it look like this
CODE

if (theDiscDrive.discType == "unknown") { bShowInvalidDisc = false; }



if you want to stop it when you close the drive as well then
you need to find
CODE

else if(theDiscDrive.discType == "unknown")
{
     stra = "     An Unknown disk type has          been detected.";
     strb = "     Do you wish to try to launch it and see what happens ?";
}


and make it look like this
CODE

else if(theDiscDrive.discType == "unknown")
{
       return;
//      stra = "     An Unknown disk type has          been detected.";
//      strb = "     Do you wish to try to launch it and see what happens ?";
}


and also find
CODE

else if (theDiscDrive.discType == "unknown") { TellUser("ERROR MESSAGE 1",""); }


and change it to look like this
CODE

//      else if (theDiscDrive.discType == "unknown") { TellUser("ERROR MESSAGE 1",""); }

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.