IsPlayerMapVisible: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Needs_Example}}
 
This function checks if the local player has their map showing
[[Image:MTAsa_Default_Map.png|thumb|224px|Screenshot of the default map]]
 
This function checks if the local player has their map showing.


==Syntax==
==Syntax==
Line 13: Line 15:
<section name="Example 1" class="client" show="true"><syntaxhighlight lang="lua">
<section name="Example 1" class="client" show="true"><syntaxhighlight lang="lua">
function checkMap()
function checkMap()
if isPlayerMapVisible() then -- check if the player has his map visible
  local text = (isPlayerMapVisible() and "You are currently viewing your map!") or "Your map is not visible!"
outputChatBox("You are currently viewing your map!", 255, 255, 0) -- output text if it's visible
  outputChatBox(text, 255, 255, 0) -- output text  
else
outputChatBox("Your map is not visible!", 255, 255, 0) -- output text if it's not visible
end
end
end
addCommandHandler("map", checkMap) -- add '/map' command to the check
addCommandHandler("map", checkMap) -- add '/map' command to the check
Line 24: Line 23:
<section name="Example 2" class="client" show="true"><syntaxhighlight lang="lua">
<section name="Example 2" class="client" show="true"><syntaxhighlight lang="lua">
function showMap()
function showMap()
if isPlayerMapVisible() then
  if isPlayerMapVisible() then
outputChatBox("Radar closed", 0, 255, 0)
      outputChatBox("Radar closed", 0, 255, 0)
forcePlayerMap(false)
      forcePlayerMap(false)
else
  else
outputChatBox("Viewing radar", 0, 255, 0)
      outputChatBox("Viewing radar", 0, 255, 0)
forcePlayerMap(true)
      forcePlayerMap(true)
end
  end
end
end
addCommandHandler("showmap", showMap)
addCommandHandler("showmap", showMap)

Latest revision as of 16:31, 23 June 2018

Screenshot of the default map

This function checks if the local player has their map showing.

Syntax

bool isPlayerMapVisible ()

Returns

Returns true if the player has the map visible, false otherwise.

Example

Click to collapse [-]
Example 1
function checkMap()
   local text = (isPlayerMapVisible() and "You are currently viewing your map!") or "Your map is not visible!"
   outputChatBox(text, 255, 255, 0) -- output text 
end
addCommandHandler("map", checkMap) -- add '/map' command to the check
Click to collapse [-]
Example 2
function showMap()
   if isPlayerMapVisible() then
      outputChatBox("Radar closed", 0, 255, 0)
      forcePlayerMap(false)
   else
      outputChatBox("Viewing radar", 0, 255, 0)
      forcePlayerMap(true)
   end
end
addCommandHandler("showmap", showMap)

See Also