Cockheaven 21 Posted June 26, 2020 Hi guys, I'm trying to disable BFT via a script for a group of players during a mission. The Idea is these players crash land somewhere and must escape or radio for extract, to improve the experience I don't want them to know exactly where they are on the map. I haven't busted into the PBO yet, but I've been searching here and the ACE wiki for information on this function. I know I can disable BFT in the editor, but I want it triggered during the mission. Thanks! Share this post Link to post Share on other sites
Harzach 2517 Posted June 27, 2020 Looking through fnc_blueForceTrackingUpdate.sqf, it seems that ACE Blufor Tracking is completely global. There might be a way to brute force your way around it, for example deleting markers as they are created, though that's probably not performative in the least. Share this post Link to post Share on other sites
M1ke_SK 230 Posted June 27, 2020 try for individual unit _unit setVariable ["ace_map_hideBlueForceMarker", true, true]; for group { _x setVariable ["ace_map_hideBlueForceMarker", true, true]; } forEach (units _group); Share this post Link to post Share on other sites
WarhammerActual 23 Posted May 30, 2021 On 6/27/2020 at 1:14 AM, M1ke_SK said: try for individual unit _unit setVariable ["ace_map_hideBlueForceMarker", true, true]; for group { _x setVariable ["ace_map_hideBlueForceMarker", true, true]; } forEach (units _group); I tried this by placing in the units init section and it is still visible on BFT any suggestions? Oh and this was "same side" Zeus (not an OPFOR) Share this post Link to post Share on other sites
WarhammerActual 23 Posted May 30, 2021 Thank you in advance Share this post Link to post Share on other sites
Cockheaven 21 Posted June 3, 2021 I was also unable to get this to work via scripting. I had to ultimately result to checking the box in the group attributes in 3DEN editor, Disable BFT I believe is what it says. Share this post Link to post Share on other sites
WarhammerActual 23 Posted June 7, 2021 On 6/3/2021 at 2:00 AM, Cockheaven said: I was also unable to get this to work via scripting. I had to ultimately result to checking the box in the group attributes in 3DEN editor, Disable BFT I believe is what it says. I dont see that anywhere on my guys. Screenshot perhaps>? Share this post Link to post Share on other sites
TechnoTroglodyte 1 Posted June 18, 2023 It's in the "group" ace options - doesn't sotp them showing on CTAB tho Share this post Link to post Share on other sites