Quote:
Originally Posted by Andi_Evandy
change this:
pawn Код:
format(str, sizeof(str), "Player Statistics\n\t%s (ID: %d)", PlayerName2(player1), player1);
to this:
pawn Код:
format(str, sizeof(str), "Player Statistics\n\t%s (ID: %d)\n", PlayerName2(player1), player1); //Just forget the "\n" XD
and for the ping:
change this:
pawn Код:
format(str, sizeof(str), "%s\tPing: $%d\n", str, GetPlayerPing(player1));
to this:
pawn Код:
format(str, sizeof(str), "%s\tPing: %d\n", str, GetPlayerPing(player1)); //Just delete the "$" XD
|
thanks bro, just like a charm. works! +rep 9999