Diary Record: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Add diaryRecordNull workaround)
m (Update because diaryRecordNull)
Line 1: Line 1:
'''Description:'''<br>
; Description<nowiki>:</nowiki>
A [[Diary Record]] is created by [[createDiaryRecord]] - introduced in Arma 2.
: A [[Diary Record]] is created by [[createDiaryRecord]] - introduced in Arma 2.




{{Informative |
{{Informative |
[[diaryRecordNull]] command does not exist, but its value can be obtained and compared as follow:
Before the introduction of [[diaryRecordNull]], its value could still be obtained and compared as follow:
<code>[[private]] _nullRecord {{=}} [[objNull]] [[createDiaryRecord]] []; {{cc|wrong parameters {{=}} failure to create a record {{=}} null value}}<br><br><!--
<code>[[private]] _nullRecord {{=}} [[objNull]] [[createDiaryRecord]] []; {{cc|wrong parameters {{=}} failure to create a record {{=}} null value}}<br><br><!--
-->[[private]] _createdRecord {{=}} [[player]] [[createDiaryRecord]] ["Diary", ["title", "description"]];<br><!--
-->[[private]] _createdRecord {{=}} [[player]] [[createDiaryRecord]] ["Diary", ["title", "description"]];<br><!--

Revision as of 19:09, 9 July 2020

Description:
A Diary Record is created by createDiaryRecord - introduced in Arma 2.


Before the introduction of diaryRecordNull, its value could still be obtained and compared as follow: private _nullRecord = objNull createDiaryRecord []; // wrong parameters = failure to create a record = null value

private _createdRecord = player createDiaryRecord ["Diary", ["title", "description"]];
if (_createdRecord isEqualTo _nullRecord) then { hint "Failed" };