Hide textdraws
#7

You could also use GameTextForPlayer?

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
}
Reply


Messages In This Thread
Hide textdraws - by Ananisiki - 08.09.2013, 17:12
Re: Hide textdraws - by [HK]Ryder[AN] - 08.09.2013, 17:16
Re: Hide textdraws - by doreto - 08.09.2013, 17:18
Re: Hide textdraws - by [HK]Ryder[AN] - 08.09.2013, 17:20
Re: Hide textdraws - by Lidor124 - 08.09.2013, 18:20
Re: Hide textdraws - by Ananisiki - 08.09.2013, 18:22
Re: Hide textdraws - by alex9419 - 08.09.2013, 18:30
Re: Hide textdraws - by PrinceKumar - 08.09.2013, 18:49

Forum Jump:


Users browsing this thread: 1 Guest(s)