Hide Minimap Shortcut 0.3.4
7.681
55
7.681
55
This mod is a request from alerossi82,
it is a simple shortcut key to hide or show the radar.
How To Install
------------------------------
1) Download the file
2) Extract "HideMinimap.cs"
3) Place "HideMinimap.cs" inside a folder named "scripts" in your main GTA V directory.
4) Install ScriptHookVDotNet & ScriptHookV
Changelog
--------------------
v0.2
* It is now possible to activate the "show in vehicle" mod
if you activate it, even if you deactivate the minimap, it will show up inside vehicles.
v0.3
* Added "show while using cellphone" mode (activated by default)
* Added possibility to hide police blips (disabled by default)
v0.3.2
* Fixed radar showing up when gps path recalculated
v0.3.3
* Fixed radar not showing up despite "show in vehicle" mode activated.
* Optimized OnTick method so it should reduce fps cost.
v0.3.4
*Fixed police blips appearing when player lose and regain wanted level.
police blips should now always be hidden when the value of the setting is 'false'
Thinking About
--------------------
* Adding a GUI menu
How To Use
--------------------
Hit the shortcut key (default key is B) to show / hide radar.
Hold the shortcut key to activate / deactivate the "show in vehicle" mode.
Note that even if you activate the "show in vehicle" mode, you still need to hit the shortcut key at least once to hide the minimap.
By default, when you use you're cellphone, the minimap should be displayed.
If you want to disable this (or any other) option, follow the "How To Set Up's Changing mod settings" instructions.
A little feature was added just for the author of the request : hiding police blips. As it is not the original purpose of this mod, it is set to "false" by default.
To enable it, refere to the "Changing mod settings" part of the How To Set Up section.
To activate it in game, just activate the "show in vehicle" mode.
How To Set Up
--------------------
When using this mod, you should have the in-game parameter Display->radar set to "on", or at least to "show blips".
If you set it to "off", the mod won't work until you set it to "on" again.
Replacing the key
The default shortcut key is "B", in order to modify this, you need to :
1) open the HideMinimap.cs file
2) go arround the end of the file
3) Look for "if (e.KeyCode == Keys.B)" and
4) modify the "Keys.B" to "Keys.YourKey:", replacing the "YourKey" part with the desired key, obviously.
For example, if you want to set it to the 'I' key, you would have
"if (e.KeyCode == Keys.I)".
Changing mod settings< /b>
In order to change mod settings, you need to
1) open the HideMinimap.cs file
2) go at the beginning (line 15)
3) Follow //commentary instructions :
In case instructions aren't clear enougth, here's an example :
To activate the "hide police blips when in showInVehicle mode", replace :
"private bool showPoliceBlip = true;"
to
"private bool showPoliceBlip = false";
4) Do not edit a variable if there isn't a comment suggesting that you can.
A comment starts with the "//" sentence.
5) Save and close .cs file
6) You're good to go !
Virus Scans
---------------------
0.1 : https://www.virustotal.com/#/file/282874ce61fc6673ff8f8a704fede68ec439e15809c57fd485a80f262faffccb/detection
0.2 : https://www.virustotal.com/#/file/d1ca788cbe0315c41a2dbe6a0bff499dd219bd26044e6a88ad576c0b76425556/detection
0.3 : https://www.virustotal.com/#/file/3d6361f991501c72022c833d9091c668cc9a0b48dc0b8fe60868e89f4c687214/detection
0.3.2 : https://www.virustotal.com/#/file/5bfade643fa2a65f12431be6929898d791477f271993fb1145d5ef3068e3846f/detection
0.3.3 : https://www.virustotal.com/#/file/7902a713f5ad4111c35a009f6fe7104e5b10b90a66fbc34bced0e9c02a3d4902/detection
0.3.4 : https://www.virustotal.com/#/file/b18b99a9394fab6794446def1ae9929760d372f2191bd9fc270a63379695d137/detection
it is a simple shortcut key to hide or show the radar.
How To Install
------------------------------
1) Download the file
2) Extract "HideMinimap.cs"
3) Place "HideMinimap.cs" inside a folder named "scripts" in your main GTA V directory.
4) Install ScriptHookVDotNet & ScriptHookV
Changelog
--------------------
v0.2
* It is now possible to activate the "show in vehicle" mod
if you activate it, even if you deactivate the minimap, it will show up inside vehicles.
v0.3
* Added "show while using cellphone" mode (activated by default)
* Added possibility to hide police blips (disabled by default)
v0.3.2
* Fixed radar showing up when gps path recalculated
v0.3.3
* Fixed radar not showing up despite "show in vehicle" mode activated.
* Optimized OnTick method so it should reduce fps cost.
v0.3.4
*Fixed police blips appearing when player lose and regain wanted level.
police blips should now always be hidden when the value of the setting is 'false'
Thinking About
--------------------
* Adding a GUI menu
How To Use
--------------------
Hit the shortcut key (default key is B) to show / hide radar.
Hold the shortcut key to activate / deactivate the "show in vehicle" mode.
Note that even if you activate the "show in vehicle" mode, you still need to hit the shortcut key at least once to hide the minimap.
By default, when you use you're cellphone, the minimap should be displayed.
If you want to disable this (or any other) option, follow the "How To Set Up's Changing mod settings" instructions.
A little feature was added just for the author of the request : hiding police blips. As it is not the original purpose of this mod, it is set to "false" by default.
To enable it, refere to the "Changing mod settings" part of the How To Set Up section.
To activate it in game, just activate the "show in vehicle" mode.
How To Set Up
--------------------
When using this mod, you should have the in-game parameter Display->radar set to "on", or at least to "show blips".
If you set it to "off", the mod won't work until you set it to "on" again.
Replacing the key
The default shortcut key is "B", in order to modify this, you need to :
1) open the HideMinimap.cs file
2) go arround the end of the file
3) Look for "if (e.KeyCode == Keys.B)" and
4) modify the "Keys.B" to "Keys.YourKey:", replacing the "YourKey" part with the desired key, obviously.
For example, if you want to set it to the 'I' key, you would have
"if (e.KeyCode == Keys.I)".
Changing mod settings< /b>
In order to change mod settings, you need to
1) open the HideMinimap.cs file
2) go at the beginning (line 15)
3) Follow //commentary instructions :
In case instructions aren't clear enougth, here's an example :
To activate the "hide police blips when in showInVehicle mode", replace :
"private bool showPoliceBlip = true;"
to
"private bool showPoliceBlip = false";
4) Do not edit a variable if there isn't a comment suggesting that you can.
A comment starts with the "//" sentence.
5) Save and close .cs file
6) You're good to go !
Virus Scans
---------------------
0.1 : https://www.virustotal.com/#/file/282874ce61fc6673ff8f8a704fede68ec439e15809c57fd485a80f262faffccb/detection
0.2 : https://www.virustotal.com/#/file/d1ca788cbe0315c41a2dbe6a0bff499dd219bd26044e6a88ad576c0b76425556/detection
0.3 : https://www.virustotal.com/#/file/3d6361f991501c72022c833d9091c668cc9a0b48dc0b8fe60868e89f4c687214/detection
0.3.2 : https://www.virustotal.com/#/file/5bfade643fa2a65f12431be6929898d791477f271993fb1145d5ef3068e3846f/detection
0.3.3 : https://www.virustotal.com/#/file/7902a713f5ad4111c35a009f6fe7104e5b10b90a66fbc34bced0e9c02a3d4902/detection
0.3.4 : https://www.virustotal.com/#/file/b18b99a9394fab6794446def1ae9929760d372f2191bd9fc270a63379695d137/detection
İlk Yüklenme Zamanı: 31 Ocak 2018, Çarşamba
Son Güncellenme Zamanı: 20 Şubat 2018, Salı
Last Downloaded: 2 hours ago
60 Yorum
More mods by iLLo:
This mod is a request from alerossi82,
it is a simple shortcut key to hide or show the radar.
How To Install
------------------------------
1) Download the file
2) Extract "HideMinimap.cs"
3) Place "HideMinimap.cs" inside a folder named "scripts" in your main GTA V directory.
4) Install ScriptHookVDotNet & ScriptHookV
Changelog
--------------------
v0.2
* It is now possible to activate the "show in vehicle" mod
if you activate it, even if you deactivate the minimap, it will show up inside vehicles.
v0.3
* Added "show while using cellphone" mode (activated by default)
* Added possibility to hide police blips (disabled by default)
v0.3.2
* Fixed radar showing up when gps path recalculated
v0.3.3
* Fixed radar not showing up despite "show in vehicle" mode activated.
* Optimized OnTick method so it should reduce fps cost.
v0.3.4
*Fixed police blips appearing when player lose and regain wanted level.
police blips should now always be hidden when the value of the setting is 'false'
Thinking About
--------------------
* Adding a GUI menu
How To Use
--------------------
Hit the shortcut key (default key is B) to show / hide radar.
Hold the shortcut key to activate / deactivate the "show in vehicle" mode.
Note that even if you activate the "show in vehicle" mode, you still need to hit the shortcut key at least once to hide the minimap.
By default, when you use you're cellphone, the minimap should be displayed.
If you want to disable this (or any other) option, follow the "How To Set Up's Changing mod settings" instructions.
A little feature was added just for the author of the request : hiding police blips. As it is not the original purpose of this mod, it is set to "false" by default.
To enable it, refere to the "Changing mod settings" part of the How To Set Up section.
To activate it in game, just activate the "show in vehicle" mode.
How To Set Up
--------------------
When using this mod, you should have the in-game parameter Display->radar set to "on", or at least to "show blips".
If you set it to "off", the mod won't work until you set it to "on" again.
Replacing the key
The default shortcut key is "B", in order to modify this, you need to :
1) open the HideMinimap.cs file
2) go arround the end of the file
3) Look for "if (e.KeyCode == Keys.B)" and
4) modify the "Keys.B" to "Keys.YourKey:", replacing the "YourKey" part with the desired key, obviously.
For example, if you want to set it to the 'I' key, you would have
"if (e.KeyCode == Keys.I)".
Changing mod settings< /b>
In order to change mod settings, you need to
1) open the HideMinimap.cs file
2) go at the beginning (line 15)
3) Follow //commentary instructions :
In case instructions aren't clear enougth, here's an example :
To activate the "hide police blips when in showInVehicle mode", replace :
"private bool showPoliceBlip = true;"
to
"private bool showPoliceBlip = false";
4) Do not edit a variable if there isn't a comment suggesting that you can.
A comment starts with the "//" sentence.
5) Save and close .cs file
6) You're good to go !
Virus Scans
---------------------
0.1 : https://www.virustotal.com/#/file/282874ce61fc6673ff8f8a704fede68ec439e15809c57fd485a80f262faffccb/detection
0.2 : https://www.virustotal.com/#/file/d1ca788cbe0315c41a2dbe6a0bff499dd219bd26044e6a88ad576c0b76425556/detection
0.3 : https://www.virustotal.com/#/file/3d6361f991501c72022c833d9091c668cc9a0b48dc0b8fe60868e89f4c687214/detection
0.3.2 : https://www.virustotal.com/#/file/5bfade643fa2a65f12431be6929898d791477f271993fb1145d5ef3068e3846f/detection
0.3.3 : https://www.virustotal.com/#/file/7902a713f5ad4111c35a009f6fe7104e5b10b90a66fbc34bced0e9c02a3d4902/detection
0.3.4 : https://www.virustotal.com/#/file/b18b99a9394fab6794446def1ae9929760d372f2191bd9fc270a63379695d137/detection
it is a simple shortcut key to hide or show the radar.
How To Install
------------------------------
1) Download the file
2) Extract "HideMinimap.cs"
3) Place "HideMinimap.cs" inside a folder named "scripts" in your main GTA V directory.
4) Install ScriptHookVDotNet & ScriptHookV
Changelog
--------------------
v0.2
* It is now possible to activate the "show in vehicle" mod
if you activate it, even if you deactivate the minimap, it will show up inside vehicles.
v0.3
* Added "show while using cellphone" mode (activated by default)
* Added possibility to hide police blips (disabled by default)
v0.3.2
* Fixed radar showing up when gps path recalculated
v0.3.3
* Fixed radar not showing up despite "show in vehicle" mode activated.
* Optimized OnTick method so it should reduce fps cost.
v0.3.4
*Fixed police blips appearing when player lose and regain wanted level.
police blips should now always be hidden when the value of the setting is 'false'
Thinking About
--------------------
* Adding a GUI menu
How To Use
--------------------
Hit the shortcut key (default key is B) to show / hide radar.
Hold the shortcut key to activate / deactivate the "show in vehicle" mode.
Note that even if you activate the "show in vehicle" mode, you still need to hit the shortcut key at least once to hide the minimap.
By default, when you use you're cellphone, the minimap should be displayed.
If you want to disable this (or any other) option, follow the "How To Set Up's Changing mod settings" instructions.
A little feature was added just for the author of the request : hiding police blips. As it is not the original purpose of this mod, it is set to "false" by default.
To enable it, refere to the "Changing mod settings" part of the How To Set Up section.
To activate it in game, just activate the "show in vehicle" mode.
How To Set Up
--------------------
When using this mod, you should have the in-game parameter Display->radar set to "on", or at least to "show blips".
If you set it to "off", the mod won't work until you set it to "on" again.
Replacing the key
The default shortcut key is "B", in order to modify this, you need to :
1) open the HideMinimap.cs file
2) go arround the end of the file
3) Look for "if (e.KeyCode == Keys.B)" and
4) modify the "Keys.B" to "Keys.YourKey:", replacing the "YourKey" part with the desired key, obviously.
For example, if you want to set it to the 'I' key, you would have
"if (e.KeyCode == Keys.I)".
Changing mod settings< /b>
In order to change mod settings, you need to
1) open the HideMinimap.cs file
2) go at the beginning (line 15)
3) Follow //commentary instructions :
In case instructions aren't clear enougth, here's an example :
To activate the "hide police blips when in showInVehicle mode", replace :
"private bool showPoliceBlip = true;"
to
"private bool showPoliceBlip = false";
4) Do not edit a variable if there isn't a comment suggesting that you can.
A comment starts with the "//" sentence.
5) Save and close .cs file
6) You're good to go !
Virus Scans
---------------------
0.1 : https://www.virustotal.com/#/file/282874ce61fc6673ff8f8a704fede68ec439e15809c57fd485a80f262faffccb/detection
0.2 : https://www.virustotal.com/#/file/d1ca788cbe0315c41a2dbe6a0bff499dd219bd26044e6a88ad576c0b76425556/detection
0.3 : https://www.virustotal.com/#/file/3d6361f991501c72022c833d9091c668cc9a0b48dc0b8fe60868e89f4c687214/detection
0.3.2 : https://www.virustotal.com/#/file/5bfade643fa2a65f12431be6929898d791477f271993fb1145d5ef3068e3846f/detection
0.3.3 : https://www.virustotal.com/#/file/7902a713f5ad4111c35a009f6fe7104e5b10b90a66fbc34bced0e9c02a3d4902/detection
0.3.4 : https://www.virustotal.com/#/file/b18b99a9394fab6794446def1ae9929760d372f2191bd9fc270a63379695d137/detection
İlk Yüklenme Zamanı: 31 Ocak 2018, Çarşamba
Son Güncellenme Zamanı: 20 Şubat 2018, Salı
Last Downloaded: 2 hours ago
@littlefilms thanks !
@iLLo OK so i'm have spent several hours trying to work out why this mod is not working but i can't seem to figure out why.
I have pressed and held 0 which according to the file is the default key but it does not work.
@iiTzKraze The default button for hiding / showing the minimap is B
@iLLo yh i pressed B about 30 times and nothing happens
@iiTzKraze You said earlier that you pressed and held 0
is it because you changed the key ?
If so, it might be because you have put an incorrect keyword for the key you wanted to setup. In this
case, could you send me in private message the lines you have changed ?
If not, i don't know why it doesn' work for you, i tried it again, checked that i had the latest version, and it worked as expected for me.
@iLLo ok so i reinstalled this mod without editing anything what so ever and it still does not work & yes i am pressing B not 0
Help, I cannot get it worked.
Works as advertised and a great little detail.
Why does this make my hud flash on and off (Ammo count, Whole scopes and minimap ect...)
Nvm just had to reinstall all of my mods and delete all the asi loaders and reinstall them, took a few hours no biggie. Cool mod btw really like it <3
When you use this mod in the game, police/cops disappear in the mini map, please fix this bug.
I can't press ''B'' to activate the mod.
when i press B (the default key it says, nothing happens. is there something i am doing wrong?
This mod doesn't work. I followed the installation instructions, launched the game, pressed B and it doesn't toggle off the minimap.
This mod work perfectly fine!, Press B to hide minimap, Put on scripts folder
Is here anyway to use this mod with a controller ? thanks
@fullarmor2 yes it work stop blaming the autors when you're just too bad
It works.. my only issue is that I want to set * in Numpad instead of B. What should I do? Typing just "*" doesn't work
@skipper00123 type numpad*
If i press B it shows a square,you can write something in it,I look în options controls and B key is mapped to "Point at",it show some coordinates,I tried to change it to some other key,its not working