UTIL PlayerByIndex: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(Added Stub tag - Needs examples)
Line 6: Line 6:


gpGlobals->maxClients will return the number of connected clients.
gpGlobals->maxClients will return the number of connected clients.
{{stub}}
{{todo|Examples?}}

Revision as of 17:37, 10 April 2011

CBasePlayer *UTIL_PlayerByIndex( int entindex ) { return ToBasePlayer( ClientEntityList().GetEnt( entindex ) );

Players entities range from 1 - MAXPLAYERS, and non-players entities start at MAXPLAYERS + 1. I.E if A joins (1), then B joins (2) then A leaves 1 will free up, Player C joins (1)

(much thanks to DaFox for providing this information).

gpGlobals->maxClients will return the number of connected clients.

Stub

This article or section is a stub. You can help by expanding it.

Todo: Examples?