07.01.2010, 01:27
Hey,
I am trying to kill my text draw, im trying to make the textdraw that appears on connect dissapear on spawn put it keeps giving a warning. This is my code.
OnPlayerSpawn:
At the bottom of my script:
Warning:
Please help me
Thank You
I am trying to kill my text draw, im trying to make the textdraw that appears on connect dissapear on spawn put it keeps giving a warning. This is my code.
Код:
Command_Spam = TextDrawCreate(251, 152, "Do not spam"); TextDrawAlignment(Command_Spam, 1); TextDrawFont(Command_Spam, 1); TextDrawLetterSize(Command_Spam, 1.0, 3.0); TextDrawColor(Command_Spam, 0xFF0000FF); TextDrawShowForPlayer(playerid,Command_Spam);
Код:
SetTimer("TextDrawKill",10000,0);
Код:
forward TextDrawKill( ); TextDrawKill( ) { TextDrawDestroy(Command_Spam); }
Код:
warning 203: symbol is never used: "TextDrawKill"
Thank You