taskDescription: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|gr1=([^ ]+) \|([0-9]\.[0-9]{2}) " to "|$2 |gr1= $1 ") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{RV|type=command | {{RV|type=command | ||
| arma2 | |game1= arma2 | ||
|version1= 1.00 | |||
|1. | |game2= arma2oa | ||
|version2= 1.50 | |||
| | |game3= tkoh | ||
|version3= 1.00 | |||
| | |game4= arma3 | ||
|version4= 0.50 | |||
|s1= | |gr1= Briefing | ||
|descr= Returns the sub-parts of the task description. The returned Array is in format [Task description, Task title, Task waypoint description]. | |||
|s1= [[taskDescription]] task | |||
|p1= task: [[Task]] | |p1= task: [[Task]] | ||
Line 15: | Line 23: | ||
|r1= [[Array]] | |r1= [[Array]] | ||
|x1= < | |x1= <sqf>_taskDescArray = taskDescription _task;</sqf> | ||
|seealso= [[setSimpleTaskDescription]] | |seealso= [[setSimpleTaskDescription]] [[createSimpleTask]] | ||
}} | }} | ||
{{ | {{Note | ||
|user= Tajin | |||
|timestamp= 20141114194800 | |||
|text= Be careful if you want to use this to retrieve the title of a task. | |||
Be careful if you want to use this to retrieve the title of a task. | |||
If the task has no description set, then "taskDescription" will only return an array of empty Strings.<br> | If the task has no description set, then "taskDescription" will only return an array of empty Strings.<br> | ||
Therefore always use [[setSimpleTaskDescription]] directly after creating a new task, even if you set the Description to "". | |||
}} | |||
Latest revision as of 11:23, 13 May 2022
Description
- Description:
- Returns the sub-parts of the task description. The returned Array is in format [Task description, Task title, Task waypoint description].
- Groups:
- Briefing
Syntax
- Syntax:
- taskDescription task
- Parameters:
- task: Task
- Return Value:
- Array
Examples
- Example 1:
Additional Information
- See also:
- setSimpleTaskDescription createSimpleTask
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
- Posted on Nov 14, 2014 - 19:48 (UTC)
-
Be careful if you want to use this to retrieve the title of a task.
If the task has no description set, then "taskDescription" will only return an array of empty Strings.
Therefore always use setSimpleTaskDescription directly after creating a new task, even if you set the Description to "".