Lotto autmatisch nach 2 Stunden spielen!

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Hallo kann mir wer helfen,wie ich umstelle dass dass Lotto autmatisch nach 2 Stunden startet


    Hier der Befehl



    if(strcmp(cmd, "/startlotto", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    if(PlayerInfo[playerid][pAdmin] >= 1337)
    {
    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;
    }


    Kann mir wer helfen wäre nett von euch
    LG Hannennew

  • forward AutoLotto();


    Unter public OnGameModeInit
    den Timer einfügen, SetTimer("AutoLotto", 720000, 1);


    Und den public
    public AutoLotto()
    {
    new string[128];
    format(string, sizeof(string), "Lotterie News: Das Lottospiel startet.");
    OOCOff(COLOR_WHITE, string);
    new rand = random(80);
    if(rand < 77) { rand += 3; }
    Lotto(rand);
    return 1;
    }
    //Eddit, hatte falschen Timer eingestellt, ist jetzt richtig! ^^