13.01.2012, 19:22
How can I get a players name with the least damage on his vehicle?
pawn Код:
forward DerbyGo();
public DerbyGo()
{
new string[100];
format(string, sizeof(string), "DERBY: The destruction derby has started with %d players.", DerbyPlayers);
SendClientMessageToAll(COLOR_WHITE, string);
foreach(Player, i)
{
format(string, sizeof(string), "~n~~n~~n~~n~~n~~n~~n~~n~~n~~r~Leader: ~w~%s", Name(i));
GameTextForPlayer(i, string, 20534053546534, 3);
}
return 1;
}