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",""); }