28.09.2012, 00:24
pawn Код:
public LoteriaPublic()
{
new stringcm[256];
new numerosorteado = randomEx(0, 99);
new rand = random(9000);
rand += 5000;
DinheiroAcumuladoLoto += rand;
for (new i = 0; i < MAX_PLAYERS; i++)
{
if (TaJogando[i] == 1)
{
if (vernumerosorteado[i] == numerosorteado)
{
TGanhador = i;
}
TaJogando[i] = 0;
NumeroLoto[i] = 0;
}
if (TGanhador != 0)
{
format(stringcm, sizeof(stringcm), "~g~[ ~w~Loteria ~g~] ~n~Premio Acumulado~w~ : %i~g~R$ ~n~Numero Sorteado~w~ : %i~n~~g~Ganhador ~w~: %s", DinheiroAcumuladoLoto, numerosorteado, nome(TGanhador));
TextDrawSetString(TextLoteria, stringcm);
TextDrawShowForPlayer(i, TextLoteria);
TextDrawShowForPlayer(i, BoxLoto);
GivePlayerMoney(TGanhador, DinheiroAcumuladoLoto);
SetTimerEx("DestruirTDLoto", 5000, false, "d", i);
TGanhador = -1;
}
format(stringcm, sizeof(stringcm), "~g~[ ~w~Loteria ~g~] ~n~Premio Acumulado~w~ : %iR$~g~ R$~n~Numero Sorteado~w~ : %i~n~~g~Ganhador ~w~: Niguem", DinheiroAcumuladoLoto, numerosorteado);
TextDrawSetString(TextLoteria, stringcm);
TextDrawShowForPlayer(i, TextLoteria);
TextDrawShowForPlayer(i, BoxLoto);
GivePlayerMoney(TGanhador, DinheiroAcumuladoLoto);
SetTimerEx("DestruirTDLoto", 5000, false, "d", i);
}
return 1;
}
Oque pode ser ?'