mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
df12dc1b61
Player Location Marker with Assigned GPS Death Marker location saved only when assigned GPS on death CfgEpochClient on/off toggle for hosts DynaMenu on map toggle for players New Marker Sets come to life! First set of functions for Local Marker Sets as needed for the above feature additions
43 lines
1.5 KiB
C++
43 lines
1.5 KiB
C++
/*
|
|
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
|
|
*/
|
|
|
|
class playerMarker_on
|
|
{
|
|
condition = "dyna_mapPlayerMarkerON && 'ItemGPS' in dyna_assignedItems && !dyna_mapPlayerMarker";
|
|
action = "['PlayerMarker',position player] call EPOCH_fnc_createLocalMarkerSet";
|
|
icon = "x\addons\a3_epoch_community\buttons\gps.paa";
|
|
tooltip = "Toggle ON player marker";
|
|
};
|
|
class playerMarker_off
|
|
{
|
|
condition = "dyna_mapPlayerMarkerON && dyna_mapPlayerMarker";
|
|
action = "['PlayerMarker'] call EPOCH_fnc_deleteLocalMarkerSet";
|
|
icon = "x\addons\a3_epoch_community\buttons\gps.paa";
|
|
tooltip = "Toggle OFF player marker";
|
|
};
|
|
class deathMarker_on
|
|
{
|
|
condition = "dyna_deathMarkerON && dyna_deathMarkerAvail && !dyna_mapDeathMarker";
|
|
action = "['DeathMarker',dyna_deathMarker] call EPOCH_fnc_createLocalMarkerSet";
|
|
icon = "x\addons\a3_epoch_community\icons\skull.paa";
|
|
tooltip = "Toggle ON death marker";
|
|
};
|
|
class deathMarker_off
|
|
{
|
|
condition = "dyna_deathMarkerON && dyna_mapDeathMarker";
|
|
action = "{deleteMarkerLocal _x}forEach ['DeathMarker','DeathMarker1','DeathMarker2']";
|
|
icon = "x\addons\a3_epoch_community\icons\skull.paa";
|
|
tooltip = "Toggle OFF death marker";
|
|
}; |