warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
TextDrawHideForAll
Description
Hides a text draw for all players.
Name | Description |
---|---|
Text:textid | The ID of the textdraw to hide. Returned by TextDrawCreate. |
Returns
This function does not return any specific values.
Examples
new Text:gMyTextdraw;
public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(240.0, 580.0, "Example Text");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/showtd", true))
{
TextDrawShowForAll(gMyTextdraw);
return 1;
}
if (!strcmp(cmdtext, "/hidetd", true))
{
TextDrawHideForAll(gMyTextdraw);
return 1;
}
return 0;
}
Related Functions
- TextDrawShowForPlayer: Show a textdraw for a certain player.
- TextDrawHideForPlayer: Hide a textdraw for a certain player.
- TextDrawShowForAll: Show a textdraw for all players.