08.08.2010, 01:37
Quote:
|
Dude, how to do it please? cause SetPlayerScore is different from a string from textdraw, and Idk how to do with textdraw
|
pawn Код:
forward UpdateTD();
pawn Код:
public UpdateTD()
{
new str[128];
format(str, sizeof(str), "Score: %d", GetPlayerScore(playerid));
TextDrawSetString(TextdrawID, str);
return 1;
}
and under OnGameModeInIt
pawn Код:
SetTimer("UpdateTD", 1500, 1);


