TextDrawShowForAll

TextDrawShowForAll

Description:
Function TextDrawShowForAll shows a textdraw for all players.


Parameters:
(Text:text)
int text The ID of the textdraw to show. 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 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.