GetRandomPlayer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(15 intermediate revisions by 12 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==
[[player]] [[GetRandomPlayer]] ()
<syntaxhighlight lang="lua">
 
player getRandomPlayer ( )
===Required Arguments===
</syntaxhighlight>
''This function has no arguments.''
{{OOP||[[Player]].getRandom}}
===Returns===
Returns a random [[player]], ''false'' if the server is empty.


==Example==
==Example==
player = [[GetRandomPlayer]] ( )
This code outputs a random player's name.
[[serverChat]] ( [[GetPlayerName]] ( player ) , " is now the fugitive!" )
<syntaxhighlight lang="lua">
local randomPlayer = getRandomPlayer ( )
outputChatBox ( getPlayerName ( randomPlayer ).." is now the fugitive!" )
</syntaxhighlight>


Edit to fix bad links.
==See Also==
{{Player functions}}
[[pl:getRandomPlayer]]

Latest revision as of 10:27, 16 November 2017