17.11.2013, 21:03
pawn Код:
forward AtualizarText(playerid, gold);
public AtualizarText(playerid, gold)
{
new str[80];
format(str, sizeof(str), "Cash: %i ", gold);
TextDrawSetString(CashInfo[playerid], str);
TextDrawShowForPlayer(playerid, CashInfo[playerid]);
return true;
}