Page 1 of 1

Re: Disabling the minimap in a specific game mode

Posted: Tue Nov 03, 2009 8:04 pm
by Apache Thunder
I was probably the one that posted it. :P

Here it is for your enjoyment:

Code: Select all

rem *** Disables MiniMap only in Team Death Match mode. (GPM_TDM) ***
var v_playMode

game.gamePlayMode -> v_playMode

if v_playMode == GPM_TDM

hud.useThumbnailMap 0

endIf
Put it in a con file somewhere in the bf1942/game.rfa for best results. Unless you are only wanting this to be map specific. In which case you can probably put it in the init.con file of the map instead.

Modify the play mode or add play modes if you want to turn off the minimap in other gamemodes. Now the minimap will not appear and instead a cool fade in/out effect occurs when you bring up the fullscreen map. :D

Re: Disabling the minimap in a specific game mode

Posted: Wed Nov 04, 2009 3:48 am
by fo0k
cool... never knew this :)

Re: Disabling the minimap in a specific game mode

Posted: Mon Feb 10, 2014 4:00 pm
by trinlmin127
Apache Thunder wrote:I was probably the one that posted it. :P

Here it is for your enjoyment:

Code: Select all

rem *** Disables MiniMap only in Team Death Match mode. (GPM_TDM) ***
var v_playMode

game.gamePlayMode -> v_playMode

if v_playMode == GPM_TDM

hud.useThumbnailMap 0

endIf
Put it in a con file somewhere in the bf1942/game.rfa for best results. Unless you are only wanting this to be map specific. In which case you can probably put it in the init.con file of the map instead.

Modify the play mode or add play modes if you want to turn off the minimap in other gamemodes. Now the minimap will not appear and instead a cool fade in/out effect occurs when you bring up the fullscreen map. :D
Very nice. I tried it locally in CQ and it works lovely. Is there a way to disable the full screen map as well ?