TextDisplayAddObserver

From Multi Theft Auto: Wiki
Revision as of 09:46, 14 August 2006 by EAi (talk | contribs)
Jump to navigation Jump to search

This function adds a player as an observer of a textdisplay. This allows the player to see any textitems that the textdisplay contains.

Syntax

void textDisplayAddObserver ( textdisplay display, player playerToAdd )

Required Arguments

Example

display = textCreateDisplay () -- create a new display, store the reference in a variable called display
textDisplayAddObserver ( display, player ) -- add an observer to it
text = textCreateTextItem ( "Hello World", 0.5, 0.5, "low", 255, 0, 0, 0, 1.0 ) -- create a text item
textDisplayAddText ( display, text ) -- Add the text item to the text display

See Also

Template:Text Functions