-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbriefing.sqf
148 lines (121 loc) · 4.02 KB
/
briefing.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
//note the order in which you list things is upside down as to how it will show in the briefing on the map screen
player createDiaryRecord["Diary", ["Credits",
"THIS MISSION is by YOU.<br/>
*************************<br/>
<br/>
CH View Distance by Champ-1<br/>
<br/>
Civilian Occupation System by bangabob<br/>
<br/>
Teleport to SL by Megagoth1702 with changes by hedgehog<br/>
<br/>
TG TFAR Programming and Get Radios by Unkl and hedgehog<br/>
<br/>
TG ACE Arsenal by Unkl, Scout and hedgehog<br/>
<br/>
Local Class Based Arsenal by hedgehog<br/>
<br/>
Vehicle Respawn by Unkl and Roque_THE_GAMER<br/>
<br/>
Asset Markers by Roque_THE_GAMER and Unkl<br/>
<br/>
FARP Action by Roque_THE_GAMER and Unkl<br/>
<br/>
Squad UI is derivative but extensive additions and reworking all by hedgehog<br/>
<br/>
TG Banner logo by MadSoloSniper<br/>
<br/>
Primer, TFAR and Pointers board pictures by Unkl<br/>
<br/>
Zeus AddAction by hedgehog and Unkl<br/>
<br/>
Civilian Killed by Unkl and hedgehog (influenced by bangabob)<br/>
<br/>
Mission Timer and AllPlayersDead scripts by Unkl with updates by hedgehog<br/>
<br/>
Mission editor file and examples by Unkl"]];
player createDiaryRecord["Diary", ["PRE-COMBAT CHECKLIST",
"Designate Succession of Command<br/>
<br/>
Assign Buddy Teams<br/>
<br/>
Designate Primary and Secondary Medics<br/>
<br/>
Explain Casualty Action Plan<br/>
<br/>
Designate Primary and Secondary Comms Channels<br/>
<br/>
Brief Insertion and Exfil Plans<br/>
<br/>
Brief Fire Support Plan<br/>
<br/>
Brief Primary and Secondary Mission Objectives<br/>
<br/>
Review Special Instructions<br/>
<br/>
Review Actions on Contact<br/>
<br/>
Assign Order of Movement<br/>
<br/>
Brief ROE"]];
player createDiaryRecord["Diary", ["SIGNALS",
"COMMAND<br/>
Long Range - 50 mhz, Command In-Game VON<br/>
Short Range - 500 mhz<br/>
<br/>
ALPHA<br/>
Short Range - 100 mhz<br/>
<br/>
BRAVO<br/>
Short Range - 120 mhz<br/>
<br/>
CHARLIE<br/>
Short Range - 140 mhz<br/>
<br/>
INTER-SQUAD<br/>
Secondary Net - 200 mhz<br/>
<br/>
SUPPORTS - CAS,Artillery,Transport<br/>
Long Range - 480 mhz"]];
player createDiaryRecord["Diary", ["FARP",
"Vehicles and mobile support vehicles may also be repaired and reset to full capacity by driving them into the FORWARD AMMUNITION and REPAIR POINT or FARP 20m circle and then using the ACE Interaction to REPAIR ALL.<br/>
<br/>
Fuel and ammunition trucks should also be refilled with cargo at the FARP.<br/>
<br/>
Custom munition set ups for air vehicles (pylons) are not supported by the FARP script."]];
player createDiaryRecord["Diary", ["MAP MARKER SYNTAX",
"DELETE ME<br/>
This is an example of how you can link map markers in your briefing. You can get the <marker name = MARKERNAME>thing </marker> here."]];
player createDiaryRecord["Diary", ["WIN/LOSE",
"Info on the win or lose conditions of the mission.<br/>
<br/>
WIN by completing all objectives within the time limit.<br/>
<br/>
LOSE by not completing your objectives before an hour and 15 minutes.<br/>
<br/>
LOSE by having all players killed with no one with respawn tickets left."]];
player createDiaryRecord["Diary", ["CIVILIANS",
"Intel on the civilian situation in the area of operations."]];
player createDiaryRecord["Diary", ["WEATHER and TIME",
"Info on the time and expected conditions in the area of operations."]];
player createDiaryRecord["Diary", ["SUPPORTS AND SUSTAINMENT",
"SUPPORTS<br/>
Info on additional supports such as artillery or CAS.<br/>
<br/>
MEDICAL<br/>
How medicals system will work.<br/>
<br/>
RESUPPLY<br/>
How resupply is available."]];
player createDiaryRecord["Diary", ["EXECUTION",
"At leaders discretion.<br/>
<br/>
Alternatively, you may indicate specific pre-planned details on mission execution."]];
player createDiaryRecord["Diary", ["FRIENDLY FORCES",
"Friendly troops and disposition."]];
player createDiaryRecord["Diary", ["ENEMY FORCES",
"Intel on the enemy situation."]];
player createDiaryRecord["Diary", ["MISSION",
"Description of what the mission goals are."]];
player createDiaryRecord["Diary", ["SITUATION",
"Description of back story."]];