Cripplez 4 Report post Posted November 28 Hello, I would like to remove the minimap, the one on the top right of the screen (like in the screenshot) and that you can't open it, like in the devil's catacomb. How can I do this? Thank you Share this post Link to post Share on other sites
1 WeedHex 319 Report post Posted November 28 uiminimap.py 1 Share this post Link to post Share on other sites
1 VegaS™ 730 Report post Posted December 2 (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. # 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, 1 Share this post Link to post Share on other sites
Hello, I would like to remove the minimap, the one on the top right of the screen (like in the screenshot) and that you can't open it, like in the devil's catacomb.
How can I do this? Thank you
Share this post
Link to post
Share on other sites