17.11.2013, 20:56
E uma coisa muito louca eu tava criando uma textdraw .
Mas quando eu tomo spawn ela aparece e logo que vai atualizar ela some novamente .
codigos
Qual e o erro ai
Mas quando eu tomo spawn ela aparece e logo que vai atualizar ela some novamente .
codigos
PHP код:
new Text:CashInfo[MAX_PLAYERS];
// OnPlayerConnect
CashInfo[playerid] = TextDrawCreate(486.000000, 120.000000, "Cash: 000");
TextDrawBackgroundColor(CashInfo[playerid], 255);
TextDrawFont(CashInfo[playerid], 1);
TextDrawLetterSize(CashInfo[playerid], 0.430000, 1.500000);
TextDrawColor(CashInfo[playerid], -1);
TextDrawSetProportional(CashInfo[playerid], 1);
TextDrawSetShadow(CashInfo[playerid], 1);
//OnPlayerSpawn
TextDrawShowForPlayer(playerid, CashInfo[playerid]);
SetTimerEx("AtualizarText", 1000, true, "ui", playerid, Player[playerid][pGold]);
forward AtualizarText(playerid, gold);
public AtualizarText(playerid, gold)
{
new str[80];
format(str, sizeof(str), "Cash: %i ", gold);
TextDrawSetString(CashInfo[playerid], str);
return true;
}