GetElementType: Difference between revisions
Jump to navigation
Jump to search
m (fix oop syntax) |
m (fixed a mistake) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 25: | Line 25: | ||
end | end | ||
end | end | ||
addEventHandler ( "onPlayerTarget", | addEventHandler ( "onPlayerTarget", root, onPlayerTarget ) -- add above function as handler for targeting event | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> | ||
Line 31: | Line 31: | ||
==See Also== | ==See Also== | ||
{{Element functions}} | {{Element functions}} | ||
[[pt-br:getElementType]] |
Latest revision as of 14:25, 27 April 2021
This function is used to retrieve the type of an element.
Syntax
string getElementType ( element theElement )
OOP Syntax Help! I don't understand this!
- Method: element:getType(...)
- Variable: .type
Required Arguments
- theElement: The element you wish to get the type of.
Returns
Returns a string containing the element type, false if invalid arguments were passed.
Example
Click to collapse [-]
ServerThis example destroys a haystack when a player targets it
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
See Also
- attachElements
- createElement
- destroyElement
- detachElements
- getAttachedElements
- getElementAlpha
- getElementAttachedOffsets
- getElementAttachedTo
- getElementByIndex
- getElementByID
- getElementChild
- getElementChildren
- getElementChildrenCount
- getElementCollisionsEnabled
- getElementColShape
- getElementData
- getAllElementData
- hasElementData
- getElementDimension
- getElementHealth
- getElementID
- getElementInterior
- getElementMatrix
- getElementModel
- getElementParent
- getElementPosition
- getElementRotation
- getElementsByType
- getElementsWithinColShape
- getElementsWithinRange
- getElementType
- getElementVelocity
- getLowLODElement
- getRootElement
- isElement
- isElementAttached
- isElementCallPropagationEnabled
- isElementDoubleSided
- isElementFrozen
- isElementInWater
- isElementLowLOD
- isElementWithinColShape
- isElementWithinMarker
- setElementAlpha
- setElementAngularVelocity
- getElementAngularVelocity
- setElementAttachedOffsets
- setElementCallPropagationEnabled
- setElementCollisionsEnabled
- setElementData
- setElementDimension
- setElementDoubleSided
- setElementFrozen
- setElementHealth
- setElementID
- setElementInterior
- setElementModel
- setElementParent
- setElementPosition
- setElementRotation
- setElementVelocity
- setLowLODElement
- getPedContactElement
- getResourceDynamicElementRoot
- getResourceRootElement