29.08.2012, 19:24
pawn Код:
public EndLotto(second)
{
new string[128];
if(second != 0)
{
format(string, sizeof(string), "Lottery News Countdown: %d.", second);
OOCOff(COLOR_WHITE, string);
SetTimerEx("EndLotto", 1000, 0, "d", second-1);
}
else
{
format(string, sizeof(string), "Lottery News: We have started the Lottery Election.");
OOCOff(COLOR_WHITE, string);
new rand = random(99);
if(rand < 77) { rand += 3; }
Lotto(rand);
LottoStarted = 0;
}
return 1;
}