跳至主要内容

GetPlayers

注意

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets an array variable of the IDs of the current players on the server.

NameDescription
players[]An array into which to store the player IDs, passed by reference.
sizeThe size of the array.

Returns

The function returns the number of players stored in the array.

Examples

Suppose there are 5 players on the server:

new players[MAX_PLAYERS];
new length;

length = GetPlayers(players, sizeof(players));
// The `players` array now contains online player IDs. { 0, 1, 2, 3, 4 }
// The value of the `length` variable is 5
  • GetVehicles: Gets an array variable of the IDs of the created vehicles on the server.
  • GetActors: Gets an array variable of the IDs of the created actors on the server.