IsElementCallPropagationEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server_client function}} {{Needs_Example}} This functions checks if certain element has call propagation enabled. ==Syntax== <syntaxhighlight lang="lua">bool isElementCallProp...")
 
mNo edit summary
Line 19: Line 19:


==See Also==
==See Also==
{{Utility functions}}
{{Element functions}}

Revision as of 23:05, 9 June 2014

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

Before submitting check out Editing Guidelines Script Examples.

This functions checks if certain element has call propagation enabled.

Syntax

bool isElementCallPropagationEnabled ( element theElement )

Required Arguments

  • theElement: The element to check

Returns

Returns true if the propagation is enabled, false if disabled or invalid arguments have been passed.

Example

--Todo

See Also