28.06.2016, 19:53
i have 2 vars, "Kill" and "Death"
and i need to show something like a table with the kills and deaths counter of all the players.
I would like to know if is possible in the player list or if there is a way to do something nice to see..
I know that i can create something like a windows that is always at the bottom-right of the screen but it can't contain the full list of the players (15/20 per match).
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid, playerid, reason);
[...]
CharacterData[killerid][Kill] ++;
CharacterData[playerid][Death] ++;
[...]
return 1;
}
I would like to know if is possible in the player list or if there is a way to do something nice to see..
I know that i can create something like a windows that is always at the bottom-right of the screen but it can't contain the full list of the players (15/20 per match).