createDiaryLink: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - ";[ ]+ " to "; ") |
(Some fixes) |
||
Line 15: | Line 15: | ||
|gr1= Briefing | |gr1= Briefing | ||
|descr= Creates a link to the | |descr= Creates a link to the given diary entry. | ||
|s1= [[createDiaryLink]] | |s1= [[createDiaryLink]] [subject, record, text] | ||
|p1= subject: [[String]] | |p1= subject: [[String]] | ||
Line 25: | Line 25: | ||
|p3= text: [[String]] | |p3= text: [[String]] | ||
|r1= [[String]] - | |r1= [[String]] - Empty string or a string similar to the result of {{ic|[[format]] ["<log subject{{=}}""%1"" record{{=}}""%2"">%3</log>", subject, processedRecordId, text]}} | ||
|x1= <code> | |x1= <code>_diaryRec1 = [[player]] [[createDiaryRecord]] ["Diary", ["Record 1", "We can not refer to the next record because it does not exist yet."]]; | ||
_diaryRec2 = [[player]] [[createDiaryRecord]] ["Diary", ["Record 2", "Go to " + [[createDiaryLink]] ["Diary", _diaryRec1, "record 1"]]]; | |||
_diaryRec3 = [[player]] [[createDiaryRecord]] ["Diary", ["Record 3", "Go to " + [[createDiaryLink]] ["Diary", _diaryRec2, "record 2"]]]; | |||
</code> | </code> | ||
| | |x2= In this example, one can go to any next record. | ||
<code>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>" | |||
]]; | ]]; | ||
</code> | </code> |
Revision as of 01:06, 10 September 2021
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:
_diaryRec1 = player createDiaryRecord ["Diary", ["Record 1", "We can not refer to the next record because it does not exist yet."]]; _diaryRec2 = player createDiaryRecord ["Diary", ["Record 2", "Go to " + createDiaryLink ["Diary", _diaryRec1, "record 1"]]]; _diaryRec3 = player createDiaryRecord ["Diary", ["Record 3", "Go to " + createDiaryLink ["Diary", _diaryRec2, "record 2"]]];
- 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