29.08.2013, 15:29
Fiz assim
Porem,esse code ai acima estб no comando /roubar,e qd roubo,a barra continua com o mesmo valor...
pawn Код:
//No topo
forward UpdateBars(playerid);
//OnGameModeInit
SetTimer("UpdateBars", 1, 1);
//PUBLIC
public UpdateBars(playerid)
{
for(new i=0; i<MAX_PLAYERS; i++)
{
SetProgressBarValue(money,PlayerInfo[playerid][guita]);
SetProgressBarValue(rep,PlayerInfo[playerid][respeito]);
SetProgressBarValue(wanted,PlayerInfo[playerid][estrelas]);
}
return 1;
}
//exemplo de code que esta num comando /roubar
PlayerInfo[playerid][estrelas] += 25;
SetProgressBarValue(wanted,PlayerInfo[playerid][estrelas]);