OnClientElementStreamOut: Difference between revisions
Jump to navigation
Jump to search
(New page: {{Client event}} __NOTOC__ This event is triggered whenever a physical element is streamed out. This is triggered for all elements that are streamable, such as players, peds, vehicles, ob...) |
|||
Line 7: | Line 7: | ||
==Example== | ==Example== | ||
This example shows you how to tell player that a marker was streamed out and the distance between player and the marker. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
addEventHandler( "onClientElementStreamOut", getRootElement( ), | |||
function ( ) | |||
if getElementType( source ) == "marker" then | |||
local myPosTab = { getElementPosition( getLocalPlayer( ) ) }; | |||
local markerPosTab = { getElementPosition( source ) }; | |||
local distance = getDistanceBetweenPoints3D( unpack( myPosTab ), unpack( markerPosTab ) ); | |||
outputChatBox( "A marker has just streamed out. Distance to the marker: " .. tostring( distance ) .."." ); | |||
end | |||
end | |||
); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 17:28, 5 October 2009
This event is triggered whenever a physical element is streamed out. This is triggered for all elements that are streamable, such as players, peds, vehicles, objects and markers when the local player is leaving the element. When this event is triggered, that element is no longer physical and is now virtualized by MTA.
Source
The source of this event is the element that streamed out
Example
This example shows you how to tell player that a marker was streamed out and the distance between player and the marker.
addEventHandler( "onClientElementStreamOut", getRootElement( ), function ( ) if getElementType( source ) == "marker" then local myPosTab = { getElementPosition( getLocalPlayer( ) ) }; local markerPosTab = { getElementPosition( source ) }; local distance = getDistanceBetweenPoints3D( unpack( myPosTab ), unpack( markerPosTab ) ); outputChatBox( "A marker has just streamed out. Distance to the marker: " .. tostring( distance ) .."." ); end end );
See Also
Client element events
- onClientElementColShapeHit
- onClientElementColShapeLeave
- onClientElementDataChange
- onClientElementDestroy
- onClientElementDimensionChange
- onClientElementInteriorChange
- onClientElementModelChange
- onClientElementStreamIn
- onClientElementStreamOut