metaoin 10 Posted November 9, 2014 Hi, I am fairly new to scripting in Arma and I can't figure out how I would execute a function when the player creates a waypoint(shift clicks on the map). Is this possible if yes how ? Thanks for your help Share this post Link to post Share on other sites
Joe98 92 Posted November 9, 2014 To execute a function, you need a soldier to walk into a trigger area. The trigger fires and the function is executed. So, place a waypoint on the map. As the solder begins to move he goes through a trigger. Share this post Link to post Share on other sites
opusfmspol 282 Posted November 10, 2014 (edited) Command onMapSingleClick detects true/false whether the shift key is pressed, so try this: onMapSingleClick {if (_shift) then {... whatever you want to happen... };}; https://community.bistudio.com/wiki/onMapSingleClick Edited November 10, 2014 by OpusFmSPol Share this post Link to post Share on other sites