TextDrawDestroy

From SA-MP Wiki

Jump to: navigation, search


Description:

Destroys a previously-created textdraw.


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


Return Values:

This function does not return any specific values.


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.


In other languages