TextDisplayRemoveObserver: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
==Description==
{{Server function}}
This function removes a [[player]] observer of a [[textdisplay]]. This stops the [[player]] from being able to see [[textitem]]s that the [[textdisplay]] contains.
This function removes a [[player]] observer of a [[textdisplay]]. This stops the [[player]] from being able to see [[textitem]]s that the [[textdisplay]] contains.


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">void textDisplayRemoveObserver ( textdisplay textDisplay, player playerToRemove )</syntaxhighlight>
<syntaxhighlight lang="lua">bool textDisplayRemoveObserver ( textdisplay display, player playerToRemove )</syntaxhighlight>


===Required Arguments===
===Required Arguments===


* '''textDisplay''': The [[textdisplay]] to add the [[player]] to as an observer.
* '''display''': The [[textdisplay]] to remove the [[player]] from as an observer.
* '''playerToRemove ''': The [[player]] that should be removed from the [[textdisplay]].
* '''playerToRemove''': The [[player]] that should be removed from the [[textdisplay]].


==Example==
==Example==
<syntaxhighlight lang="lua">textDisplay = textCreateDisplay ()
This example creates a new display and a "Hello World" text item for a player.  It then removes it from his screen 5 seconds later
textDisplayAddObserver ( textDisplay, player )
<syntaxhighlight lang="lua">display = textCreateDisplay ( ) --create the display
textDisplayRemoveObserver ( textDisplay, player )
textDisplayAddObserver ( display, thePlayer ) --add an observer
textItem = textCreateTextItem ( "Hello World", 0.5, 0.5, "low", 255, 0, 0, 0, 1.0 )
newtextitem = textCreateTextItem ( "Hello World", 0.5, 0.5, "low", 255, 0, 0, 0, 1.0 ) --create our "Hello World" text item
textDisplayAddText ( textDisplay, textItem )</syntaxhighlight>
textDisplayAddText ( display, newtextitem ) --add this to the display
setTimer ( textDisplayRemoveObserver, 5000,1, display, thePlayer ) --set a timer to remove this 5 seconds later.
</syntaxhighlight>


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

Latest revision as of 14:01, 21 September 2011

This function removes a player observer of a textdisplay. This stops the player from being able to see textitems that the textdisplay contains.

Syntax

bool textDisplayRemoveObserver ( textdisplay display, player playerToRemove )

Required Arguments

Example

This example creates a new display and a "Hello World" text item for a player. It then removes it from his screen 5 seconds later

display = textCreateDisplay ( ) --create the display
textDisplayAddObserver ( display, thePlayer ) --add an observer
newtextitem = textCreateTextItem ( "Hello World", 0.5, 0.5, "low", 255, 0, 0, 0, 1.0 ) --create our "Hello World" text item
textDisplayAddText ( display, newtextitem ) --add this to the display
setTimer ( textDisplayRemoveObserver, 5000,1, display, thePlayer ) --set a timer to remove this 5 seconds later.

See Also