Arma 3
Not enough ratings
Disable Tactical View
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod, Server
File Size
Posted
Updated
7.581 KB
19 Jul, 2022 @ 8:51am
2 Sep, 2023 @ 12:20am
7 Change Notes ( view )

Subscribe to download
Disable Tactical View

Description
General Explanation:
This add-on disables tactical view globally.

Source Code:
The source code is available on GitHub (view[github.com]).

Optionally Enable Globally:
This add-on can be used as a server-side mod or as a client-side mod. If you want to enable it globally - that is, for every single-player mission and locally hosted multi-player mission - you can use my add-on Disable Tactical View Global Enabler.

Easy usage:
This add-on comes with an Eden Editor Module. There you can change the configuration.


Usage as a stand-alone script:
This mod can also be used stand-alone, i.e, without a mod. For this, you have to execute the .sqf files in the "scripts/" folder on the respective machines. "fnc_client.sqf" has to be executed on each client, and "fnc_server.sqf" has to be executed on the server. Note that the server can also be a client.

Advanced usage:
If you do not want to use the Eden Editor Module, You can start the script globally by calling:
remoteExecCall ["DTV_fnc_startDisableTacticalViewServer", 2];
To disable the script globally, call:
remoteExecCall ["DTV_fnc_stopDisableTacticalViewServer", 2];
To disable the script for a specific player, call:
remoteExecCall ["DTV_fnc_stopDisableTacticalViewClient", _player];
To re-enable the script for a specific player, call:
remoteExec ["DTV_fnc_startDisableTacticalViewClient", _player];