Pular para o conteúdo principal

TextDrawDestroy

Descrição

Destrói um textdraw criado anteriormente.

NomeDescrição
Text:textidO ID do textdraw a ser destruído. Retornado por TextDrawCreate.

Retornos

Esta função não retorna nenhum valor específico.

Exemplos

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(240.0, 580.0, "Welcome to my OPEN.MP server");
return 1;
}

public OnGameModeExit()
{
TextDrawDestroy(gMyTextdraw);
return 1;
}

Funções Relacionadas