15.09.2013, 23:09
Eu fiz, mas continua floodando, olha como ficou:
Код:
public Lotto(number) { new JackpotFallen = 0; for(new i = 0; i < MAX_PLAYERS; i++) { format(gstring, sizeof(gstring), "Loterica: Hoje o numero sorteado foi o nє %d.", number); SendClientMessage(i, COLOR_WHITE, gstring); { if(IsPlayerConnected(i)) { if(PlayerInfo[i][pLottoNr] > 0) { if(PlayerInfo[i][pLottoNr] == number) { JackpotFallen = 1; format(gstring, sizeof(gstring), "Loterica: %s ganhou R$%d com seu bilhete.", PlayerName(i), Jackpot); SendClientMessage(i, COLOR_WHITE, gstring); format(gstring, sizeof(gstring), "* Vocк ganhou R$%d com seu bilhete de loteria.", Jackpot); SendClientMessage(i, COLOR_YELLOW, gstring); ConsumingMoney[i] = 1; GivePlayerMoney(i, Jackpot); } else { SendClientMessage(i, COLOR_GREY, " Vocк nгo tem um bilhete."); } } PlayerInfo[i][pLottoNr] = 0; } } if(JackpotFallen) { new rand = random(125000); rand += 15789; Jackpot = rand; SaveStuff(); format(gstring, sizeof(gstring), "Loterica: O prкmio acumulou para: R$%d.", Jackpot); SendClientMessage(i, COLOR_WHITE, gstring); } else { new rand = random(15000); rand += 2158; Jackpot += rand; SaveStuff(); format(gstring, sizeof(gstring), "Loterica: O prкmio acumulou para: R$%d.", Jackpot); SendClientMessage(i, COLOR_WHITE, gstring); } } return true; }