GetRandomPlayer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
==Description==
This function returns a random [[player]] object. It is useful for assigning objectives to random players in a Manhunt mode, for example.
This function returns a random [[player]] object. It is useful for assigning objectives to random players in a Manhunt mode, for example.


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">player GetRandomPlayer ()</syntaxhighlight>
<syntaxhighlight lang="lua">player getRandomPlayer ()</syntaxhighlight>


===Required Arguments===
===Required Arguments===
Line 10: Line 9:


==Example==
==Example==
<syntaxhighlight lang="lua">player = GetRandomPlayer ( )
<syntaxhighlight lang="lua">player = getRandomPlayer ( )
outputChatBox ( GetPlayerName ( player ) , " is now the fugitive!" )</syntaxhighlight>
outputChatBox ( getPlayerName ( player ).."is now the fugitive!" )</syntaxhighlight>


==See Also==
==See Also==
{{Player functions}}
{{Player functions}}

Revision as of 21:41, 13 August 2006