PT-BR/getElementType: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Translation to Portuguese (Brazil))
 
No edit summary
 
Line 7: Line 7:
string getElementType ( element theElement )   
string getElementType ( element theElement )   
</syntaxhighlight>  
</syntaxhighlight>  
{{BR/OOP||[[elemento]]:getType|type|}}
{{BR/OOP||[[element]]:getType|type|}}


===Argumentos Necessários===  
===Argumentos Necessários===  

Latest revision as of 03:04, 5 December 2022

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: element: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