31.01.2013, 01:23
Galerinha sera que da para me ajudar, fui ver um FS antigo e fiquei cismado em concertar ele para postar aqui para vcs, bom sу falta esse pequeno bug e esta 100%, o que acontece й que quando chega a 3600 segundos ele nгo faz as funзхes, segue o cуdigo
alguem pode ajudar? desde ja grato =)
pawn Код:
#define SEGUNDOSLEVEL 3600
pawn Код:
public SegundoaMais()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
PlayerInfo[i][pSegundos] ++;
if(PlayerInfo[i][pLevel] >= SEGUNDOSLEVEL)
{
PlayerInfo[i][pSegundos] = 0;
LevelUP(i);
}
}
return 1;
}