04.03.2011, 18:40
You must create the TextDraw
at the begin of the script
So at OnGameModeInIt you have to create:
and down
if you want to make the textdraw to dissapear write
at the begin of the script
Код:
new Text:TextDraw
Код:
TextDraw = TextDrawCreate(x,y,"text"); SetTimer("Red",1000,true);
Код:
forward Red(); public Red() { TextDrawShowForAll(TextDraw); }
Код:
HideTextDrawForAll(TextDraw);