taskDescription: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<dl class="command_description"> <dt></dt>" to "<dl class="command_description"> <dt></dt>")
m (Some wiki formatting)
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma2
|game1= arma2
|version1= 1.00
 
|game2= arma2oa
|version2= 1.50
 
|game3= tkoh
|version3= 1.00
 
|game4= arma3
|version4= 0.50


|gr1= Briefing
|gr1= Briefing


|1.00
|descr= Returns the sub-parts of the task description. The returned Array is in format [Task description, Task title, Task waypoint description].


| Returns the sub-parts of the task description. The returned Array is in format [Task description, Task title, Task waypoint description].
|s1= [[taskDescription]] task
 
| '''taskDescription''' task


|p1= task: [[Task]]
|p1= task: [[Task]]
Line 15: Line 23:
|r1= [[Array]]
|r1= [[Array]]


|x1= <code>_taskDescArray <nowiki>=</nowiki> [[taskDescription]] _task;</code>
|x1= <sqf>_taskDescArray = taskDescription _task;</sqf>


|seealso= [[setSimpleTaskDescription]], [[createSimpleTask]]
|seealso= [[setSimpleTaskDescription]] [[createSimpleTask]]
}}
}}


{{GameCategory|arma2|Scripting Commands}}
{{Note
{{GameCategory|arma3|Scripting Commands}}
|user= Tajin
{{GameCategory|tkoh|Scripting Commands}}
|timestamp= 20141114194800
 
|text= Be careful if you want to use this to retrieve the title of a task.
<dl class="command_description">
 
<dt></dt>
<dd class="notedate">Posted on November 14, 2014 - 19:48 (UTC)</dd>
<dt class="note">[[User:Tajin|Tajin]]</dt>
<dd class="note">
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>
<br>
Therefore always use [[setSimpleTaskDescription]] directly after creating a new task, even if you set the Description to "".
Therefor always use setSimpleTaskDescription directly after creating a new task, even if you set the Description to "".
}}
</dd>
</dl>

Latest revision as of 12:23, 13 May 2022

Hover & click on the images for description

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:
_taskDescArray = taskDescription _task;

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
Tajin - c
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 "".