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.
- TextDrawCreate: Create a textdraw.
- TextDrawDestroy: Destroy a textdraw.
- TextDrawShowForAll: Show a textdraw for all players.
- TextDrawShowForPlayer: Show a textdraw for a certain player.
- TextDrawHideForPlayer: Hide a textdraw for a specific player.