What is this?
#5

Use a timer and check if the player is in range of that point. If the player is in range, then use TextDrawShowForPlayer to show the textdraw to the player and set a timer:
pawn Код:
SetTimerEx( "HideATMTD", 10000, false, "i", playerid );
Then, when HideATMTD will be called, hide the textdraw with TextDrawHideForPlayer:
pawn Код:
forward HideATMTD( playerid );
public HideATMTD( playerid )
{
    TextDrawHideForPlayer( ... ); // EDIT THE PARAMETERS.
}
Reply


Messages In This Thread
What is this? - by Gianmarco - 07.11.2013, 15:41
Re: What is this? - by Konstantinos - 07.11.2013, 15:59
Re: What is this? - by Gianmarco - 07.11.2013, 16:46
Re: What is this? - by StuartD - 07.11.2013, 16:48
Re: What is this? - by Konstantinos - 07.11.2013, 16:51
Re: What is this? - by Gianmarco - 07.11.2013, 17:03

Forum Jump:


Users browsing this thread: 2 Guest(s)