From 2c3eea78d301b19eebb8493f6eebda7e220d0c47 Mon Sep 17 00:00:00 2001 From: Wyqer Date: Thu, 2 May 2019 22:05:07 +0200 Subject: [PATCH] Renamed huron marker --- Missionframework/scripts/client/init_client.sqf | 2 +- Missionframework/scripts/client/markers/huron_marker.sqf | 2 ++ README.md | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Missionframework/scripts/client/init_client.sqf b/Missionframework/scripts/client/init_client.sqf index 29402d6d..9c0d92a8 100644 --- a/Missionframework/scripts/client/init_client.sqf +++ b/Missionframework/scripts/client/init_client.sqf @@ -42,7 +42,7 @@ if (KP_liberation_mapmarkers) then {execVM "scripts\client\markers\empty_vehicle execVM "scripts\client\markers\fob_markers.sqf"; if (KP_liberation_mapmarkers) then {execVM "scripts\client\markers\group_icons.sqf";}; execVM "scripts\client\markers\hostile_groups.sqf"; -if (KP_liberation_mapmarkers) then {execVM "scripts\client\markers\huron_marker.sqf";} else {deleteMarker "huronmarker"}; +if (KP_liberation_mapmarkers) then {execVM "scripts\client\markers\huron_marker.sqf";} else {deleteMarkerLocal "huronmarker"}; execVM "scripts\client\markers\sector_manager.sqf"; execVM "scripts\client\markers\spot_timer.sqf"; execVM "scripts\client\misc\broadcast_squad_colors.sqf"; diff --git a/Missionframework/scripts/client/markers/huron_marker.sqf b/Missionframework/scripts/client/markers/huron_marker.sqf index de02d2b5..422fc422 100644 --- a/Missionframework/scripts/client/markers/huron_marker.sqf +++ b/Missionframework/scripts/client/markers/huron_marker.sqf @@ -1,5 +1,7 @@ private [ "_huronlocal" ]; +"huronmarker" setMarkerTextLocal "Potato 01"; + while { true } do { _huronlocal = [] call F_spartanScan; if ( !( isNull _huronlocal) ) then { diff --git a/README.md b/README.md index d2ab29f9..4bf5d006 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,7 @@ class Missions * Tweaked: Disabled script that switched locality of all blufor units to the commander machine. (should fix UAV issue) * Tweaked: `allPlayers` replaced with `(allPlayers - entities "HeadlessClient_F")` for scripts which should pause when no players are online. (logistic, resources, battlegroups) * Tweaked: Marker for civilian informant is an area now and not centered on the informants position anymore. +* Tweaked: Renamed Huron marker. * Fixed: Annoying popup since A3 1.90 concerning missing entry for `widthRailWay`. ### 0.963a (10th April 2018 as "legacy support" release)