alleycat 28 Posted March 8, 2016 I want to use settaskstate in a remoteexec, but I do not know the syntax. "Succeeded" remoteExec ["setTaskState", 0, true]; I do not know where to put the task variable https://community.bistudio.com/wiki/setTaskState Share this post Link to post Share on other sites
fn_Quiksilver 1636 Posted March 8, 2016 [taskID,'Succeeded'] remoteExec ['setTaskState',0,true]; Share this post Link to post Share on other sites
alleycat 28 Posted March 8, 2016 Thanks, so the pattern is arranging parameters from left to right, no matter the syntax? Share this post Link to post Share on other sites
davidoss 552 Posted March 8, 2016 For what settaskstate and remote exec? Server sided _task = ["taskID", "SUCCEEDED",true] call BIS_fnc_taskSetState; Share this post Link to post Share on other sites