BIS fnc createLogRecord: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.00|Game version=
|1.00


|gr1= GUI |GROUP1=
|gr1= GUI


|arg= local |Arguments=  
|arg= local |Arguments=  
Line 11: Line 11:
|eff= local |Effect=  
|eff= local |Effect=  


| Create a dated, timed diary record in the owner's "Log" subject. |DESCRIPTION=
| Create a dated, timed diary record in the owner's "Log" subject.


| [owner, title, text] call [[BIS_fnc_createLogRecord]] |SYNTAX=
| [owner, title, text] call [[BIS_fnc_createLogRecord]]


|p1= owner: [[Object]] |PARAMETER1=
|p1= owner: [[Object]]


|p2= title: [[String]] - (Optional, default "") |PARAMETER2=
|p2= title: [[String]] - (Optional, default "")


|p3= text: [[String]] - (Optional, default "") |PARAMETER3=
|p3= text: [[String]] - (Optional, default "")


| [[String]] |RETURNVALUE=
| [[String]]


|x1= <code><nowiki>[</nowiki>[[player]], "Title", "This is a log entry. Have fun!"] [[call]] [[BIS_fnc_createLogRecord]];</code> |EXAMPLE1=
|x1= <code><nowiki>[</nowiki>[[player]], "Title", "This is a log entry. Have fun!"] [[call]] [[BIS_fnc_createLogRecord]];</code>


| [[createDiaryRecord]] |SEEALSO=
| [[createDiaryRecord]]
}}
}}



Revision as of 23:35, 17 January 2021

Hover & click on the images for description

Description

Description:
Create a dated, timed diary record in the owner's "Log" subject.
Execution:
call
Groups:
GUI

Syntax

Syntax:
[owner, title, text] call BIS_fnc_createLogRecord
Parameters:
owner: Object
title: String - (Optional, default "")
text: String - (Optional, default "")
Return Value:
String

Examples

Example 1:
[player, "Title", "This is a log entry. Have fun!"] call BIS_fnc_createLogRecord;

Additional Information

See also:
createDiaryRecord

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


Bottom Section