IT/isPlayerMuted: Difference between revisions

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


===Argomenti richiesti===
===Argomenti richiesti===
*'''thePlayer:''' Il [[IT/player|player]] che vuoi controllare.
*'''thePlayer:''' Il [[IT/Elemento/Player|player]] che vuoi controllare.


===Valori restituiti===
===Valori restituiti===

Revision as of 22:09, 6 June 2008


« 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