16.07.2010, 18:45
Why is it that if I set a string on something "TimerEx"
I even see the other players Textdraw.
Example :
I even see the other players Textdraw.
Example :
pawn Код:
forward Stats(playerid);
public Stats(playerid)
{
new string[156];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "~b~Name : ~w~(%s) ~b~Cash : ~w~($%d) ~b~Score : ~w~(%d) ~b~Ping : ~w~(%d) ~b~Kills : ~w~(%d) ~b~Death : ~w~(%d) ~b~ID : (%d)", name, GetPlayerMoney(playerid), GetPlayerScore(playerid), GetPlayerPing(playerid), kills1[playerid], death1[playerid], playerid);
TextDrawSetString(StatsTD, string);
return 1;
}