IsPlayerMuted: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(No difference)

Revision as of 23:55, 28 March 2006

Description

This function returns a true or false if a player has been muted.

Syntax

bool isPlayerMuted ( player player )

Required Arguments

  • player: The player you are checking.

Example

if ( isPlayerMuted ( findPlayer ( "Someguy" ) ) then
  serverChat ( "It seems Someguy can't speak to you." )
end