24.08.2013, 01:15
Olб,eu usei o tutorial do ipsBruno para fazer um sistema de levels,com respeito, sу que ta funcionando,eu vou na scriptfiles na pasta das contas,muda o score,sу que no jogo nгo atualiza,tipo , eu entro com nivel 0 ,os respeitos passa,tem a TextDraw do Score, eu entro assim: Score 0 , e ainda fica assim quando eu upo de level: Score 0. Eu saio do server ou aperto TAB, aparece sу na scriptfiles e no TAB,alguйm ajuda?
Aqui o code:
Callback de atualizar:
Aqui o code:
pawn Код:
///////////////////////// Level ////////////////////////////////////////////////
Textdraw0[playerid] = TextDrawCreate(551.000000, 291.000000, "Score: 0");
TextDrawBackgroundColor(Textdraw0[playerid], 255);
TextDrawFont(Textdraw0[playerid], 3);
TextDrawLetterSize(Textdraw0[playerid], 0.500000, 1.000000);
TextDrawColor(Textdraw0[playerid], 65535);
TextDrawSetOutline(Textdraw0[playerid], 0);
TextDrawSetProportional(Textdraw0[playerid], 1);
TextDrawSetShadow(Textdraw0[playerid], 1);
pawn Код:
forward ActualizarTextDraws();
public ActualizarTextDraws()
{
new String[100], String1[200];
for(new playerid = 0; playerid < MAX_PLAYERS; playerid ++)
{
if(IsPlayerConnected(playerid))
{
format(String1, sizeof(String1), "Score: %d", Player[playerid][Score]);
TextDrawSetString(Textdraw0[playerid], String1);
TextDrawShowForPlayer(playerid, Textdraw0[playerid]);
format(String, sizeof(String), "Exp: %d/5", Respeito[playerid]);
TextDrawSetString(Textdraw1[playerid], String);
TextDrawShowForPlayer(playerid, Textdraw1[playerid]);
}
}
}