GetElementSyncer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Server function}} This function gets the syncer of an element. ==Syntax== <syntaxhighlight lang="lua"> bool getElementSyncer ( element theElement ) </syntaxhighlight> ===Required Arguments=== * '''the...)
 
mNo edit summary
Line 5: Line 5:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool getElementSyncer ( element theElement )
element getElementSyncer ( element theElement )
</syntaxhighlight>
</syntaxhighlight>



Revision as of 14:04, 5 March 2009

This function gets the syncer of an element.

Syntax

element getElementSyncer ( element theElement )

Required Arguments


Returns

Returns the element that is the syncer of theElement or false if no syncer is found.

Example

Click to collapse [-]
Server
-- TODO


See Also