addElementDataSubscriber | Multi Theft Auto: Wiki Skip to content

addElementDataSubscriber

Client-side
Server-side
Shared

Pair: removeElementDataSubscriber

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 subscribes a player to specific element data. This function is used together with setElementData in "subscribe" mode.

Note

Before using this function you need to setup an initial value of element data in "subscribe" mode, otherwise the subscriber will not be added.

Note

Calling removeElementData or setElementData with other sync mode will automatically remove all subscribers of specified element data.

Syntax

addElementDataSubscriber ( )

Code Examples

server
addEventHandler("onVehicleEnter", getRootElement(), function(thePlayer, seat)
if seat==0 then -- if the player is a driver
addElementDataSubscriber(source, "id", thePlayer) -- subscribe the player to element
end
end)

See Also

Element Functions