Jump to content

[Help] How to disable minimap


Recommended Posts

  • Forum Moderator

(2.5) Questions & Answers specific rules

  • Don't modify your thread (or reply to it) to mark it solved, and not explain the solution to the issue.

For these who wants this, there're two simple methods:

  •  1. Disable for all maps.

This is the hidden content, please

  • 2. Disable for a specific map.
# Search in CANNOT_SEE_INFO_MAP_DICT for:
		"metin2_map_devilsCatacomb" : False,
# Add after:
		"metin2_your_map_name" : False,
  • Metin2 Dev 16
  • Lmao 1
  • Good 4
  • Love 2
  • Love 13
Link to comment
Share on other sites

  • 2 years later...
On 12/2/2019 at 9:27 PM, VegaS™ said:

(2.5) Questions & Answers specific rules

  • Don't modify your thread (or reply to it) to mark it solved, and not explain the solution to the issue.

For these who wants this, there're two simple methods:

  •  1. Disable for all maps.

 

Hidden Content

 

# Search for:
	def SetMapName(self, mapName):
		self.mapName=mapName
		self.AtlasWindow.SetMapName(mapName)

		if self.CANNOT_SEE_INFO_MAP_DICT.has_key(mapName):
			self.canSeeInfo = False
			self.HideMiniMap()
			self.tooltipMiniMapOpen.SetText(localeInfo.MINIMAP_CANNOT_SEE)
		else:
			self.canSeeInfo = True
			self.ShowMiniMap()
			self.tooltipMiniMapOpen.SetText(localeInfo.MINIMAP)
# Replace with:
	def SetMapName(self, mapName):
		self.canSeeInfo = False
		self.HideMiniMap()
		self.tooltipMiniMapOpen.SetText(localeInfo.MINIMAP_CANNOT_SEE)

 

 

  • 2. Disable for a specific map.
# Search in CANNOT_SEE_INFO_MAP_DICT for:
		"metin2_map_devilsCatacomb" : False,
# Add after:
		"metin2_your_map_name" : False,

f42d0b6856625c0f9bfd936a22ce25ca.png This how to disable? You know?

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.