View previous topic :: View next topic |
|
Author |
Message |
Dante Leonhart
Lieutenant
Age: 27
Zodiac:
Joined: 18 Jun 2006
Posts: 400
|
|
|
|
|
|
Is there a way to turn off that little green box that shows up in the top right? I'm using God Mode pretty consistently for the movie, but it would be so much easier for capturing if I could keep God Mode on without the giant green box...
|
_________________
|
|
Back to top |
|
|
MLeo
Fleet Admiral
Age: 22
Zodiac:
Joined: 26 Nov 2002
Posts: 11439
Location: Netherlands
|
|
|
|
|
|
Modify the function ToggleGodMode in TacticalInterfaceHandlers.py
Remove anything between "if(pGame.InGodMode()):" and "pObject.CallNextHandler(pEvent)"
That includes the "if(pGame.InGodMode()):" line.
So it looks like this (UNTESTED!):
Code: | def ToggleGodMode(pObject, pEvent):
if (App.g_kUtopiaModule.GetTestMenuState () < 2):
return
global pGODModeLabel
pGame = App.Game_GetCurrentGame()
if(pGame is None):
return
# Toggle flag.
pGame.SetGodMode(not pGame.InGodMode())
pObject.CallNextHandler(pEvent)
|
|
_________________
How to beat the Black Screen Of Death and Script problems Also handles Console/Screen/Error report/dump.
BC Technical FAQ [Last updated 26/12/2005]
"Trust me, I'm a con artist" - Moist von Lipwig, "Going Postal, Discworld"
|
|
Back to top |
|
|
Dante Leonhart
Lieutenant
Age: 27
Zodiac:
Joined: 18 Jun 2006
Posts: 400
|
|
|
|
|
|
Thankye!! I'll give that a try as soon as I can... I'm going to bed right now tho... lol
|
_________________
|
|
Back to top |
|
|
|