From Bohemia Interactive Community
Hover & click on the images for description
Description
- Description:
- Creates a link to the given diary entry.
- Groups:
- Briefing
Syntax
- Syntax:
- createDiaryLink [subject, record, text]
- Parameters:
- subject: String
- record: Object, Task or Diary Record
- text: String
- Return Value:
- String - Empty string or a string similar to the result of
format ["<log subject=""%1"" record=""%2"">%3</log>", subject, processedRecordId, text]
Examples
- Example 1:
- Example 2:
- In this example, one can go to any next record.
TAG_fnc_processDiaryLink = {
processDiaryLink createDiaryLink ["Diary", _this, ""];
};
DiaryRec1 = player createDiaryRecord ["Diary", ["Record 1",
"Go to <execute expression='DiaryRec2 call TAG_fnc_processDiaryLink'>Record 2</execute>"
]];
DiaryRec2 = player createDiaryRecord ["Diary", ["Record 2",
"Go to <execute expression='DiaryRec3 call TAG_fnc_processDiaryLink'>Record 3</execute>"
]];
DiaryRec3 = player createDiaryRecord ["Diary", ["Record 3",
"Go to <execute expression='DiaryRec1 call TAG_fnc_processDiaryLink'>Record 1</execute>"
]];
Additional Information
- See also:
- processDiaryLink createDiaryRecord createDiarySubject diarySubjectExists setDiaryRecordText
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