OnElementStartSync: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Fixed code example header, added additional example)
Line 31: Line 31:
</syntaxhighlight>
</syntaxhighlight>


This example will prevent vehicles from entering an area protected by a colshape, by automatically destroying them upon enter.
This example will prevent vehicles from entering an area covered by a colshape, by automatically destroying them upon enter.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local myColShape = createColCuboid(1000, -800, 900, 1000, 1000, 1000)
local myColShape = createColCuboid(1000, -800, 900, 1000, 1000, 1000)

Revision as of 14:05, 22 September 2018

This event is triggered when an element becomes synced by a player.

Parameters

player newSyncer
  • newSyncer: a player element representing the player who is now syncing the element.

Source

The source of this event is the element that got synced by a player.

Example

Click to collapse [-]
Server

This example matches the model of the element to the player, when an element receives a new syncer.

function elementStartSync( newSyncer )
    local strElementType = getElementType( source )
    local playerVehicle = getPedOccupiedVehicle( newSyncer )
    if ( strElementType == 'vehicle' ) then
        if ( not playerVehicle ) then return false end
        
        setElementModel( source, getElementModel(playerVehicle) )
    elseif ( strElementType == 'ped' ) then
        setElementModel( source, getElementModel(newSyncer) )
    end
end
addEventHandler ('onElementStartSync', root, elementStartSync)

This example will prevent vehicles from entering an area covered by a colshape, by automatically destroying them upon enter.

local myColShape = createColCuboid(1000, -800, 900, 1000, 1000, 1000)


function checkSyncOfVehicles()
	if isElement(source) and getElementType (source) == "vehicle" and isElementWithinColShape(source, myColShape) then
		destroyElement (source)
	end
end
addEventHandler ("onElementStartSync", root, checkSyncOfVehicles)

See Also

Element events


Event functions