IsElementSyncer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Needs_Example}}
This function checks whether an [[element]] is synced by the local player or not. Accepted elements are [[ped]]'s and [[vehicle]]'s.
This function checks whether an [[element]] is synced by the local player or not. Accepted elements are [[ped]]'s and [[vehicle]]'s.


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

Revision as of 12:53, 2 January 2014

Accessories-text-editor.png Script Example Missing Function IsElementSyncer needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

This function checks whether an element is synced by the local player 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 synced by the local player, false otherwise.

Example

Click to collapse [-]
Client
-- TODO

See Also