Briefing – Arma 3
Lou Montana (talk | contribs) m (Text replacement - "\[\[[Cc]ategory:[ _]?Arma[ _]3:[ _]([^|]*)[ _]?\|.*\]\]" to "{{GameCategory|arma3|$1}}") |
m (some tweaks) |
||
Line 1: | Line 1: | ||
{{TOC|side|1|3}} | |||
[[Image:A3_CreateTaskModule_Attributes.jpg|right|400px|thumb|The create task module has many options to customize tasks]] | |||
= Description = | = Description = | ||
Although a briefing is fully optional, it is the first thing a player sees when playing your mission and there is no second chance for a first impression. | Although a briefing is fully optional, it is the first thing a player sees when playing your mission and there is no second chance for a first impression. | ||
Line 15: | Line 16: | ||
== How to create a briefing and tasks == | == How to create a briefing and tasks == | ||
In {{arma3}} briefings can be created either by using editor modules like '''Create Diary Module''' or scripting commands | In {{arma3}} briefings can be created either by using editor modules like the '''Create Diary Module''' or [[:Category:Command Group: Briefing|scripting commands]]. | ||
Furthermore, to create tasks, one can either use the '''Create Task Module''' or [[:Category:Command Group: Briefing|scripting commands]] and [[:Category:Function Group: Tasks|functions]] | |||
To find more information about how to create tasks see {{HashLink|Arma 3: Task Framework#Task Overhaul}} or [[Arma 3: Task Framework Tutorial]]. | |||
To find more information about how to create tasks see {{HashLink|Arma 3: Task Framework#Task Overhaul}} | |||
=== Formatting tags for tasks and briefings === | === Formatting tags for tasks and briefings === | ||
Line 38: | Line 31: | ||
==== Example ==== | ==== Example ==== | ||
[[File:A3 Briefing Formatting Example.jpg|150px|thumb|right]] | |||
<tt><img image='\A3\weapons_F\Rifles\Khaybar\Data\UI\gear_Khaybar_GL_X_CA.paa' width='300' height='200'/></tt> <br> | |||
<tt><noWiki><br/></noWiki></tt><br> | |||
<tt><noWiki><font color='#A52A2A'>Some text</font color></noWiki></tt><br> | |||
<tt><execute expression='systemChat str [0,0,0];'>Some expression</execute></font color></tt> | |||
= See also = | = See also = |
Revision as of 23:18, 21 January 2021
Description
Although a briefing is fully optional, it is the first thing a player sees when playing your mission and there is no second chance for a first impression. There is no *default* briefing in Arma 3, but usually a briefing consists of:
- Mission
- What is the mission about, tasks and goals.
- Situation
- Some background story, why does the mission happen, what's the big picture?
- Execution
- Steps the player is supposed to do chronologically sorted.
- Signal
- Call signs of the HQ and groups.
How to create a briefing and tasks
In Arma 3 briefings can be created either by using editor modules like the Create Diary Module or scripting commands. Furthermore, to create tasks, one can either use the Create Task Module or scripting commands and functions
To find more information about how to create tasks see Arma 3: Task Framework - Task Overhaul or Arma 3: Task Framework Tutorial.
Formatting tags for tasks and briefings
There are many formatting tags that can be incorporated in the strings for tasks and notes:
- To add a link to a marker: <marker name='obj1'>Link to Marker</marker>
- To show an image: <img image='somePic.jpg'/>
- Manipulate the image width and height like so: <img image='somePic.jpg' width='200' height='200'/>
- Coloured text: <font color='#A52A2A'>Some text</font color>
- Line break can be added with: <br/>
Example
<img image='\A3\weapons_F\Rifles\Khaybar\Data\UI\gear_Khaybar_GL_X_CA.paa' width='300' height='200'/>
<br/>
<font color='#A52A2A'>Some text</font color>
<execute expression='systemChat str [0,0,0];'>Some expression</execute>