PT-BR/forcePlayerMap: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Server client function}} __NOTOC__ This function is used to forcefully show a player's radar map. ==Syntax== <section name="Server" class="server" show="true"> <syntaxhighl...")
 
No edit summary
Line 1: Line 1:
{{Server client function}}
{{Server client function}}
__NOTOC__
__NOTOC__
This function is used to forcefully show a player's radar map.
Esta função é usada para forçar a visibilidade do mapa na tela do jogador. Quando forçado, o jogador não consegue esconder este mapa (nem mesmo pressionando F11).


==Syntax==
==Syntax==
Line 7: Line 7:
<syntaxhighlight lang="lua">bool forcePlayerMap ( player thePlayer, bool forceOn )</syntaxhighlight>
<syntaxhighlight lang="lua">bool forcePlayerMap ( player thePlayer, bool forceOn )</syntaxhighlight>
{{OOP||[[player]]:forceMap|mapForced|isPlayerMapForced}}
{{OOP||[[player]]:forceMap|mapForced|isPlayerMapForced}}
===Required Arguments===
===Required Arguments===
*'''thePlayer''': A [[player]] object referencing the specified player
*'''thePlayer''': Um objeto do tipo [[player|jogador]] que representa o jogador ao qual você quer forçar a visibilidade do mapa.
*'''forceOn''': A boolean value representing whether or not the players radar map will be forced on
*'''forceOn''': Um valor booleano que representa se você quer ou não forçar a visibilidade do mapa.
 
</section>
</section>
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">bool forcePlayerMap ( bool forceOn )</syntaxhighlight>
<syntaxhighlight lang="lua">bool forcePlayerMap ( bool forceOn )</syntaxhighlight>
{{OOP||[[Player]].forceMap||isPlayerMapForced}}
{{OOP||[[Player]].forceMap||isPlayerMapForced}}
===Required Arguments===
===Required Arguments===
*'''forceOn''': A boolean value representing whether or not the players radar map will be forced on
*'''forceOn''': Um valor booleano que representa se você quer ou não forçar a visibilidade do mapa.
</section>
</section>
===Returns===
===Returns===
Returns ''true'' if the player's radar map was forced on, ''false'' otherwise.
Retorna ''true'' se a visibilidade do mapa foi forçada com sucesso, ou ''falso'' caso contrário.


==Example==
==Example==
This example forces the radar map to show for the player named "dave" on for 10 seconds, if it hasn't been already.
Este exemplo mostra como forçar a visibilidade do mapa para um jogador com o nick "dave" por 10 segundos, caso a visibilidade do mapa ainda não esteja sendo forçada.
 
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- Get the player named "dave"
-- Pega o jogador com o nick "dave"
dave = getPlayerFromName ( "dave" )
dave = getPlayerFromName ( "dave" )
-- Make sure we found him
 
-- Garante que o jogador existe
if ( dave ) then
if ( dave ) then
     if not isPlayerMapForced ( dave ) then                  -- if his radar map isn't already forced on
     if not isPlayerMapForced ( dave ) then                  -- se a visibilidade já não está forçada
         forcePlayerMap ( dave, true )                      -- force it on
         forcePlayerMap ( dave, true )                      -- forçamos a visibilidade
         setTimer ( forcePlayerMap, 10000, 1, dave, false )  -- stop forcing in 10 seconds
         setTimer ( forcePlayerMap, 10000, 1, dave, false )  -- para de forçar em 10 segundos
     end
     end
end
end

Revision as of 23:59, 27 September 2017

Esta função é usada para forçar a visibilidade do mapa na tela do jogador. Quando forçado, o jogador não consegue esconder este mapa (nem mesmo pressionando F11).

Syntax

Click to collapse [-]
Server
bool forcePlayerMap ( player thePlayer, bool forceOn )

OOP Syntax Help! I don't understand this!

Method: player:forceMap(...)
Variable: .mapForced
Counterpart: isPlayerMapForced


Required Arguments

  • thePlayer: Um objeto do tipo jogador que representa o jogador ao qual você quer forçar a visibilidade do mapa.
  • forceOn: Um valor booleano que representa se você quer ou não forçar a visibilidade do mapa.
Click to collapse [-]
Client
bool forcePlayerMap ( bool forceOn )

OOP Syntax Help! I don't understand this!

Method: Player.forceMap(...)
Counterpart: isPlayerMapForced


Required Arguments

  • forceOn: Um valor booleano que representa se você quer ou não forçar a visibilidade do mapa.

Returns

Retorna true se a visibilidade do mapa foi forçada com sucesso, ou falso caso contrário.

Example

Este exemplo mostra como forçar a visibilidade do mapa para um jogador com o nick "dave" por 10 segundos, caso a visibilidade do mapa ainda não esteja sendo forçada.

-- Pega o jogador com o nick "dave"
dave = getPlayerFromName ( "dave" )

-- Garante que o jogador existe
if ( dave ) then
    if not isPlayerMapForced ( dave ) then                  -- se a visibilidade já não está forçada
        forcePlayerMap ( dave, true )                       -- forçamos a visibilidade
        setTimer ( forcePlayerMap, 10000, 1, dave, false )  -- para de forçar em 10 segundos
    end
end

See Also