IsElementSyncer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 16: Line 16:


==Example==
==Example==
<section name="Clientside example" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- TODO
-- TODO
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>


==See Also==
==See Also==
{{Client element functions}}
{{Client element functions}}
[[Category:Needs Example]]
[[Category:Needs Example]]

Revision as of 13:52, 5 March 2009

This function checks whether an element is a syncer or not. Accepted elements are ped's and vehicle's.

Syntax

bool isElementSyncer ( element theElement )

Required Arguments


Returns

Returns true if the passed element is a syncer, false otherwise.

Example

Click to collapse [-]
Client
-- TODO

See Also