Home / Forums / Modders Corner / Mafia Editing / Mafia mods / Turning Off the GUI

Turning Off the GUI

Home / Forums / Modders Corner / Mafia Editing / Mafia mods / Turning Off the GUI

7 replies
13 years, 8 months ago
#6867

Is there a way to turn off the GUI that pops up when you drive a car in Mafia I for screenshots like there is in Mafia II and so many other games? i hope so as i am tired of editing out stuff. thanks for help on this if possible.

13 years, 8 months ago
#12799

Do you mean the speedometer and that?

13 years, 8 months ago
#12808

yep. i know there is a free cam and we can also get out of the car and take pics but i had hoped to find some way maybe even a hot key that might turn off the screen stuff. thanks if any info.

13 years, 8 months ago
#12816

Hmmm… it could be a code thing… i’m sure one of the coders will reply to you soon

13 years, 7 months ago
#12887

ok cool, it would be nice, i can edit screenshots but it would be nice to have a way to do this in play. thanks. if possible.

13 years, 7 months ago
#12892

Indeed it would!

13 years, 7 months ago
#13141

still hoping someone knows how to do this, ..i will keep fingers crossed, they really should have included this in the game engine.

13 years, 7 months ago
#13166

for Mafia2

with the injector

 

to take the widgets out: game.hud:Show(false)

not to show the character: game.game:GetActivePlayer():ShowModel(false)

use (true) to reactivate

 

to move around easily to get a nice view

bindKey (“I”,”v = game.game:GetActivePlayer():GetPos() v.y = v.y + 2 game.game:GetActivePlayer():SetPos(v)”)

bindKey (“J”,”v = game.game:GetActivePlayer():GetPos() v.x = v.x – 2 game.game:GetActivePlayer():SetPos(v)”)

bindKey (“K”,”v = game.game:GetActivePlayer():GetPos() v.y = v.y – 2 game.game:GetActivePlayer():SetPos(v)”)

bindKey (“L”,”v = game.game:GetActivePlayer():GetPos() v.x = v.x + 2 game.game:GetActivePlayer():SetPos(v)”)

bindKey (“U”,”v = game.game:GetActivePlayer():GetPos() v.z = v.z + 2 game.game:GetActivePlayer():SetPos(v)”)

bindKey (“O”,”v = game.game:GetActivePlayer():GetPos() v.z = v.z – 2 game.game:GetActivePlayer():SetPos(v)”)

  • You must be logged in to reply to this topic.