createDiaryLink: Difference between revisions
Jump to navigation
Jump to search
m (Bot: Reverted to revision 83030 by Ffur2007slx2 5 on 2014-08-21T11:33:19Z) |
Killzone Kid (talk | contribs) (description syntax) |
||
Line 7: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | Creates a link to the section of diary given by subject. Record is selected based on given unit/object, diary record or task. |= Description | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| '''createDiaryLink''' [subject, | | '''createDiaryLink''' [subject, record, text] |= Syntax | ||
|p1= [subject, | |p1= [subject, record, text]: [[Array]] - |= PARAMETER1 | ||
|p2= |= PARAMETER2 | |p2= subject: [[String]]|= PARAMETER2 | ||
|p3= |= PARAMETER3 | |p3= record: [[Object]], [[Task]] or [[Diary Record]]|= PARAMETER3 | ||
| [[String]] |= | |p4= text: [[String]] |= PARAMETER4 | ||
| [[String]] - empty string <tt>""</tt> or string in <tt>[[format]] ["<log subject<nowiki>=</nowiki>""%1"" record<nowiki>=</nowiki>""%2"">%3</log>", subject, processedRecordId, text]</tt> |= RETURNVALUE | |||
|x2= <code> | |x1= <code>_link <nowiki>=</nowiki> [[createDiarySubject]] ["Group", [[player]], "Player"]</code>|= EXAMPLE1 | ||
diaryRec1 = [[player]] [[createDiaryRecord]] ["diary", ["Record 1", "We can't refer to next record (("]]; | |||
|x2= <code>diaryRec1 = [[player]] [[createDiaryRecord]] ["diary", ["Record 1", "We can't refer to next record (("]]; | |||
diaryRec2 = [[player]] [[createDiaryRecord]] ["diary", ["Record 2", "Got to " + ([[createDiaryLink]] ["Diary", diaryRec1, "record 1"])]]; | diaryRec2 = [[player]] [[createDiaryRecord]] ["diary", ["Record 2", "Got to " + ([[createDiaryLink]] ["Diary", diaryRec1, "record 1"])]]; | ||
diaryRec3 = [[player]] [[createDiaryRecord]] ["diary", ["Record 3", "Got to " + ([[createDiaryLink]] ["Diary", diaryRec2, "record 2"])]]; | diaryRec3 = [[player]] [[createDiaryRecord]] ["diary", ["Record 3", "Got to " + ([[createDiaryLink]] ["Diary", diaryRec2, "record 2"])]]; | ||
Line 30: | Line 31: | ||
|= EXAMPLE2 | |= EXAMPLE2 | ||
|x3= <code> | |x3= <code>funcProcessDiaryLink = { | ||
funcProcessDiaryLink = { | |||
[[processDiaryLink]] [[createDiaryLink]] ["diary", _this, ""]; | [[processDiaryLink]] [[createDiaryLink]] ["diary", _this, ""]; | ||
}; | }; |
Revision as of 11:57, 24 January 2019
Description
- Description:
- Creates a link to the section of diary given by subject. Record is selected based on given unit/object, diary record or task.
- Groups:
- Uncategorised
Syntax
- Syntax:
- createDiaryLink [subject, record, text]
- Parameters:
- [subject, record, text]: Array -
- subject: String
- record: Object, Task or Diary Record
- text: String
- Return Value:
- String - empty string "" or string in format ["<log subject=""%1"" record=""%2"">%3</log>", subject, processedRecordId, text]
Examples
- Example 1:
_link = createDiarySubject ["Group", player, "Player"]
- Example 2:
diaryRec1 = player createDiaryRecord ["diary", ["Record 1", "We can't refer to next record (("]]; diaryRec2 = player createDiaryRecord ["diary", ["Record 2", "Got to " + (createDiaryLink ["Diary", diaryRec1, "record 1"])]]; diaryRec3 = player createDiaryRecord ["diary", ["Record 3", "Got to " + (createDiaryLink ["Diary", diaryRec2, "record 2"])]];
- Example 3:
funcProcessDiaryLink = { processDiaryLink createDiaryLink ["diary", _this, ""]; }; diaryRec1 = player createDiaryRecord ["diary", ["Record 1", "In this example, we can go to any next record: go to <execute expression='diaryRec2 call funcProcessDiaryLink'>Record 2</execute>" ]]; diaryRec2 = player createDiaryRecord ["diary", ["Record 2", "Go to <execute expression='diaryRec3 call funcProcessDiaryLink'>Record 3</execute>" ]]; diaryRec3 = player createDiaryRecord ["diary", ["Record 3", "Go to <execute expression='diaryRec1 call funcProcessDiaryLink'>Record 1</execute>" ]];
Additional Information
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