getUserInfo: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) No edit summary |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 25: | Line 25: | ||
* 7 - isHeadless: [[Boolean]] - whether or not this is a headless client (see [[hasInterface]], [[isServer]]) | * 7 - isHeadless: [[Boolean]] - whether or not this is a headless client (see [[hasInterface]], [[isServer]]) | ||
* 8 - adminState: [[Number]] - admin status of the user (see [[admin]]) | * 8 - adminState: [[Number]] - admin status of the user (see [[admin]]) | ||
* 9 - networkInfo: [[Array]] of [[Number]]s - format [ping, bandwidth desync] | * 9 - networkInfo: [[Array]] of [[Number]]s - format [ping, bandwidth, desync] | ||
* 10 - playerObject: [[Object]] - user player entity (see [[player]], [[selectPlayer]]) | * 10 - playerObject: [[Object]] - user player entity (see [[player]], [[selectPlayer]]) | ||
{{Feature|informative|Returns an empty array if said player is not found.}} | {{Feature|informative|Returns an empty array if said player is not found.}} | ||
|s2= playerID [[getUserInfo]] infoIndex | |||
|s2since= Arma3 2.18 | |||
|p21= playerID: [[String]] - user DirectPlay ID (see [[getPlayerID]], [[Arma 3: Mission Event Handlers#PlayerConnected|PlayerConnected]]) | |||
|p22= infoIndex: [[Number]] - the index of the data in the return array (see main syntax) | |||
|r2= [[Anything]] - depends on the requested index (see main syntax) or [[Nothing]] | |||
|x1= <sqf>private _randomUserInfo = getUserInfo selectRandom allUsers;</sqf> | |x1= <sqf>private _randomUserInfo = getUserInfo selectRandom allUsers;</sqf> |
Latest revision as of 18:24, 13 April 2024
Description
- Description:
- Returns extended information about given server user.
- Groups:
- MultiplayerObject Detection
Syntax
- Syntax:
- getUserInfo playerID
- Parameters:
- playerID: String - user DirectPlay ID (see getPlayerID, PlayerConnected)
- Return Value:
- Array in format [playerID, owner, playerUID, soldierName, displayName, steamProfileName, clientStateNumber, isHeadless, adminState, networkInfo, playerObject], where:
- 0 - playerID: String - user DirectPlay ID (see getPlayerID, PlayerConnected)
- 1 - owner: Number - user owner (see owner)
- 2 - playerUID: String - player UID (see getPlayerUID)
- 3 - soldierName: String - player name (see profileName)
- 4 - displayName: String - player name including squad (see name, squadParams)
- 5 - steamProfileName: String - steam profile name (see profileNameSteam)
- 6 - clientStateNumber: String user client state (see getClientStateNumber)
- 7 - isHeadless: Boolean - whether or not this is a headless client (see hasInterface, isServer)
- 8 - adminState: Number - admin status of the user (see admin)
- 9 - networkInfo: Array of Numbers - format [ping, bandwidth, desync]
- 10 - playerObject: Object - user player entity (see player, selectPlayer)
Alternative Syntax
- Syntax:
- playerID getUserInfo infoIndex
- Parameters:
- playerID: String - user DirectPlay ID (see getPlayerID, PlayerConnected)
- infoIndex: Number - the index of the data in the return array (see main syntax)
- Return Value:
- Anything - depends on the requested index (see main syntax) or Nothing
Examples
- Example 1:
- Example 2:
- Example 3:
- private _myInfo = getUserInfo getPlayerID player; // this particular example only works if player is server host
Additional Information
- See also:
- allUsers getPlayerID getUnitFreefallInfo
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