Diary Record

From Bohemia Interactive Community
Revision as of 23:46, 10 July 2020 by Killzone Kid (talk | contribs) (Undo revision 155160 by killzone_kid (talk))
Jump to navigation Jump to search
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" };