TextDrawDestroy

TextDrawDestroy

Description:
Function TextDrawDestroy destroys a previously-created textdraw.


Parameters:
(Text:text)
int text The ID of the textdraw to destroy. Returned by TextDrawCreate.


Return Values:
This function does not return any specific values.


Examples:
new Text:textdraw[MAX_PLAYERS];
 
public OnPlayerConnect(playerid)
{
    textdraw[playerid] = TextDrawCreate(...);
    return 1;
}
 
public OnPlayerDisconnect(playerid, reason)
{
    TextDrawDestroy(textdraw[playerid]);
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.