OnElementStopSync
		
		
		
		Jump to navigation
		Jump to search
		
| Script Example Missing Event OnElementStopSync needs a script example, help out by writing one. | |
Before submitting check out Editing Guidelines Script Examples.  | 
This event is triggered when an element is no longer synced by a player.
Parameters
player oldSyncer
- oldSyncer: player element representing the last player who was syncing the element
 
Source
The source of this event is the element which is no longer synced by a player.
Click to collapse [-]
Exampleveh = createVehicle(520, 0,0,4) --  create our testing vehicle
function syncStop()
if source == veh then -- check if the element that stopped getting synced was our vehicle
outputChatBox("You stopped syncing the vehicle!!",oldSyncer) -- tell the player he stopped syncing the vehicle ( veh )
end
end
addEventHandler("onElementStopSync",getRootElement(),syncStop) --  onElementStopSync, the function syncStop gets called
See Also
Element events
- onElementClicked
 - onElementColShapeHit
 - onElementColShapeLeave
 - onElementDataChange
 - onElementDestroy
 - onElementDimensionChange
 - onElementInteriorChange
 - onElementModelChange
 - onElementStartSync
 - onElementStopSync
 
Event functions
- addEvent
 - addEventHandler
 - cancelEvent
 - cancelLatentEvent
 - getEventHandlers
 - getLatentEventHandles
 - getLatentEventStatus
 - removeEventHandler
 - triggerEvent
 - wasEventCancelled