[Ajuda] Sistema de loteria 10 minutos apуs payday
#7

Code:
public Lotto(number)
{
	new JackpotFallen = 0;
	format(gstring, sizeof(gstring), "Loterica: Hoje o numero sorteado foi o nє %d.", number);
    OOCNews(TEAM_BALLAS_COLOR, gstring);
    for(new i = 0; i < MAX_PLAYERS; i++)
	{
		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);
					OOCNews(COLOR_LIGHTRED, gstring);
					format(gstring, sizeof(gstring), "* Vocк ganhou R$%d com seu bilhete de loteria.", Jackpot);
					SendClientMessage(i, COLOR_LIGHTBLUE, gstring);
					ConsumingMoney[i] = 1;
					GivePlayerMoney(i, Jackpot);
			    }
			    else
			    {
                    SendClientMessage(i, COLOR_AVISO, " Nгo foi dessa Vez que vocк Ganhou na Loteria.");
			    }
			}
			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);
		OOCNews(COLOR_BRANCOM, gstring);
	}
	else
	{
	    new rand = random(15000);
		rand += 2158;
	    Jackpot += rand;
	    SaveStuff();
	    format(gstring, sizeof(gstring), "Loterica: O prкmio acumulou para: R$%d.", Jackpot);
		OOCNews(COLOR_BRANCOM, gstring);
	}
	return true;
}
Reply


Messages In This Thread
Sistema de loteria 10 minutos apуs payday - by vitorluiz96 - 17.05.2015, 19:55
Re: Sistema de loteria 10 minutos apуs payday - by RebeloX - 17.05.2015, 20:29
Re: Sistema de loteria 10 minutos apуs payday - by vitorluiz96 - 18.05.2015, 00:14
Re: Sistema de loteria 10 minutos apуs payday - by RebeloX - 18.05.2015, 13:12
Re: Sistema de loteria 10 minutos apуs payday - by vitorluiz96 - 18.05.2015, 19:57
Re: Sistema de loteria 10 minutos apуs payday - by RebeloX - 18.05.2015, 20:09
Re: Sistema de loteria 10 minutos apуs payday - by vitorluiz96 - 18.05.2015, 20:11

Forum Jump:


Users browsing this thread: 2 Guest(s)