I've a problem. I'm trying to delete the respawn option, so you're only able to load the game when you die. Like in the source stone in the original campaign
Cheers
// Spawn in the Death GUI.
// The default (as defined by BioWare) can be spawned in by PopUpGUIPanel, but
// if you want to turn off the "Respawn" or "Wait for Help" buttons, this is the
// function to use.
// - oPC
// - bRespawnButtonEnabled: if this is TRUE, the "Respawn" button will be enabled
// on the Death GUI.
// - bWaitForHelpButtonEnabled: if this is TRUE, the "Wait For Help" button will
// be enabled on the Death GUI (Note: This button will not appear in single player games).
// - nHelpStringReference
// - sHelpString
void PopUpDeathGUIPanel(object oPC, int bRespawnButtonEnabled=TRUE, int bWaitForHelpButtonEnabled=TRUE, int nHelpStringReference=0, string sHelpString="")
then save and thats itDelayCommand(2.5,PopUpDeathGUIPanel(oPlayer,FALSE,FALSE));
Modifié par ShaDoOoW, 05 septembre 2010 - 02:46 .