TextDrawShowForAll
From SA-MP Wiki
Description:
Shows a textdraw for all players.
(Text:text)
text | The ID of the textdraw to show. Returned by TextDrawCreate. |
Return Values:
- 1: The function executed successfully.
- 0: The function failed to execute. This means the textdraw specified does not exist.
Example Usage:
new Text:textid = TextDrawCreate(100.0, 100.0, "Hello!"); TextDrawShowForAll(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.
- TextDrawHideForAll: Hide a textdraw for all players.