isElementWaitingForGroundToLoad | Multi Theft Auto: Wiki Skip to content

isElementWaitingForGroundToLoad

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function checks whether MTA has frozen an element because it is above map objects which are still loading or not.

Note

When vehicles are frozen waiting for collisions to load they do not overwrite the frozen status set by setElementFrozen .

Syntax

isElementWaitingForGroundToLoad ( )

Code Examples

client

The next code snippet outputs a message when a vehicle respawns far away from players, above anobject.

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

Element Functions