PT-BR/getElementType

From Multi Theft Auto: Wiki
Revision as of 14:21, 27 April 2021 by Lettify (talk | contribs) (Translation to Portuguese (Brazil))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Esta função é utilizada para obter o tipo de um elemento.

Sintaxe

string getElementType ( element theElement )  

Sintaxe POO(OOP) Não entendeu o que significa isso?

Método: elemento:getType(...)
Variável: .type

Argumentos Necessários

  • theElement: O elemento que você quer obter o tipo.

Retorna

Retorna uma string indicando o tipo do elemento, false se argumentos inválidos foram especificados.

Exemplo

Click to collapse [-]
Server

Esta função destrói o palheiro quando o jogador o vê.

function onPlayerTarget ( targetElem )
    -- if the targeted object is a haystack (an object with model ID 3374) remove it from the game
    if getElementType ( targetElem ) == "object" and getElementModel ( targetElem ) == 3374 then
        destroyElement ( targetElem )
    end
end
addEventHandler ( "onPlayerTarget", root, onPlayerTarget )    -- add above function as handler for targeting event

Veja também