TextDrawHideForAll

From SA-MP Wiki

Jump to: navigation, search


Description:

Hides a text draw for all players.


Parameters:
(Text:text)
textThe ID of the textdraw to hide (returned by TextDrawCreate).


Return Values:

  • 1: The function executed successfully.
  • 0: The function failed to execute. This means the textdraw specified does not exist.


new TextID;
 
TextID = TextDrawCreate(...);
 
 
//Later on
TextDrawShowForAll(TextID);
 
//Even later on
TextDrawHideForAll(TextID);

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

In other languages