xboxscene.org forums

Author Topic: Play Dvd Drive  (Read 38 times)

rjsachse

  • Archived User
  • Full Member
  • *
  • Posts: 128
Play Dvd Drive
« on: November 05, 2003, 12:36:00 AM »

CODE
function OnXDown()
{
    if (theDiscDrive.discType == "Video")
    {
        EnableInput(true);
        launch("xboxdash.xbe", "DeviceHarddisk0Partition1");
    }
    else if (theDiscDrive.discType == "Title")
    {
        EnableInput(true);
        theLauncherLevel.GoTo();
    }
    else
    {
        EnableInput(true);

        if (theDiscDrive.discType == "unknown")
            bShowInvalidDisc = false;
        theMainMenu.GoTo();
        EnableAmbientAudio();
    }
}

and this
CODE
       function OnXDown()
       {
theDiscDrive.LaunchDisc();
       }

but stiil can not get it to work any help would be nice cool.gif
Logged