TextDisplayGetObservers: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(not complete yet)
 
No edit summary
Line 2: Line 2:
{{Server function}}
{{Server function}}


 
This function gets the [[player]]s observers of a [[textdisplay]].


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">--TODO</syntaxhighlight>
<syntaxhighlight lang="lua">table textDisplayGetObservers ( textdisplay theDisplay )</syntaxhighlight>


===Required Arguments===
===Required Arguments===
* '''theDisplay''': The [[textdisplay]].


===Returns===
===Returns===
Returns a table of players that are observers from the display, othetwise ''false''
==Example==
<section name="Server" class="server" show="true">
<syntaxhighlight lang="lua">
--TODO
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Text functions}}
{{Text functions}}


[[Category:incomplete]]
[[Category:Needs Example]]
[[Category:Needs Example]]

Revision as of 05:42, 22 June 2009

This function gets the players observers of a textdisplay.

Syntax

table textDisplayGetObservers ( textdisplay theDisplay )

Required Arguments

Returns

Returns a table of players that are observers from the display, othetwise false

Example

Click to collapse [-]
Server
--TODO

See Also