getPlayerUID: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Command " to "{{RV|type=command ")
m (Text replacement - "{{Inline code|" to "{{ic|")
(3 intermediate revisions by one other user not shown)
Line 11: Line 11:
| Return a UniqueID of the given unit (player).
| Return a UniqueID of the given unit (player).


{{Important|Up until [[{{arma2oa}}]] v1.60, the result always consisted of a [[str|stringified]] number (see [[getPlayerUIDOld]]), but always had to be considered and processed as a [[String]].<!--
{{Feature|important|Up until [[{{arma2oa}}]] v1.60, the result always consisted of a [[str|stringified]] number (see [[getPlayerUIDOld]]), but always had to be considered and processed as a [[String]].<!--
--> Converting it to a [[Number]] could cause precision problems, as [[Number]] cannot accurately represent integers above 16777216 (2<sup>24</sup>).<!--
--> Converting it to a [[Number]] could cause precision problems, as [[Number]] cannot accurately represent integers above 16777216 (2<sup>24</sup>).<!--
--> Moreover, games since [[{{arma2oa}}]] v1.61 provide a value that is not all-numeric.}}
--> Moreover, games since [[{{arma2oa}}]] v1.61 provide a value that is not all-numeric.}}
Line 30: Line 30:
The unique ID may be up to 100 characters long and may contain numbers, uppercase letters and underscores.<br>
The unique ID may be up to 100 characters long and may contain numbers, uppercase letters and underscores.<br>
The value can be used to construct a valid variable name by appending to another valid variable name,<br>
The value can be used to construct a valid variable name by appending to another valid variable name,<br>
e.g {{Inline code|[[missionNamespace]] [[setVariable]] ["TAG_player" + _uid, _unit];}}
e.g {{ic|[[missionNamespace]] [[setVariable]] ["TAG_player" + _uid, _unit];}}


|x1= <code>[[private]] _uid = [[getPlayerUID]] [[player]];</code>
|x1= <code>[[private]] _uid = [[getPlayerUID]] [[player]];</code>


| [[BIS_fnc_getUnitByUID]], [[getPlayerUIDOld]], [[getClientState]], [[getClientStateNumber]]
|seealso= [[BIS_fnc_getUnitByUID]], [[getPlayerUIDOld]], [[getClientState]], [[getClientStateNumber]]
}}
}}




{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Revision as of 19:10, 27 February 2021

Hover & click on the images for description

Description

Description:
Description needed
Problems:
In some cases, the identity of certain player units might fail to propagate to other clients and the server, which causes isPlayer and getPlayerUID to incorrectly return false and "" respectively, where the affected units are not local - see this bug report (GitHub). Therefore, beware of false negatives.
Groups:
Multiplayer

Syntax

Syntax:
Syntax needed
Parameters:
unit: Object
Return Value:
Return value needed

Examples

Example 1:
private _uid = getPlayerUID player;

Additional Information

See also:
BIS_fnc_getUnitByUIDgetPlayerUIDOldgetClientStategetClientStateNumber

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