dazholmes 4 Posted December 16, 2015 I'm trying to link a task i spawned a group there is a group leader i linked the task to the group leader but the task only shows for the group leader not the other members in the group how can i fix that? Share this post Link to post Share on other sites
donelsarjo 60 Posted December 16, 2015 Create a marker of any size. Give it a name (e.g,: "mrk"). Create a trigger the same size as the marker and place it exactly over it. TRIGGER Type: NONE Activiation: ENEMY SIDE Repeatedly Present Conditon: this ON ACT. "mrk" setMarkerColor "ColorEast"; ON DEA. "mrk" setMarkerColor "ColorGuer"; Share this post Link to post Share on other sites
dazholmes 4 Posted December 16, 2015 Create a marker of any size. Give it a name (e.g,: "mrk"). Create a trigger the same size as the marker and place it exactly over it. TRIGGER Type: NONE Activiation: ENEMY SIDE Repeatedly Present Conditon: this ON ACT. "mrk" setMarkerColor "ColorEast"; ON DEA. "mrk" setMarkerColor "ColorGuer"; Thanks that worked btw i changed the topic to another issue have. Share this post Link to post Share on other sites
donelsarjo 60 Posted December 16, 2015 As the Biki states it : the first Parameter is the object, group or side the task should be given to: Example side : [civilian,["task1"],["Do this and you get a cookie","Earn Cookie","cookiemarker"],[0,0,0],1,2,true] call BIS_fnc_taskCreate For the module Owner : BLUFOR/OPFOR/CIVILIAN/INDEPENDENT or Sides of synchronized units Example group: [(group player),["task1"],["Do this and you get a cookie","Earn Cookie","cookiemarker"],[0,0,0],1,2,true] call BIS_fnc_taskCreate For the module: Owner : Group of synchrinized objects (sync with leader) Example object: [player,["task1"],["Do this and you get a cookie","Earn Cookie","cookiemarker"],[0,0,0],1,2,true] call BIS_fnc_taskCreate For the module: Owner : Synchronized objects only Share this post Link to post Share on other sites