TextDrawHideForAll
From SA-MP Wiki
Description:
Hides a text draw for all players.
(Text:text)
text | The ID of the textdraw to hide (returned by TextDrawCreate). |
Return Values:
This function does not return any specific values.
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.
- TextDrawShowForPlayer: Show a textdraw for a certain player.
- TextDrawHideForPlayer: Hide a textdraw for a certain player.
- TextDrawShowForAll: Show a textdraw for all players.