BIS fnc getServerVariable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (pf)
m (call instead of spawn)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Fetch a variable saved on server. Used when you want to share variables only to specific clients to prevent large traffic. Must be [[spawn|spawned]] because communication with server takes some time. |= Description
| Fetch a variable saved on server. Used when you want to share variables only to specific clients to prevent large traffic. Must be run in [[Scheduler#Scheduled_Environment|scheduled environment]] because communication with server takes some time. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| [target, varName, default] spawn [[BIS_fnc_getServerVariable]] |= Syntax
| [target, varName, default] call [[BIS_fnc_getServerVariable]] |= Syntax
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 23: Line 23:
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>[ [[missionNamespace]], "BIS_someVar", "defaultValue"] [[spawn]] [[BIS_fnc_getServerVariable]];</code> |=
|x1= <code>[ [[missionNamespace]], "BIS_someVar", "defaultValue"] [[call]] [[BIS_fnc_getServerVariable]];</code> |=
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 23:48, 6 January 2019

Hover & click on the images for description

Description

Description:
Fetch a variable saved on server. Used when you want to share variables only to specific clients to prevent large traffic. Must be run in scheduled environment because communication with server takes some time.
Execution:
spawn
Groups:
Uncategorised

Syntax

Syntax:
[target, varName, default] call BIS_fnc_getServerVariable
Parameters:
target: Namespace, Object or Group - Variable name space
varName: String - Variable name
varName: Anything - Default value returned when variable is nil
Return Value:
Anything - Default value or saved variable

Examples

Example 1:
[ missionNamespace, "BIS_someVar", "defaultValue"] call BIS_fnc_getServerVariable;

Additional Information

See also:
getVariablesetVariableallVariables

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


Notes

Bottom Section