10.05.2010, 19:29
Make the textdraw then use https://sampwiki.blast.hk/wiki/TextDrawSetString. In example
pawn Код:
public OnGameModeInit()
{
SetTimer("Update", 5000, true);
return 1;
}
forward Update();
public Update()
{
for(new i; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i)) continue;
TextDrawSetString(/*Your textdraw here*/, GetPlayerScore(i));
}
}