BIS fnc deleteTask: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Fix spacing)
Line 16: Line 16:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [taskID,owner] call '''BIS_fnc_deleteTask''' |SYNTAX=
| [taskID, owner] call '''BIS_fnc_deleteTask''' |SYNTAX=


|p1= taskID: [[String]] - ID of the task |PARAMETER1=
|p1= taskID: [[String]] - ID of the task |PARAMETER1=


|p2= owner: [[String]] - Owner of the task.(Optional) Can be:
|p2= owner: [[String]] - Owner of the task.(Optional) Can be:
*[[Boolean]] - true to useall playable units
* [[Boolean]] - true to useall playable units
*[[Object]]- specific object
* [[Object]]- specific object
*[[Group]] - all objects in the group
* [[Group]] - all objects in the group
*[[Side]] - all objects of the given side
* [[Side]] - all objects of the given side
*[[Array]]- collection of above types|PARAMETER2=
* [[Array]] - collection of above types |PARAMETER2=




Line 31: Line 31:
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>[ "task_1" ] [[call]] '''BIS_fnc_deleteTask''';</code> |EXAMPLE1=
|x1= <code>["task_1"] [[call]] '''BIS_fnc_deleteTask''';</code> |EXAMPLE1=
|x2= <code>[ "task_1",[[west]] ] [[call]] '''BIS_fnc_deleteTask''';</code> |EXAMPLE2=
|x2= <code>["task_1", [[west]]] [[call]] '''BIS_fnc_deleteTask''';</code> |EXAMPLE2=
|x3= <code>[ "task_1",[ [[west]], [[player]], [[group]] soldier ] ] [[call]] '''BIS_fnc_deleteTask''';</code> |EXAMPLE3=
|x3= <code>["task_1", [<nowiki/>[[west]], [[player]], [[group]] soldier]] [[call]] '''BIS_fnc_deleteTask''';</code> |EXAMPLE3=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 48: Line 48:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Functions|{{uc:deleteTask}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:deleteTask}}]]

Revision as of 22:08, 8 November 2020

Hover & click on the images for description

Description

Description:
Deletes given task.
Execution:
call
Groups:
Tasks

Syntax

Syntax:
[taskID, owner] call BIS_fnc_deleteTask
Parameters:
taskID: String - ID of the task
owner: String - Owner of the task.(Optional) Can be:
  • Boolean - true to useall playable units
  • Object- specific object
  • Group - all objects in the group
  • Side - all objects of the given side
  • Array - collection of above types
Return Value:
Nothing

Examples

Example 1:
["task_1"] call BIS_fnc_deleteTask;
Example 2:
["task_1", west] call BIS_fnc_deleteTask;
Example 3:
["task_1", [west, player, group soldier]] call BIS_fnc_deleteTask;

Additional Information

See also:
Task Functions Arma 3 Task Framework

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note


Notes

Bottom Section