getPlayerUID: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
||
Line 35: | Line 35: | ||
* The value can be used to construct a valid variable name by appending to another valid variable name. {{ic|[[missionNamespace]] [[setVariable]] ["TAG_player" + _uid, _unit];}} | * The value can be used to construct a valid variable name by appending to another valid variable name. {{ic|[[missionNamespace]] [[setVariable]] ["TAG_player" + _uid, _unit];}} | ||
|x1= <code>private _uid = getPlayerUID | |x1= <code>private _uid = getPlayerUID player;</code> | ||
|seealso= [[BIS_fnc_getUnitByUID]] [[getPlayerUIDOld]] [[getClientState]] [[getClientStateNumber]] | |seealso= [[BIS_fnc_getUnitByUID]] [[getPlayerUIDOld]] [[getClientState]] [[getClientStateNumber]] | ||
}} | }} |
Revision as of 11:10, 12 May 2022
Description
- Description:
- Return a UniqueID of the given unit (player).
- Groups:
- Multiplayer
Syntax
- Syntax:
- getPlayerUID unit
- Parameters:
- unit: Object
- Return Value:
- String - Can be "_SP_AI_" or "_SP_PLAYER_" in SP, "" or UID in MP
- The unique ID may be up to 100 characters long and may contain numbers, uppercase letters and underscores
- The value can be used to construct a valid variable name by appending to another valid variable name.
missionNamespace setVariable ["TAG_player" + _uid, _unit];
Examples
- Example 1:
private _uid = getPlayerUID player;
Additional Information
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