03.01.2013, 21:55
Hello!
I just wonder if is possible to show the secounds of a timmer in a GameText or a Dialog if so, how?
I just wonder if is possible to show the secounds of a timmer in a GameText or a Dialog if so, how?
new TimerID,TimerCheck; //Put This in Top of Script.
StartTimer("Function",10000,TimerID,false);
TimerCheck = SetTimerEx("GameText",1000,true,"d",TimerID);
public GameText(TimerID)
{
if(GetTimer(TimerID) > 0) return printf("Seconds of TimerID(%d): %d",TimerID,GetTimer(TimerID));
KillTimer(TimerCheck);
return 1;
}