IsPlayerMuted

From Multi Theft Auto: Wiki
Revision as of 05:16, 15 July 2014 by MarioKart (talk | contribs) (→‎Syntax: OOP syntax added)
Jump to navigation Jump to search

Use this function to check if a player has been muted.

Syntax

bool isPlayerMuted ( player thePlayer )

OOP Syntax Help! I don't understand this!

Method: player:isMuted(...)
Variable: .muted
Counterpart: setPlayerMuted


Required Arguments

  • thePlayer: The player you are checking.

Returns

Returns true if the player is muted and false otherwise.

Example

someguy = getPlayerFromName ( "someGuy" )
if isPlayerMuted ( someguy ) then
   outputChatBox ( "It seems Someguy can't speak." )
end

See Also