GetRandomPlayer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(12 intermediate revisions by 11 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
==Description==
{{Server function}}
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]].


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">player GetRandomPlayer ()</syntaxhighlight>
<syntaxhighlight lang="lua">
player getRandomPlayer ( )
</syntaxhighlight>
{{OOP||[[Player]].getRandom}}
===Returns===
Returns a random [[player]], ''false'' if the server is empty.


===Required Arguments===
==Example==
''This function has no arguments.''
This code outputs a random player's name.
<syntaxhighlight lang="lua">
local randomPlayer = getRandomPlayer ( )
outputChatBox ( getPlayerName ( randomPlayer ).." is now the fugitive!" )
</syntaxhighlight>


==Example==
==See Also==
<syntaxhighlight lang="lua">player = GetRandomPlayer ( )
{{Player functions}}
outputChatBox ( GetPlayerName ( player ) , " is now the fugitive!" )</syntaxhighlight>
[[pl:getRandomPlayer]]

Latest revision as of 10:27, 16 November 2017