Jump to content
Sign in to follow this  
Firestorm_01

How to remove Shift click waypoints completely

Recommended Posts

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 by Firestorm_01

Share this post


Link to post
Share on other sites

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

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 by Firestorm_01

Share this post


Link to post
Share on other sites
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
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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×