IsElementWaitingForGroundToLoad: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 23: | Line 23: | ||
local function notifyFarRespawnOnMap() | local function notifyFarRespawnOnMap() | ||
if isElementWaitingForGroundToLoad(source) then | if isElementWaitingForGroundToLoad(source) then | ||
outputChatBox("* A " .. getVehicleName(source) .. " respawned above an object which is far away! Find it quick!" | outputChatBox("* A " .. getVehicleName(source) .. " respawned above an object which is far away! Find it quick!", 128, 255, 0) | ||
end | end | ||
end | end |
Latest revision as of 22:14, 8 August 2018
This function checks whether MTA has frozen an element because it is above map objects which are still loading or not.
Syntax
bool isElementWaitingForGroundToLoad ( element theElement )
OOP Syntax Help! I don't understand this!
- Method: element:isWaitingForGroundToLoad(...)
- Variable: .waitingForGroundToLoad
Required arguments
- theElement: the element to check its frozen waiting for custom map objects to load status. It can be a vehicle, ped or player.
Returns
Returns true if the specified element is frozen waiting for collisions of custom map objects to load. Returns false if it's not or if the specified element is invalid.
Example
Click to collapse [-]
Clientside exampleThe next code snippet outputs a message when a vehicle respawns far away from players, above an object.
local function notifyFarRespawnOnMap() if isElementWaitingForGroundToLoad(source) then outputChatBox("* A " .. getVehicleName(source) .. " respawned above an object which is far away! Find it quick!", 128, 255, 0) end end addEventHandler("onClientVehicleRespawn", root, notifyFarRespawnOnMap)
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