Hi,
ich habe einen Godfather Script bei dem man mit /lotto die Lotterie starten kann. Aber ich möchte das die Lotterie immer 5 min vor dem Pay Day gestartet wird. Kann mir jemand das machen? Bin Anfänger und brauche Hilfe
Das ist der /startlotto Befehl
if(strcmp(cmd, "/startlotto", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] >= 5)
{
format(string, sizeof(string), "Lottery News: We have started the Lottery Election.");
OOCOff(COLOR_WHITE, string);
new rand = random(80);
if(rand < 77) { rand += 3; }
Lotto(rand);
}
else
{
SendClientMessage(playerid, COLOR_GREY, " You are not an Admin !");
return 1;
}
}
return 1;
}