Hey Leute. Habe in meinem Script einen Timer, Nach 10 Minuten kommt Payday, in diesem callback wird nochmal ein timer gesetzt, und zwar lotto.
(Version aus GF)
public Lotto(number)
{
new JackpotFallen = 0;
new string[256];
new winner[MAX_PLAYER_NAME];
format(string, sizeof(string), "Lotterie News: Heute ist die Gewinnernummer: %d.", number);
SendClientMessageToAll(COLOR_WHITE, string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Spieler[i][pLottoNr] > 0)
{
if(Spieler[i][pLottoNr] == number)
{
JackpotFallen = 1;
GetPlayerName(i, winner, sizeof(winner));
format(string, sizeof(string), "Lotterie News: %s hat den Jackpot von %d$ gewonnen.", winner, Jackpot);
SendClientMessageToAll(COLOR_WHITE, string);
format(string, sizeof(string), "* Du hast %d$ mit deinem Lotterieticket gewonnen.", Jackpot);
SendClientMessage(i, COLOR_YELLOW, string);
GivePlayerMoney(i, Jackpot);
}
else
{
SendClientMessage(i, COLOR_LIGHTBLUE, "* Mit deinem Lotterieticket ist diesmal nichts geworden.");
}
}
Spieler[i][pLottoNr] = 0;
}
}
if(JackpotFallen)
{
new rand = random(125000); rand += 15789;
Jackpot = rand;
SaveStuff();
format(string, sizeof(string), "Lotterie News: Der neue Jackpot wurde mit %d$ gestartet.", Jackpot);
SendClientMessageToAll(COLOR_WHITE, string);
}
else
{
new rand = random(15000); rand += 2158;
Jackpot += rand;
SaveStuff();
format(string, sizeof(string), "Lotterie News: Der Jackpot wurde auf %d$ erhöht.", Jackpot);
SendClientMessageToAll(COLOR_WHITE, string);
}
return 1;
}
Leider werde ich Total vollgespammt.
MfG
Edit:
So ein Problem hatte ich schonmal, das hat doch irgendwas mit
for(new i = 0; i < MAX_PLAYERS; i++)
{
Zu tun oder?