gms_other_find

Usage: gms_other_find ( n )

Description

Returns the nth player.

Example

//Show the names of all players
var n, player_id, name;
for(n = 0; n < gms_other_count(); n += 1)
{
    player_id = gms_other_find(n);
    name = gms_other_get_string(player_id, "name")
    show_message(name);
}

Replies (0)

Last message on 17 Jan 2020