08.09.2013, 18:30
(
Последний раз редактировалось alex9419; 08.09.2013 в 19:23.
)
You could also use GameTextForPlayer?
If not, a timer (SetTimerEx) calling a public function to hide your TextDraw, like so:
If not, a timer (SetTimerEx) calling a public function to hide your TextDraw, like so:
Код:
public OnPlayerSpawn(playerid) { SetTimerEx("function_name", 5000, false, "i", playerid); // Change 'function_name' to whatever. } public function_name(playerid) // Change 'function_name' to whatever. { TextDrawHideForPlayer(playerid, your_textdraw); // If global textdraw PlayerTextDrawHide(playerid, your_playertextdraw); // If player textdraw }