PlayerTextDrawDestroy

PlayerTextDrawDestroy

Description:
Function PlayerTextDrawDestroy destroy a player-textdraw.
Function PlayerTextDrawDestroy was added in 0.3e and will not work in earlier versions!


Parameters:
(playerid, PlayerText:text)
int playerid The ID of the player who's player-textdraw to destroy.
int text The ID of the textdraw to destroy.


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


Examples:
new PlayerText:pTextdraw[MAX_PLAYERS];
 
public OnPlayerConnect(playerid)
{
    pTextdraw[playerid] = CreatePlayerTextDraw(playerid, x, y, "...");
    return 1;
}
 
public OnPlayerDisconnect(playerid, reason)
{
    PlayerTextDrawDestroy(playerid, pTextdraw[playerid]);
    return 1;
}


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