createDiaryLink: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)]]" to "{{GameCategory|arma3|Scripting Commands}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(29 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma2 | | |game1= arma2 | ||
|version1= 1.00 | |||
|1. | |game2= arma2oa | ||
|version2= 1.50 | |||
| | |game3= tkoh | ||
|version3= 1.00 | |||
| | |game4= arma3 | ||
|version4= 0.50 | |||
| | |gr1= Briefing | ||
| | |descr= Creates a link to the given diary entry. | ||
| | |s1= [[createDiaryLink]] [subject, record, text] | ||
| | |p1= subject: [[String]] | ||
| | |p2= record: [[Object]], [[Task]] or [[Diary Record]] | ||
| [[String]] | |p3= text: [[String]] | ||
|r1= [[String]] - empty string or a string similar to the result of <sqf inline>format ["<log subject=""%1"" record=""%2"">%3</log>", subject, processedRecordId, text]</sqf> | |||
|x1= < | |x1= <sqf> | ||
_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"]]]; | |||
</sqf> | |||
|x2= | |x2= In this example, one can go to any next record. | ||
<sqf> | |||
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>" | |||
]]; | ]]; | ||
</ | </sqf> | ||
| | |seealso= [[processDiaryLink]] [[createDiaryRecord]] [[createDiarySubject]] [[diarySubjectExists]] [[setDiaryRecordText]] | ||
}} | }} | ||
Latest revision as of 15:35, 1 July 2022
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