IT/isPlayerMuted

From Multi Theft Auto: Wiki
Jump to navigation Jump to search


« Torna alla Pagina principale italiana .

Questa funzione verifica se un player è stato 'zittito', cioè se gli è impedito di inviare messaggi in chat.

Sintassi

bool isPlayerMuted ( player thePlayer )

Argomenti richiesti

  • thePlayer: Il player che vuoi controllare.

Valori restituiti

Restituisce true se il player è stato 'zittito', altrimenti false.

Esempio

tizio = getPlayerFromNick ( "Tizio" )
if ( isPlayerMuted ( tizio ) then
   outputChatBox ( "Tizio non può scrivere in chat." )
end

Vedere anche