04.03.2011, 18:13
Hello!
I made a settimer.In which it will show a message in a fixed time.
Look at this script below..
I want to set that message to a textdraw.Is it possible? If yes ,then how?
I made a settimer.In which it will show a message in a fixed time.
Look at this script below..
pawn Код:
SetTimer("Red",1000,true);
pawn Код:
forward Red();
public Red()
{
new playerid;
SendClientMessage(playerid,RED,"One second has passed");
}