TextDrawHideForAll

TextDrawHideForAll

Description:
Function TextDrawHideForAll hides a text draw for all players.


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


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


Examples:
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.