02.01.2014, 12:07
I'd say good idea _Emmet instead of doing this, I'd like to see this released soon :P, anyways good luck with this.
pawn Code:
forward Wait1();
public Wait1()
{
GameTextForPlayer(playerid, "~g~3", 3000, 3);
SetTimer("Wait2", 1000, false);
}
forward Wait2();
public Wait2()
{
GameTextForPlayer(playerid, "~g~2", 3000, 3);
SetTimer("Wait3", 1000, false);
}
forward Wait3();
public Wait3()
{
GameTextForPlayer(playerid, "~g~1", 3000, 3);
SetTimer("WaitGo", 1000, false);
}
forward WaitGo();
public WaitGo()
{
GameTextForPlayer(playerid, "~g~GO", 3000, 3);
}