BIS fnc variableSpaceRemove: Difference between revisions

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


|Add element to variable from someone's variable space.|Description=
|Remove element from variable from someone's variable space.|Description=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [object,varName,element,global,inArray] call [[BIS_fnc_variableSpaceAdd]] |Syntax=
| [object,varName,element,global,inArray] call [[BIS_fnc_variableSpaceRemove]] |Syntax=


|p1=object: [[Object]] - Owner of variable space |Parameter 1=
|p1=object: [[Object]] - Owner of variable space |Parameter 1=
Line 23: Line 23:
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>[ [[player]],"someVar",1337,[[true]] ] [[call]] [[BIS_fnc_variableSpaceAdd]];</code>|Example 1=
|x1= <code>[ [[player]],"someVar",1337,[[true]] ] [[call]] [[BIS_fnc_variableSpaceRemove]];</code>|Example 1=


____________________________________________________________________________________________
____________________________________________________________________________________________

Revision as of 00:14, 28 June 2018

Hover & click on the images for description

Description

Description:
Remove element from variable from someone's variable space.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[object,varName,element,global,inArray] call BIS_fnc_variableSpaceRemove
Parameters:
object: Object - Owner of variable space
varName: String - Name of variable
element: Anything - Element which will be removed (must be of same type as variable)
global: Boolean - (Optional, default false) True to save modified variable globally]]
Return Value:
Anything - Updated variable

Examples

Example 1:
[ player,"someVar",1337,true ] call BIS_fnc_variableSpaceRemove;

Additional Information

See also:
BIS_fnc_variableSpaceAdd

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