NOTE: you will need to paste this into your custom player class file // ---------------------------------------------------------------------- // ShowCredits() // This is stuff for setting up custom end credits // ---------------------------------------------------------------------- function ShowCredits(optional bool bLoadIntro) { local DeusExRootWindow root; local MyCreditsWindow winCredits; root = DeusExRootWindow(rootWindow); if (root != None) { // Show the credits screen and force the game not to pause // if we're showing the credits after the endgame winCredits = MyCreditsWindow(root.InvokeMenuScreen(Class'MyCreditsWindow', bLoadIntro)); winCredits.SetLoadIntro(bLoadIntro); } }