Pilot996 1 Posted March 2, 2014 How can I get the notification to appear on the screen when a task is assigned or created? It only shows up when it is succeeded. Share this post Link to post Share on other sites
KC Grimes 79 Posted March 2, 2014 Be sure to use BIS_fnc_taskCreate and BIS_fnc_taskSetState. Both have global effects for all machines, no matter where they are executed. Along with that, they show notifications. Read up on how to use them by finding them in the functions viewer in the editor. Examples: [west, "tsk2", ["Infiltrate the enemy encampment and destroy the coastal defences.", "Destroy Coastal Defences", "Destroy Coastal Defences"], (getMarkerPos "obj1"), true] spawn BIS_fnc_taskCreate; ["tsk2","SUCCEEDED"] call BIS_fnc_taskSetState; Share this post Link to post Share on other sites
Pilot996 1 Posted March 2, 2014 Thanks! I will try and figure this out. Share this post Link to post Share on other sites