2017-10-02 16:49:27 +00:00
/*
Author : Raimonds Virtoss - EpochMod . com
Contributors : DirtySanchez
Description :
Action Menu Map Config
Licence :
Arma Public License Share Alike ( APL - SA ) - https : //www.bistudio.com/community/licenses/arma-public-license-share-alike
Github :
https : //github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_config/Configs/CfgActionMenu/CfgActionMenu_map.hpp
*/
2018-08-20 17:19:20 +00:00
/*
// Moved to E-Pad
2017-10-08 18:37:48 +00:00
class playerMarker_on
{
2018-06-12 18:22:37 +00:00
condition = " !EPOCH_PlayerMarkerOn " ;
action = " EPOCH_PlayerMarkerOn = true; if !('ItemGPS' in dyna_assignedItems) then {['You need a GPS to see your Position',5] call epoch_message} " ;
2017-10-08 18:37:48 +00:00
icon = " x \a ddons \a 3_epoch_community \b uttons \ gps.paa " ;
tooltip = " Toggle ON player marker " ;
} ;
class playerMarker_off
{
2018-06-12 18:22:37 +00:00
condition = " EPOCH_PlayerMarkerOn " ;
action = " EPOCH_PlayerMarkerOn = false " ;
2017-10-08 18:37:48 +00:00
icon = " x \a ddons \a 3_epoch_community \b uttons \ gps.paa " ;
tooltip = " Toggle OFF player marker " ;
} ;
class deathMarker_on
{
2018-06-12 18:22:37 +00:00
condition = " !EPOCH_DeathMarkerOn " ;
action = " EPOCH_DeathMarkerOn = true; if ((profileNameSpace getVariable ['EPOCHLastKnownDeath',[]]) isequalto []) then {['You had no GPS on last death',5] call epoch_message} " ;
2017-10-08 18:37:48 +00:00
icon = " x \a ddons \a 3_epoch_community \ icons \ skull.paa " ;
tooltip = " Toggle ON death marker " ;
} ;
class deathMarker_off
{
2018-06-12 18:22:37 +00:00
condition = " EPOCH_DeathMarkerOn " ;
action = " EPOCH_DeathMarkerOn = false " ;
2017-10-08 18:37:48 +00:00
icon = " x \a ddons \a 3_epoch_community \ icons \ skull.paa " ;
tooltip = " Toggle OFF death marker " ;
2017-10-10 09:50:13 +00:00
} ;
2018-08-20 17:19:20 +00:00
*/