Firestorm_01 11 Posted February 8, 2014 (edited) I found that in some vehicles Shift click markers shows regardless of diffculty setting. Is there any way to remove it by scripting? Maybe completely revome this mapclick marker by overriding map clicks or something? Also this marker can be deleted as waypoint, because it is not waypoint. I tried to remove onMapSingleClick. It is just remove map dragging but marker still can be places. Ist there exist something like "OnMapShiftClick"? Edited February 8, 2014 by Firestorm_01 Share this post Link to post Share on other sites
fight9 14 Posted February 8, 2014 It's something done by the client or servers difficulty settings. I'm not sure if that is something that can be changed through mission script commands. I've never seen it. Share this post Link to post Share on other sites
Firestorm_01 11 Posted February 8, 2014 (edited) That was already done with difficulty settings but in still shown in vehicles. It is looks like "emulation of vehicle GPS". However I found way. Very stupid for now: onMapSingleClick "true;"; It takse out working left mouse button on map completely. And LMB+Shift marker too. But you can still scroll map with right mouse button. Is there any way to do it in the proper way? Because I am sure everyone get used to scroll map with left mouse button. ---------- Post added at 09:27 ---------- Previous post was at 08:59 ---------- For now I had that solution: waitUntil {!isNull player}; if(side player==east) then { onMapSingleClick "hint 'To scroll map use:\n RIGHT MOUSE BUTTON!\n It is balance decision that removes shift+click marker from you.\n Real hunter does not need that.'; true;"; }; Edited February 8, 2014 by Firestorm_01 Share this post Link to post Share on other sites
UNN 0 Posted February 8, 2014 It takse out working left mouse button on map completely. And LMB+Shift marker too. But you can still scroll map with right mouse button. Is there any way to do it in the proper way? Because I am sure everyone get used to scroll map with left mouse button It should be: onMapSingleClick "_shift"; That way it will ignore any mouse + shift combination, if that's ok for you? Share this post Link to post Share on other sites
Firestorm_01 11 Posted February 8, 2014 That way it will ignore any mouse + shift combination, if that's ok for you? If it has no side effects and do only that it all what I looking for. For now for some reasons my map don't scrolls with Leftf mouse button in all Arma 3 missions.:eek: Share this post Link to post Share on other sites