Countdown nur für Fraktionen / Gangs / Mafien

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
  • Di fragst ab ob er in der fraktion ist und dann lässt du ihm den countdown anzeigen



    [expander]


    forward countdown();
    new countdown;
    new cttimer;


    if(strcmp("/countdown", cmdtext, true) == 0)
    {
    cttimer =SetTimer("countdown", 1000, 1);
    GameTextForAll( "~>~~y~5~<~", 1000, 4);
    countdown = 0;
    return 1;
    }


    public countdown()
    {
    if(countdown == 0)
    {
    GameTextForAll( "~>~~b~4~<~", 1000, 4);
    countdown = 1;
    }
    if(countdown == 1)
    {
    GameTextForAll( "~>~~b~3~<~", 1000, 4);
    countdown = 2;
    }
    if(countdown == 2)
    {
    GameTextForAll( "~>~~b~2~<~", 1000, 4);
    countdown = 3;
    }
    if(countdown == 3)
    {
    GameTextForAll( "~>~~b~1~<~", 1000, 4);
    countdown = 4;
    }
    if(countdown == 4)
    {
    GameTextForAll( "~>~~>~~y~!!!~b~GO~y~!!!~<~~<~", 1000, 4);
    countdown = 1;
    Killtimer(cttimer);
    }


    }
    [/expander]