BIS fnc objectVar: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
m (Text replacement - "= <code>([^<{]+)<\/code>" to "= <sqf>$1</sqf>")
 
(32 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{RV|type=function


{{Function|= Comments
|game1= arma3
____________________________________________________________________________________________
|version1= 1.00


| arma3 |= Game name
|gr1= Object Manipulation


|1.00|= Game version
|descr= Return a unique object variable. The variable is preserved after unit respawn.
____________________________________________________________________________________________


| <pre>/*
|s1= [object, varNameRoot] call [[BIS_fnc_objectVar]]
Author: Karel Moricky, modified by Jiri Wainar


Description:
|p1= object: [[Object]]
Return an unique object variable.
The variable is preserved after unit respawn.


Parameter(s):
|p2= varNameRoot: [[String]] - (Optional, default "bis_o") - variable name root - a number will be added behind it
0: OBJECT
1 (Optional): STRING - variable name (number will be added behind it)


Returns:
|r1= [[String]] - generated variable name
STRING
*/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
|x1= <sqf>hint str (player call BIS_fnc_objectVar); // "bis_o1"
____________________________________________________________________________________________
hint str (player == (missionNamespace getVariable "bis_o1")); // true</sqf>
 
| <!-- [] call [[BIS_fnc_objectVar]]; --> |= Syntax
|p1= |= Parameter 1
 
| |= Return value
____________________________________________________________________________________________
 
|x1= <code></code> |=
____________________________________________________________________________________________
 
| |= See also


|seealso= [[netId]] [[objectFromNetId]] [[setVariable]] [[setVehicleVarName]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Objects|{{uc:objectVar}}]]
[[Category:Functions|{{uc:objectVar}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:objectVar}}]]

Latest revision as of 18:00, 13 July 2022

Hover & click on the images for description

Description

Description:
Return a unique object variable. The variable is preserved after unit respawn.
Execution:
call
Groups:
Object Manipulation

Syntax

Syntax:
[object, varNameRoot] call BIS_fnc_objectVar
Parameters:
object: Object
varNameRoot: String - (Optional, default "bis_o") - variable name root - a number will be added behind it
Return Value:
String - generated variable name

Examples

Example 1:
hint str (player call BIS_fnc_objectVar); // "bis_o1" hint str (player == (missionNamespace getVariable "bis_o1")); // true

Additional Information

See also:
netId objectFromNetId setVariable setVehicleVarName

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