- This topic has 7 replies, 3 voices, and was last updated 13 years, 7 months ago by .
Turning Off the GUI
Do you mean the speedometer and that?
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.
Hmmm… it could be a code thing… i’m sure one of the coders will reply to you soon
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.
Indeed it would!
still hoping someone knows how to do this, ..i will keep fingers crossed, they really should have included this in the game engine.
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.
