PlayerTextDrawDestroy

From SA-MP Wiki

Jump to: navigation, search


PlayerTextDrawDestroy was added in SA-MP 0.3e This feature (player-textdraws) was added in SA-MP 0.3e and will not work in earlier versions!


Description:

Destroy a player-textdraw.


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


Return Values:

This function does not return any specific values.


Example Usage:

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.