21.09.2015, 13:33
pawn Код:
new Timer;
public OnGameModeInit()
{
SetTimer("TestFunction",1000,false);
}
forward TestFunction();
public TestFunction()
{
if(Timer != 2) Timer ++;//2 minutes past and the timers start working :D
if(Timer == 2)
{
//Code
}
}