-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added briefings.sqf to the scripts folder. Uncomment a line in initPl…
…ayerLocal to use it. Commented out the XPTBriefings by default. Bumped the version number to 0.4.2.
- Loading branch information
1 parent
c675fff
commit bf37f45
Showing
4 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Script to handle initial mission briefings | ||
// General guidelines would be to include briefings for the following | ||
// Situation, Mission, and Assets | ||
// Briefings are listed in the opposite order that they are written below. New diaryRecords are always placed at the top of the list. | ||
// https://community.bistudio.com/wiki/createDiaryRecord | ||
|
||
//player createDiaryRecord ["Diary", ["Assets", "Example Mission Assets"]]; | ||
//player createDiaryRecord ["Diary", ["Mission", "Example Mission Briefing"]]; | ||
//player createDiaryRecord ["Diary", ["Situation", "Example Situation Briefing"]]; | ||
|
||
player createDiaryRecord ["Diary", ["Assets", "Example Asset List:<br/> | ||
- 1x Tank<br/> | ||
- 4x Car<br/> | ||
- 4x Truck<br/> | ||
- 2x Helicopter | ||
"]]; | ||
|
||
player createDiaryRecord ["Diary", ["Intel", | ||
"Example Intel Briefing" | ||
]]; | ||
|
||
|
||
player createDiaryRecord ["Diary", ["Mission", | ||
"Example Mission Briefing." | ||
]]; | ||
|
||
player createDiaryRecord ["Diary", ["Situation", | ||
"Example Situation Briefing. | ||
<br/>Now with new lines." | ||
]]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
#define __XPTVERSION__ "0.4.1" | ||
#define __XPTVERSION__ "0.4.2" |