Hallo,
Ist es möglich einen eigenen Internen Countdown nur für Fraktionen (Mafien,Gangs u. Staatsfraktionen) machen?
Das man dann zb. /fcountdown eingibt und dann ein Countdown von 10 Sekunden erfolgt?
mfg
Hallo,
Ist es möglich einen eigenen Internen Countdown nur für Fraktionen (Mafien,Gangs u. Staatsfraktionen) machen?
Das man dann zb. /fcountdown eingibt und dann ein Countdown von 10 Sekunden erfolgt?
mfg
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]