IsPlayerMapVisible: Difference between revisions
Jump to navigation
Jump to search
Gravestone (talk | contribs) |
(Removed {{Needs Example}}) |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
This function checks if the local player has their map showing | This function checks if the local player has their map showing | ||
Line 13: | Line 12: | ||
<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() | ||
local text = (isPlayerMapVisible() and "You are currently viewing your map!") or "Your map is not visible!" | |||
outputChatBox(text, 255, 255, 0) -- output text | |||
end | end | ||
addCommandHandler("map", checkMap) -- add '/map' command to the check | addCommandHandler("map", checkMap) -- add '/map' command to the check | ||
Line 24: | Line 20: | ||
<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 | |||
outputChatBox("Radar closed", 0, 255, 0) | |||
forcePlayerMap(false) | |||
else | |||
outputChatBox("Viewing radar", 0, 255, 0) | |||
forcePlayerMap(true) | |||
end | |||
end | end | ||
addCommandHandler("showmap", showMap) | addCommandHandler("showmap", showMap) |
Revision as of 20:22, 9 October 2016
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 1function 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 2function 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
- getLocalPlayer
- getPlayerMapBoundingBox
- getPlayerMapOpacity
- isPlayerMapVisible
- resetBlurLevel
- isPlayerHudComponentVisible
- Shared
- getPlayerTeam
- getPlayerBlurLevel
- setPlayerBlurLevel
- getPlayerSerial
- forcePlayerMap
- getPlayerScriptDebugLevel
- getPlayerFromName
- getPlayerMoney
- getPlayerName
- getPlayerNametagColor
- getPlayerNametagText
- getPlayerPing
- getPlayerWantedLevel
- givePlayerMoney
- isPlayerMapForced
- isPlayerNametagShowing
- setPlayerHudComponentVisible
- setPlayerMoney
- setPlayerNametagColor
- setPlayerNametagShowing
- setPlayerNametagText
- takePlayerMoney
- countPlayersInTeam
- getPlayersInTeam
- isVoiceEnabled
- setControlState
- getControlState