├── .gitattributes ├── .gitignore ├── App.config ├── ColorsTable.cs ├── Core ├── ChatManager.cs ├── CommandManager.cs ├── Configuration.cs ├── EventSink.cs ├── FilesManager.cs ├── Geometry.cs ├── Global.cs ├── HouseReader.cs ├── MapObjects │ ├── BuildingObject.cs │ ├── DeathObject.cs │ ├── LabelObject.cs │ ├── MarkerObject.cs │ ├── MaskObject.cs │ ├── MobileObject.cs │ ├── PlayerObject.cs │ ├── Position.cs │ ├── RenderMap.cs │ ├── RenderObject.cs │ ├── SharedLabelObject.cs │ ├── SignalObject.cs │ └── UserObject.cs ├── MapsManager.cs ├── MouseManager.cs ├── Network │ ├── BufferPool.cs │ ├── CircularBuffer.cs │ ├── NetworkManager.cs │ ├── Packets │ │ ├── Packet.cs │ │ ├── PacketBase.cs │ │ ├── PacketHandler.cs │ │ ├── PacketHandlers.cs │ │ ├── PacketWriter.cs │ │ └── Packets.cs │ ├── Protocol.cs │ ├── SendQueue.cs │ ├── SocketClient.cs │ └── Update.cs ├── OEUO_Manager.cs ├── Quantizer.cs ├── RenderObjectsManager.cs ├── SoundsManager.cs ├── UOClientManager.cs └── Utility.cs ├── Diagnostic └── Logger.cs ├── EnhancedMap.csproj ├── EnhancedMap.sln ├── EnhancedMapServerNetCore ├── .gitattributes ├── .gitignore ├── EnhancedMapServerNetCore.sln └── EnhancedMapServerNetCore │ ├── Configuration │ └── Config.cs │ ├── Coroutine.cs │ ├── Cryptography │ └── SHA1.cs │ ├── EnhancedMapServerNetCore.csproj │ ├── Exstentions.cs │ ├── GuidGenerator.cs │ ├── Internals │ ├── Account.cs │ ├── AccountLevel.cs │ ├── Room.cs │ ├── SharedLabel.cs │ └── User.cs │ ├── Logging │ ├── Log.cs │ ├── LogFile.cs │ ├── LogTypes.cs │ └── Logger.cs │ ├── Main.cs │ ├── Managers │ ├── AccountManager.cs │ ├── CommandManager.cs │ ├── ConsoleManager.cs │ ├── RoomManager.cs │ ├── SaveManager.cs │ ├── SessionManager.cs │ ├── SettingsManager.cs │ └── UserManager.cs │ ├── Network │ ├── CircularBuffer.cs │ ├── Packet.cs │ ├── PacketBase.cs │ ├── PacketHandler.cs │ ├── PacketHandlers.cs │ ├── PacketWriter.cs │ ├── Packets.cs │ ├── Protocol.cs │ ├── ReusableArray.cs │ ├── SendQueue.cs │ ├── Server.cs │ ├── ServerHandler.cs │ ├── Session.cs │ ├── SocketClientSession.cs │ ├── SocketServer.cs │ ├── SocketServerBase.cs │ └── SocketSessionBase.cs │ ├── Properties │ └── launchSettings.json │ └── Utility.cs ├── Exstentions.cs ├── GUI ├── Animations │ ├── AnimationDirection.cs │ ├── AnimationManager.cs │ └── Animations.cs ├── ChatF.Designer.cs ├── ChatF.cs ├── ChatF.resx ├── CoordsConverterF.Designer.cs ├── CoordsConverterF.cs ├── CoordsConverterF.resx ├── CustomButton.cs ├── CustomForm.cs ├── CustomProgressBar.cs ├── EnhancedControls │ ├── EnhancedCanvas.Designer.cs │ ├── EnhancedCanvas.cs │ └── EnhancedCanvas.resx ├── FlatButtons.cs ├── ICustomControl.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── MapMakerF.Designer.cs ├── MapMakerF.cs ├── MapMakerF.resx ├── MapMakerSteps │ ├── CreationMapsStep.Designer.cs │ ├── CreationMapsStep.cs │ ├── CreationMapsStep.resx │ ├── CustomMapStep.Designer.cs │ ├── CustomMapStep.cs │ ├── CustomMapStep.resx │ ├── KindClientStep.Designer.cs │ ├── KindClientStep.cs │ ├── KindClientStep.resx │ ├── OriginalMapStep.Designer.cs │ ├── OriginalMapStep.cs │ └── OriginalMapStep.resx ├── MessageDialog.cs ├── MessageDialog.resx ├── PlacesEditorF.Designer.cs ├── PlacesEditorF.cs ├── PlacesEditorF.resx ├── SearcherF.Designer.cs ├── SearcherF.cs ├── SearcherF.resx ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx ├── SettingsLayouts │ ├── AboutLayout.Designer.cs │ ├── AboutLayout.cs │ ├── AboutLayout.resx │ ├── ApplicationLayout.Designer.cs │ ├── ApplicationLayout.cs │ ├── ApplicationLayout.resx │ ├── DiagnosticLayout.Designer.cs │ ├── DiagnosticLayout.cs │ ├── DiagnosticLayout.resx │ ├── GeneralLayout.Designer.cs │ ├── GeneralLayout.cs │ ├── GeneralLayout.resx │ ├── LabelsLayout.Designer.cs │ ├── LabelsLayout.cs │ ├── LabelsLayout.resx │ ├── NetworkLayout.Designer.cs │ ├── NetworkLayout.cs │ ├── NetworkLayout.resx │ ├── ServerCommLayout.Designer.cs │ ├── ServerCommLayout.cs │ └── ServerCommLayout.resx ├── SharedLabelF.Designer.cs ├── SharedLabelF.cs └── SharedLabelF.resx ├── Main.cs ├── Native.cs ├── Properties ├── AssemblyInfo.cs ├── AssemblyInfo.dll ├── Resources.Designer.cs ├── Resources.Designer.dll ├── Resources.resx ├── Settings.Designer.cs ├── Settings.Designer.dll └── Settings.settings ├── README.md ├── Resources ├── FinalMarker.png ├── PayPal.png ├── SHAREDLABEL.png ├── arrow-flat.png ├── backgroundEM.png ├── discord.png ├── facebook-256.png ├── hide.png ├── if_external-link.png ├── light.wav ├── mapExNormal.png ├── pin.png ├── refresh-icon.png ├── right.png ├── rose.gif ├── servuo.ico ├── skull2.png ├── stairs.wav ├── tombstone.png ├── unsure.wav ├── uoclassic.png ├── uoenhanced.png └── wrong.png ├── Timer.cs ├── app.manifest ├── enhancedmapicon.ico ├── libs ├── Aga.Controls.dll ├── Files │ ├── Definitions │ │ ├── ARCHERSGUILD.txt │ │ ├── ARMAMENTSGUILD.txt │ │ ├── ARMOURERSGUILD.txt │ │ ├── ARMS.txt │ │ ├── ASSASINSGUILD.txt │ │ ├── BAKER.txt │ │ ├── BANK.txt │ │ ├── BARBERSHOP.txt │ │ ├── BARD.txt │ │ ├── BARDICGUILD.txt │ │ ├── BEEKEEPER.txt │ │ ├── BLACKSMITH.txt │ │ ├── BLACKSMITHSGUILD.txt │ │ ├── BODYOFWATER.txt │ │ ├── BOWYER.txt │ │ ├── BRASS.txt │ │ ├── BRIDGE.txt │ │ ├── BUTCHER.txt │ │ ├── CARPENTER.txt │ │ ├── CASTLE.txt │ │ ├── CAVALRYGUILD.txt │ │ ├── COOKSGUILD.txt │ │ ├── CUSTOMS.txt │ │ ├── DOCKS.txt │ │ ├── DUNGEON.txt │ │ ├── EXIT.txt │ │ ├── FIGHTERSGUILD.txt │ │ ├── FISHERMANSGUILD.txt │ │ ├── FLETCHER.txt │ │ ├── GATE.txt │ │ ├── GEM.txt │ │ ├── GRAVEYARD.txt │ │ ├── GUARDLINES.txt │ │ ├── GUILD.txt │ │ ├── HEALER.txt │ │ ├── HEALERSGUILD.txt │ │ ├── HOUSES.txt │ │ ├── ILLUSIONISTSGUILD.txt │ │ ├── INN.txt │ │ ├── INTEREST.txt │ │ ├── ISLAND.txt │ │ ├── JEWELER.txt │ │ ├── KEEP.txt │ │ ├── LANDMARK.txt │ │ ├── LARGEHOUSE.txt │ │ ├── LGBOATE.txt │ │ ├── LGBOATN.txt │ │ ├── LGBOATS.txt │ │ ├── LGBOATW.txt │ │ ├── LIBRARY.txt │ │ ├── LOGCABIN.txt │ │ ├── MAGESGUILD.txt │ │ ├── MAGIC.txt │ │ ├── MARKET.txt │ │ ├── MARPATIO.txt │ │ ├── MDBOATE.txt │ │ ├── MDBOATN.txt │ │ ├── MDBOATS.txt │ │ ├── MDBOATW.txt │ │ ├── MERCHANTSGUILD.txt │ │ ├── MINERSGUILD.txt │ │ ├── MOONGATE.txt │ │ ├── OTHER.txt │ │ ├── PAINTER.txt │ │ ├── PATIO.txt │ │ ├── POINT.txt │ │ ├── PROVISIONERSGUILD.txt │ │ ├── PROVISIONS.txt │ │ ├── REAGENTS.txt │ │ ├── ROGUESGUILD.txt │ │ ├── RUINS.txt │ │ ├── SAILORSGUILD.txt │ │ ├── SCENIC.txt │ │ ├── SHIP.txt │ │ ├── SHIPS.txt │ │ ├── SHIPWRIGHTSGUILD.txt │ │ ├── SHRINE.txt │ │ ├── SMALLHOUSE.txt │ │ ├── SMBOATE.txt │ │ ├── SMBOATN.txt │ │ ├── SMBOATS.txt │ │ ├── SMBOATW.txt │ │ ├── SMLMSHOP.txt │ │ ├── SMLSSHOP.txt │ │ ├── SMLTOWER.txt │ │ ├── SNDPATIO.txt │ │ ├── SORCERERSGUILD.txt │ │ ├── STABLES.txt │ │ ├── STAIRS.txt │ │ ├── TAILOR.txt │ │ ├── TANNER.txt │ │ ├── TAVERN.txt │ │ ├── TELEPORT.txt │ │ ├── TENT.txt │ │ ├── TERRAIN.txt │ │ ├── THEATRE.txt │ │ ├── THIEVESGUILD.txt │ │ ├── TINKER.txt │ │ ├── TINKERSGUILD.txt │ │ ├── TOWER.txt │ │ ├── TOWN.txt │ │ ├── TRADERSGUILD.txt │ │ ├── TREASURE.txt │ │ ├── TWOSTORY.txt │ │ ├── VILLA.txt │ │ ├── WARRIORSGUILD.txt │ │ └── WEAPONSGUILD.txt │ └── Icon │ │ ├── ARCHERSGUILD.png │ │ ├── ARMAMENTSGUILD.png │ │ ├── ARMOURERSGUILD.png │ │ ├── ARMS.png │ │ ├── ASSASINSGUILD.png │ │ ├── BAKER.png │ │ ├── BANK.png │ │ ├── BARBERSHOP.png │ │ ├── BARD.png │ │ ├── BARDICGUILD.png │ │ ├── BEEKEEPER.png │ │ ├── BLACKSMITH.png │ │ ├── BLACKSMITHSGUILD.png │ │ ├── BODYOFWATER.png │ │ ├── BOWYER.png │ │ ├── BRASS.png │ │ ├── BRIDGE.png │ │ ├── BUTCHER.png │ │ ├── CARPENTER.png │ │ ├── CASTLE.png │ │ ├── CAVALRYGUILD.png │ │ ├── COOKSGUILD.png │ │ ├── CUSTOMS.png │ │ ├── DOCKS.png │ │ ├── DUNGEON.png │ │ ├── EXIT.png │ │ ├── FIGHTERSGUILD.png │ │ ├── FISHERMANSGUILD.png │ │ ├── FLETCHER.png │ │ ├── GATE.png │ │ ├── GEM.png │ │ ├── GRAVEYARD.png │ │ ├── GUILD.png │ │ ├── HEALER.png │ │ ├── HEALERSGUILD.png │ │ ├── ILLUSIONISTSGUILD.png │ │ ├── INN.png │ │ ├── INTEREST.png │ │ ├── ISLAND.png │ │ ├── JEWELER.png │ │ ├── KEEP.png │ │ ├── LANDMARK.png │ │ ├── LARGEHOUSE.png │ │ ├── LGBOATE.png │ │ ├── LGBOATN.png │ │ ├── LGBOATS.png │ │ ├── LGBOATW.png │ │ ├── LIBRARY.png │ │ ├── LOGCABIN.png │ │ ├── MAGESGUILD.png │ │ ├── MAGIC.png │ │ ├── MARKET.png │ │ ├── MARPATIO.png │ │ ├── MDBOATE.png │ │ ├── MDBOATN.png │ │ ├── MDBOATS.png │ │ ├── MDBOATW.png │ │ ├── MERCHANTSGUILD.png │ │ ├── MINERSGUILD.png │ │ ├── MOONGATE.png │ │ ├── OTHER.png │ │ ├── PAINTER.png │ │ ├── PATIO.png │ │ ├── POINT.png │ │ ├── PROVISIONERSGUILD.png │ │ ├── PROVISIONS.png │ │ ├── REAGENTS.png │ │ ├── ROGUESGUILD.png │ │ ├── RUINS.png │ │ ├── SAILORSGUILD.png │ │ ├── SCENIC.png │ │ ├── SHIP.png │ │ ├── SHIPS.png │ │ ├── SHIPWRIGHTSGUILD.png │ │ ├── SHRINE.png │ │ ├── SMALLHOUSE.png │ │ ├── SMBOATE.png │ │ ├── SMBOATN.png │ │ ├── SMBOATS.png │ │ ├── SMBOATW.png │ │ ├── SMLMSHOP.png │ │ ├── SMLSSHOP.png │ │ ├── SMLTOWER.png │ │ ├── SNDPATIO.png │ │ ├── SORCERERSGUILD.png │ │ ├── STABLES.png │ │ ├── STAIRS.png │ │ ├── TAILOR.png │ │ ├── TANNER.png │ │ ├── TAVERN.png │ │ ├── TELEPORT.png │ │ ├── TENT.png │ │ ├── TERRAIN.png │ │ ├── THEATRE.png │ │ ├── THIEVESGUILD.png │ │ ├── TINKER.png │ │ ├── TINKERSGUILD.png │ │ ├── TOWER.png │ │ ├── TOWN.png │ │ ├── TRADERSGUILD.png │ │ ├── TREASURE.png │ │ ├── TWOSTORY.png │ │ ├── VILLA.png │ │ ├── WARRIORSGUILD.png │ │ └── WEAPONSGUILD.png ├── MapWindow.lua ├── System.ValueTuple.dll └── uo.dll └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/App.config -------------------------------------------------------------------------------- /ColorsTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/ColorsTable.cs -------------------------------------------------------------------------------- /Core/ChatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/ChatManager.cs -------------------------------------------------------------------------------- /Core/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/CommandManager.cs -------------------------------------------------------------------------------- /Core/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Configuration.cs -------------------------------------------------------------------------------- /Core/EventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/EventSink.cs -------------------------------------------------------------------------------- /Core/FilesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/FilesManager.cs -------------------------------------------------------------------------------- /Core/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Geometry.cs -------------------------------------------------------------------------------- /Core/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Global.cs -------------------------------------------------------------------------------- /Core/HouseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/HouseReader.cs -------------------------------------------------------------------------------- /Core/MapObjects/BuildingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/BuildingObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/DeathObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/DeathObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/LabelObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/LabelObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/MarkerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/MarkerObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/MaskObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/MaskObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/MobileObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/MobileObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/PlayerObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/Position.cs -------------------------------------------------------------------------------- /Core/MapObjects/RenderMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/RenderMap.cs -------------------------------------------------------------------------------- /Core/MapObjects/RenderObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/RenderObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/SharedLabelObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/SharedLabelObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/SignalObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/SignalObject.cs -------------------------------------------------------------------------------- /Core/MapObjects/UserObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapObjects/UserObject.cs -------------------------------------------------------------------------------- /Core/MapsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MapsManager.cs -------------------------------------------------------------------------------- /Core/MouseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/MouseManager.cs -------------------------------------------------------------------------------- /Core/Network/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/BufferPool.cs -------------------------------------------------------------------------------- /Core/Network/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/CircularBuffer.cs -------------------------------------------------------------------------------- /Core/Network/NetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/NetworkManager.cs -------------------------------------------------------------------------------- /Core/Network/Packets/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Packets/Packet.cs -------------------------------------------------------------------------------- /Core/Network/Packets/PacketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Packets/PacketBase.cs -------------------------------------------------------------------------------- /Core/Network/Packets/PacketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Packets/PacketHandler.cs -------------------------------------------------------------------------------- /Core/Network/Packets/PacketHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Packets/PacketHandlers.cs -------------------------------------------------------------------------------- /Core/Network/Packets/PacketWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Packets/PacketWriter.cs -------------------------------------------------------------------------------- /Core/Network/Packets/Packets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Packets/Packets.cs -------------------------------------------------------------------------------- /Core/Network/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Protocol.cs -------------------------------------------------------------------------------- /Core/Network/SendQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/SendQueue.cs -------------------------------------------------------------------------------- /Core/Network/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/SocketClient.cs -------------------------------------------------------------------------------- /Core/Network/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Network/Update.cs -------------------------------------------------------------------------------- /Core/OEUO_Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/OEUO_Manager.cs -------------------------------------------------------------------------------- /Core/Quantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Quantizer.cs -------------------------------------------------------------------------------- /Core/RenderObjectsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/RenderObjectsManager.cs -------------------------------------------------------------------------------- /Core/SoundsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/SoundsManager.cs -------------------------------------------------------------------------------- /Core/UOClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/UOClientManager.cs -------------------------------------------------------------------------------- /Core/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Core/Utility.cs -------------------------------------------------------------------------------- /Diagnostic/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Diagnostic/Logger.cs -------------------------------------------------------------------------------- /EnhancedMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMap.csproj -------------------------------------------------------------------------------- /EnhancedMap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMap.sln -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/.gitattributes -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/.gitignore -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore.sln -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Configuration/Config.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Coroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Coroutine.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Cryptography/SHA1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Cryptography/SHA1.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/EnhancedMapServerNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/EnhancedMapServerNetCore.csproj -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Exstentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Exstentions.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/GuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/GuidGenerator.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/Account.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/AccountLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/AccountLevel.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/Room.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/SharedLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/SharedLabel.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Internals/User.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/Log.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/LogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/LogFile.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/LogTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/LogTypes.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Logging/Logger.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Main.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/AccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/AccountManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/CommandManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/ConsoleManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/RoomManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/RoomManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/SaveManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/SaveManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/SessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/SessionManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/SettingsManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Managers/UserManager.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/CircularBuffer.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Packet.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketBase.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketHandler.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketHandlers.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/PacketWriter.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Packets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Packets.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Protocol.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/ReusableArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/ReusableArray.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SendQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SendQueue.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Server.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/ServerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/ServerHandler.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/Session.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketClientSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketClientSession.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketServer.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketServerBase.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketSessionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Network/SocketSessionBase.cs -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /EnhancedMapServerNetCore/EnhancedMapServerNetCore/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/EnhancedMapServerNetCore/EnhancedMapServerNetCore/Utility.cs -------------------------------------------------------------------------------- /Exstentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Exstentions.cs -------------------------------------------------------------------------------- /GUI/Animations/AnimationDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/Animations/AnimationDirection.cs -------------------------------------------------------------------------------- /GUI/Animations/AnimationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/Animations/AnimationManager.cs -------------------------------------------------------------------------------- /GUI/Animations/Animations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/Animations/Animations.cs -------------------------------------------------------------------------------- /GUI/ChatF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/ChatF.Designer.cs -------------------------------------------------------------------------------- /GUI/ChatF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/ChatF.cs -------------------------------------------------------------------------------- /GUI/ChatF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/ChatF.resx -------------------------------------------------------------------------------- /GUI/CoordsConverterF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/CoordsConverterF.Designer.cs -------------------------------------------------------------------------------- /GUI/CoordsConverterF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/CoordsConverterF.cs -------------------------------------------------------------------------------- /GUI/CoordsConverterF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/CoordsConverterF.resx -------------------------------------------------------------------------------- /GUI/CustomButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/CustomButton.cs -------------------------------------------------------------------------------- /GUI/CustomForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/CustomForm.cs -------------------------------------------------------------------------------- /GUI/CustomProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/CustomProgressBar.cs -------------------------------------------------------------------------------- /GUI/EnhancedControls/EnhancedCanvas.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/EnhancedControls/EnhancedCanvas.Designer.cs -------------------------------------------------------------------------------- /GUI/EnhancedControls/EnhancedCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/EnhancedControls/EnhancedCanvas.cs -------------------------------------------------------------------------------- /GUI/EnhancedControls/EnhancedCanvas.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/EnhancedControls/EnhancedCanvas.resx -------------------------------------------------------------------------------- /GUI/FlatButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/FlatButtons.cs -------------------------------------------------------------------------------- /GUI/ICustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/ICustomControl.cs -------------------------------------------------------------------------------- /GUI/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MainWindow.Designer.cs -------------------------------------------------------------------------------- /GUI/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MainWindow.cs -------------------------------------------------------------------------------- /GUI/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MainWindow.resx -------------------------------------------------------------------------------- /GUI/MapMakerF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerF.Designer.cs -------------------------------------------------------------------------------- /GUI/MapMakerF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerF.cs -------------------------------------------------------------------------------- /GUI/MapMakerF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerF.resx -------------------------------------------------------------------------------- /GUI/MapMakerSteps/CreationMapsStep.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/CreationMapsStep.Designer.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/CreationMapsStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/CreationMapsStep.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/CreationMapsStep.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/CreationMapsStep.resx -------------------------------------------------------------------------------- /GUI/MapMakerSteps/CustomMapStep.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/CustomMapStep.Designer.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/CustomMapStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/CustomMapStep.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/CustomMapStep.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/CustomMapStep.resx -------------------------------------------------------------------------------- /GUI/MapMakerSteps/KindClientStep.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/KindClientStep.Designer.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/KindClientStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/KindClientStep.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/KindClientStep.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/KindClientStep.resx -------------------------------------------------------------------------------- /GUI/MapMakerSteps/OriginalMapStep.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/OriginalMapStep.Designer.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/OriginalMapStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/OriginalMapStep.cs -------------------------------------------------------------------------------- /GUI/MapMakerSteps/OriginalMapStep.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MapMakerSteps/OriginalMapStep.resx -------------------------------------------------------------------------------- /GUI/MessageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MessageDialog.cs -------------------------------------------------------------------------------- /GUI/MessageDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/MessageDialog.resx -------------------------------------------------------------------------------- /GUI/PlacesEditorF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/PlacesEditorF.Designer.cs -------------------------------------------------------------------------------- /GUI/PlacesEditorF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/PlacesEditorF.cs -------------------------------------------------------------------------------- /GUI/PlacesEditorF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/PlacesEditorF.resx -------------------------------------------------------------------------------- /GUI/SearcherF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SearcherF.Designer.cs -------------------------------------------------------------------------------- /GUI/SearcherF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SearcherF.cs -------------------------------------------------------------------------------- /GUI/SearcherF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SearcherF.resx -------------------------------------------------------------------------------- /GUI/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/Settings.Designer.cs -------------------------------------------------------------------------------- /GUI/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/Settings.cs -------------------------------------------------------------------------------- /GUI/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/Settings.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/AboutLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/AboutLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/AboutLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/AboutLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/AboutLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/AboutLayout.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/ApplicationLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/ApplicationLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/ApplicationLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/ApplicationLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/ApplicationLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/ApplicationLayout.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/DiagnosticLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/DiagnosticLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/DiagnosticLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/DiagnosticLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/DiagnosticLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/DiagnosticLayout.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/GeneralLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/GeneralLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/GeneralLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/GeneralLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/GeneralLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/GeneralLayout.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/LabelsLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/LabelsLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/LabelsLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/LabelsLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/LabelsLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/LabelsLayout.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/NetworkLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/NetworkLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/NetworkLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/NetworkLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/NetworkLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/NetworkLayout.resx -------------------------------------------------------------------------------- /GUI/SettingsLayouts/ServerCommLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/ServerCommLayout.Designer.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/ServerCommLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/ServerCommLayout.cs -------------------------------------------------------------------------------- /GUI/SettingsLayouts/ServerCommLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SettingsLayouts/ServerCommLayout.resx -------------------------------------------------------------------------------- /GUI/SharedLabelF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SharedLabelF.Designer.cs -------------------------------------------------------------------------------- /GUI/SharedLabelF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SharedLabelF.cs -------------------------------------------------------------------------------- /GUI/SharedLabelF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/GUI/SharedLabelF.resx -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Main.cs -------------------------------------------------------------------------------- /Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Native.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/AssemblyInfo.dll -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/Resources.Designer.dll -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.Designer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/Settings.Designer.dll -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/README.md -------------------------------------------------------------------------------- /Resources/FinalMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/FinalMarker.png -------------------------------------------------------------------------------- /Resources/PayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/PayPal.png -------------------------------------------------------------------------------- /Resources/SHAREDLABEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/SHAREDLABEL.png -------------------------------------------------------------------------------- /Resources/arrow-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/arrow-flat.png -------------------------------------------------------------------------------- /Resources/backgroundEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/backgroundEM.png -------------------------------------------------------------------------------- /Resources/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/discord.png -------------------------------------------------------------------------------- /Resources/facebook-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/facebook-256.png -------------------------------------------------------------------------------- /Resources/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/hide.png -------------------------------------------------------------------------------- /Resources/if_external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/if_external-link.png -------------------------------------------------------------------------------- /Resources/light.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/light.wav -------------------------------------------------------------------------------- /Resources/mapExNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/mapExNormal.png -------------------------------------------------------------------------------- /Resources/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/pin.png -------------------------------------------------------------------------------- /Resources/refresh-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/refresh-icon.png -------------------------------------------------------------------------------- /Resources/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/right.png -------------------------------------------------------------------------------- /Resources/rose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/rose.gif -------------------------------------------------------------------------------- /Resources/servuo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/servuo.ico -------------------------------------------------------------------------------- /Resources/skull2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/skull2.png -------------------------------------------------------------------------------- /Resources/stairs.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/stairs.wav -------------------------------------------------------------------------------- /Resources/tombstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/tombstone.png -------------------------------------------------------------------------------- /Resources/unsure.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/unsure.wav -------------------------------------------------------------------------------- /Resources/uoclassic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/uoclassic.png -------------------------------------------------------------------------------- /Resources/uoenhanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/uoenhanced.png -------------------------------------------------------------------------------- /Resources/wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Resources/wrong.png -------------------------------------------------------------------------------- /Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/Timer.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/app.manifest -------------------------------------------------------------------------------- /enhancedmapicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/enhancedmapicon.ico -------------------------------------------------------------------------------- /libs/Aga.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Aga.Controls.dll -------------------------------------------------------------------------------- /libs/Files/Definitions/ARCHERSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/ARCHERSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/ARMAMENTSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/ARMOURERSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/ARMOURERSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/ARMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/ARMS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/ASSASINSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/BAKER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BAKER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BANK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BANK.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BARBERSHOP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/BARD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BARD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BARDICGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BARDICGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BEEKEEPER.txt: -------------------------------------------------------------------------------- 1 | + The Busy Bees 2957 705 7 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/BLACKSMITH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BLACKSMITH.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BLACKSMITHSGUILD.txt: -------------------------------------------------------------------------------- 1 | + Britain's Blacksmith Guild 1348 1778 7 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/BODYOFWATER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BODYOFWATER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BOWYER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BOWYER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BRASS.txt: -------------------------------------------------------------------------------- 1 | + Farmer's Market 795 3449 5 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/BRIDGE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BRIDGE.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/BUTCHER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/BUTCHER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/CARPENTER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/CARPENTER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/CASTLE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/CAVALRYGUILD.txt: -------------------------------------------------------------------------------- 1 | + Cavalry Guild 1578 1558 7 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/COOKSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/CUSTOMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/CUSTOMS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/DOCKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/DOCKS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/DUNGEON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/DUNGEON.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/EXIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/EXIT.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/FIGHTERSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/FISHERMANSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/FISHERMANSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/FLETCHER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/FLETCHER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/GATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/GATE.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/GEM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/GEM.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/GRAVEYARD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/GRAVEYARD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/GUARDLINES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/GUARDLINES.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/GUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/GUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/HEALER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/HEALER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/HEALERSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/HOUSES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/ILLUSIONISTSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/ILLUSIONISTSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/INN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/INN.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/INTEREST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/INTEREST.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/ISLAND.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/ISLAND.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/JEWELER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/JEWELER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/KEEP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/LANDMARK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/LANDMARK.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/LARGEHOUSE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/LGBOATE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/LGBOATN.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/LGBOATS.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/LGBOATW.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/LIBRARY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/LIBRARY.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/LOGCABIN.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MAGESGUILD.txt: -------------------------------------------------------------------------------- 1 | + Encyclopedia Magicka 4545 860 7 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MAGIC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/MAGIC.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/MARKET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/MARKET.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/MARPATIO.txt: -------------------------------------------------------------------------------- 1 | + Companion Hall 3599 2491 1 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MDBOATE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MDBOATN.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MDBOATS.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MDBOATW.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/MERCHANTSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/MERCHANTSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/MINERSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/MINERSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/MOONGATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/MOONGATE.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/OTHER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/OTHER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/PAINTER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/PAINTER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/PATIO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/POINT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/POINT.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/PROVISIONERSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/PROVISIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/PROVISIONS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/REAGENTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/REAGENTS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/ROGUESGUILD.txt: -------------------------------------------------------------------------------- 1 | + Artists' Guild 1442 1662 7 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/RUINS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/RUINS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/SAILORSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SCENIC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/SCENIC.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/SHIP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SHIPS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/SHIPS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/SHIPWRIGHTSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SHRINE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/SHRINE.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/SMALLHOUSE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMBOATE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMBOATN.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMBOATS.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMBOATW.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMLMSHOP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMLSSHOP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SMLTOWER.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SNDPATIO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/SORCERERSGUILD.txt: -------------------------------------------------------------------------------- 1 | + The Sorcerer's Guild 4684 1412 7 false 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/STABLES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/STABLES.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/STAIRS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/STAIRS.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TAILOR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TAILOR.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TANNER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TANNER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TAVERN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TAVERN.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TELEPORT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TELEPORT.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TENT.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/TERRAIN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TERRAIN.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/THEATRE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/THEATRE.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/THIEVESGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/THIEVESGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TINKER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TINKER.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TINKERSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TINKERSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TOWER.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/Files/Definitions/TOWN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TOWN.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TRADERSGUILD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/TREASURE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/TREASURE.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/TWOSTORY.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/VILLA.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Files/Definitions/WARRIORSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/WARRIORSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Definitions/WEAPONSGUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Definitions/WEAPONSGUILD.txt -------------------------------------------------------------------------------- /libs/Files/Icon/ARCHERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ARCHERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/ARMAMENTSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ARMAMENTSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/ARMOURERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ARMOURERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/ARMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ARMS.png -------------------------------------------------------------------------------- /libs/Files/Icon/ASSASINSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ASSASINSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/BAKER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BAKER.png -------------------------------------------------------------------------------- /libs/Files/Icon/BANK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BANK.png -------------------------------------------------------------------------------- /libs/Files/Icon/BARBERSHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BARBERSHOP.png -------------------------------------------------------------------------------- /libs/Files/Icon/BARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BARD.png -------------------------------------------------------------------------------- /libs/Files/Icon/BARDICGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BARDICGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/BEEKEEPER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BEEKEEPER.png -------------------------------------------------------------------------------- /libs/Files/Icon/BLACKSMITH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BLACKSMITH.png -------------------------------------------------------------------------------- /libs/Files/Icon/BLACKSMITHSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BLACKSMITHSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/BODYOFWATER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BODYOFWATER.png -------------------------------------------------------------------------------- /libs/Files/Icon/BOWYER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BOWYER.png -------------------------------------------------------------------------------- /libs/Files/Icon/BRASS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BRASS.png -------------------------------------------------------------------------------- /libs/Files/Icon/BRIDGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BRIDGE.png -------------------------------------------------------------------------------- /libs/Files/Icon/BUTCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/BUTCHER.png -------------------------------------------------------------------------------- /libs/Files/Icon/CARPENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/CARPENTER.png -------------------------------------------------------------------------------- /libs/Files/Icon/CASTLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/CASTLE.png -------------------------------------------------------------------------------- /libs/Files/Icon/CAVALRYGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/CAVALRYGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/COOKSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/COOKSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/CUSTOMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/CUSTOMS.png -------------------------------------------------------------------------------- /libs/Files/Icon/DOCKS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/DOCKS.png -------------------------------------------------------------------------------- /libs/Files/Icon/DUNGEON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/DUNGEON.png -------------------------------------------------------------------------------- /libs/Files/Icon/EXIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/EXIT.png -------------------------------------------------------------------------------- /libs/Files/Icon/FIGHTERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/FIGHTERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/FISHERMANSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/FISHERMANSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/FLETCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/FLETCHER.png -------------------------------------------------------------------------------- /libs/Files/Icon/GATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/GATE.png -------------------------------------------------------------------------------- /libs/Files/Icon/GEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/GEM.png -------------------------------------------------------------------------------- /libs/Files/Icon/GRAVEYARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/GRAVEYARD.png -------------------------------------------------------------------------------- /libs/Files/Icon/GUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/GUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/HEALER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/HEALER.png -------------------------------------------------------------------------------- /libs/Files/Icon/HEALERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/HEALERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/ILLUSIONISTSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ILLUSIONISTSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/INN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/INN.png -------------------------------------------------------------------------------- /libs/Files/Icon/INTEREST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/INTEREST.png -------------------------------------------------------------------------------- /libs/Files/Icon/ISLAND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ISLAND.png -------------------------------------------------------------------------------- /libs/Files/Icon/JEWELER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/JEWELER.png -------------------------------------------------------------------------------- /libs/Files/Icon/KEEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/KEEP.png -------------------------------------------------------------------------------- /libs/Files/Icon/LANDMARK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LANDMARK.png -------------------------------------------------------------------------------- /libs/Files/Icon/LARGEHOUSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LARGEHOUSE.png -------------------------------------------------------------------------------- /libs/Files/Icon/LGBOATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LGBOATE.png -------------------------------------------------------------------------------- /libs/Files/Icon/LGBOATN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LGBOATN.png -------------------------------------------------------------------------------- /libs/Files/Icon/LGBOATS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LGBOATS.png -------------------------------------------------------------------------------- /libs/Files/Icon/LGBOATW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LGBOATW.png -------------------------------------------------------------------------------- /libs/Files/Icon/LIBRARY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LIBRARY.png -------------------------------------------------------------------------------- /libs/Files/Icon/LOGCABIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/LOGCABIN.png -------------------------------------------------------------------------------- /libs/Files/Icon/MAGESGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MAGESGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/MAGIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MAGIC.png -------------------------------------------------------------------------------- /libs/Files/Icon/MARKET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MARKET.png -------------------------------------------------------------------------------- /libs/Files/Icon/MARPATIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MARPATIO.png -------------------------------------------------------------------------------- /libs/Files/Icon/MDBOATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MDBOATE.png -------------------------------------------------------------------------------- /libs/Files/Icon/MDBOATN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MDBOATN.png -------------------------------------------------------------------------------- /libs/Files/Icon/MDBOATS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MDBOATS.png -------------------------------------------------------------------------------- /libs/Files/Icon/MDBOATW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MDBOATW.png -------------------------------------------------------------------------------- /libs/Files/Icon/MERCHANTSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MERCHANTSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/MINERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MINERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/MOONGATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/MOONGATE.png -------------------------------------------------------------------------------- /libs/Files/Icon/OTHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/OTHER.png -------------------------------------------------------------------------------- /libs/Files/Icon/PAINTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/PAINTER.png -------------------------------------------------------------------------------- /libs/Files/Icon/PATIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/PATIO.png -------------------------------------------------------------------------------- /libs/Files/Icon/POINT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/POINT.png -------------------------------------------------------------------------------- /libs/Files/Icon/PROVISIONERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/PROVISIONERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/PROVISIONS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/PROVISIONS.png -------------------------------------------------------------------------------- /libs/Files/Icon/REAGENTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/REAGENTS.png -------------------------------------------------------------------------------- /libs/Files/Icon/ROGUESGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/ROGUESGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/RUINS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/RUINS.png -------------------------------------------------------------------------------- /libs/Files/Icon/SAILORSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SAILORSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/SCENIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SCENIC.png -------------------------------------------------------------------------------- /libs/Files/Icon/SHIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SHIP.png -------------------------------------------------------------------------------- /libs/Files/Icon/SHIPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SHIPS.png -------------------------------------------------------------------------------- /libs/Files/Icon/SHIPWRIGHTSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SHIPWRIGHTSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/SHRINE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SHRINE.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMALLHOUSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMALLHOUSE.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMBOATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMBOATE.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMBOATN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMBOATN.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMBOATS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMBOATS.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMBOATW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMBOATW.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMLMSHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMLMSHOP.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMLSSHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMLSSHOP.png -------------------------------------------------------------------------------- /libs/Files/Icon/SMLTOWER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SMLTOWER.png -------------------------------------------------------------------------------- /libs/Files/Icon/SNDPATIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SNDPATIO.png -------------------------------------------------------------------------------- /libs/Files/Icon/SORCERERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/SORCERERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/STABLES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/STABLES.png -------------------------------------------------------------------------------- /libs/Files/Icon/STAIRS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/STAIRS.png -------------------------------------------------------------------------------- /libs/Files/Icon/TAILOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TAILOR.png -------------------------------------------------------------------------------- /libs/Files/Icon/TANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TANNER.png -------------------------------------------------------------------------------- /libs/Files/Icon/TAVERN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TAVERN.png -------------------------------------------------------------------------------- /libs/Files/Icon/TELEPORT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TELEPORT.png -------------------------------------------------------------------------------- /libs/Files/Icon/TENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TENT.png -------------------------------------------------------------------------------- /libs/Files/Icon/TERRAIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TERRAIN.png -------------------------------------------------------------------------------- /libs/Files/Icon/THEATRE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/THEATRE.png -------------------------------------------------------------------------------- /libs/Files/Icon/THIEVESGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/THIEVESGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/TINKER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TINKER.png -------------------------------------------------------------------------------- /libs/Files/Icon/TINKERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TINKERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/TOWER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TOWER.png -------------------------------------------------------------------------------- /libs/Files/Icon/TOWN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TOWN.png -------------------------------------------------------------------------------- /libs/Files/Icon/TRADERSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TRADERSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/TREASURE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TREASURE.png -------------------------------------------------------------------------------- /libs/Files/Icon/TWOSTORY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/TWOSTORY.png -------------------------------------------------------------------------------- /libs/Files/Icon/VILLA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/VILLA.png -------------------------------------------------------------------------------- /libs/Files/Icon/WARRIORSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/WARRIORSGUILD.png -------------------------------------------------------------------------------- /libs/Files/Icon/WEAPONSGUILD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/Files/Icon/WEAPONSGUILD.png -------------------------------------------------------------------------------- /libs/MapWindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/MapWindow.lua -------------------------------------------------------------------------------- /libs/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/System.ValueTuple.dll -------------------------------------------------------------------------------- /libs/uo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/libs/uo.dll -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/EnhancedMap/HEAD/packages.config --------------------------------------------------------------------------------