├── .gitignore ├── Client ├── Client.csproj ├── Client.csproj.DotSettings ├── Controls │ ├── DXAnimatedControl.cs │ ├── DXButton.cs │ ├── DXCheckBox.cs │ ├── DXColourControl.cs │ ├── DXComboBox.cs │ ├── DXConfigWindow.cs │ ├── DXControl.cs │ ├── DXImageControl.cs │ ├── DXInputWindow.cs │ ├── DXItemAmountWindow.cs │ ├── DXItemCell.cs │ ├── DXItemGrid.cs │ ├── DXKeyBindWindow.cs │ ├── DXLabel.cs │ ├── DXListBox.cs │ ├── DXMessageBox.cs │ ├── DXNumberBox.cs │ ├── DXNumberTextBox.cs │ ├── DXScene.cs │ ├── DXTabControl.cs │ ├── DXTextBox.cs │ ├── DXVScrollBar.cs │ └── DXWindow.cs ├── Envir │ ├── CConnection.cs │ ├── CEnvir.cs │ ├── Config.cs │ ├── DXManager.cs │ ├── DXSound.cs │ ├── DXSoundManager.cs │ └── Translations │ │ ├── ChineseMessages.cs │ │ ├── EnglishMessages.cs │ │ └── StringMessages.cs ├── Models │ ├── DamageInfo.cs │ ├── ItemObject.cs │ ├── MapObject.cs │ ├── MirEffect.cs │ ├── MirLibrary.cs │ ├── MirProjectile.cs │ ├── MonsterObject.cs │ ├── NPCObject.cs │ ├── ObjectAction.cs │ ├── Particles │ │ ├── Particle.cs │ │ ├── ParticleEmitter.cs │ │ ├── ParticleType.cs │ │ └── Spells │ │ │ ├── FireballTrail.cs │ │ │ ├── GustTrail.cs │ │ │ ├── IceBladesTrail.cs │ │ │ └── IceBoltTrail.cs │ ├── PlayerObject.cs │ ├── SpellObject.cs │ └── UserObject.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scenes │ ├── GameScene.cs │ ├── LoginScene.cs │ ├── SelectScene.cs │ └── Views │ │ ├── AutoPotionDialog.cs │ │ ├── BeltDialog.cs │ │ ├── BigMapDialog.cs │ │ ├── BlockDialog.cs │ │ ├── BuffDialog.cs │ │ ├── CharacterDialog.cs │ │ ├── ChatOptionsDialog.cs │ │ ├── ChatTab.cs │ │ ├── ChatTextBox.cs │ │ ├── CompanionDialog.cs │ │ ├── CompanionFilterDialog.cs │ │ ├── CurrencyDialog.cs │ │ ├── DungeonFinderDialog.cs │ │ ├── EditCharacterDialog.cs │ │ ├── ExitDialog.cs │ │ ├── FishingDialog.cs │ │ ├── FortuneCheckerDialog.cs │ │ ├── GroupDialog.cs │ │ ├── GuildDialog.cs │ │ ├── InspectDialog.cs │ │ ├── InventoryDialog.cs │ │ ├── MagicBarDialog.cs │ │ ├── MagicDialog.cs │ │ ├── MailDialog.cs │ │ ├── MainPanel.cs │ │ ├── MapControl.cs │ │ ├── MarketPlaceDialog.cs │ │ ├── MiniMapDialog.cs │ │ ├── MonsterDialog.cs │ │ ├── NPCDialog.cs │ │ ├── QuestDialog.cs │ │ ├── QuestTrackerDialog.cs │ │ ├── RankingDialog.cs │ │ ├── StorageDialog.cs │ │ └── TradeDialog.cs ├── TargetForm.cs ├── TargetForm.resx ├── UserModels │ ├── ChatTabControlSetting.cs │ ├── ChatTabPageSetting.cs │ ├── KeyBindInfo.cs │ └── WindowSetting.cs ├── Zircon.ico ├── app.config └── packages.config ├── Components ├── DevExpress │ ├── DevExpress.BonusSkins.v18.2.dll │ ├── DevExpress.Data.v18.2.dll │ ├── DevExpress.Images.v18.2.dll │ ├── DevExpress.Office.v18.2.Core.dll │ ├── DevExpress.Pdf.v18.2.Core.dll │ ├── DevExpress.Printing.v18.2.Core.dll │ ├── DevExpress.RichEdit.v18.2.Core.dll │ ├── DevExpress.RichEdit.v18.2.Export.dll │ ├── DevExpress.Sparkline.v18.2.Core.dll │ ├── DevExpress.Utils.v18.2.dll │ ├── DevExpress.XtraBars.v18.2.dll │ ├── DevExpress.XtraEditors.v18.2.dll │ ├── DevExpress.XtraGrid.v18.2.dll │ ├── DevExpress.XtraLayout.v18.2.dll │ ├── DevExpress.XtraNavBar.v18.2.dll │ ├── DevExpress.XtraPrinting.v18.2.dll │ ├── DevExpress.XtraRichEdit.v18.2.dll │ └── DevExpress.XtraTreeList.v18.2.dll ├── ManagedSquish.dll ├── NativeSquish_x64.dll ├── NativeSquish_x86.dll └── SlimDX.dll ├── ImageManager ├── App.config ├── IMain.Designer.cs ├── IMain.cs ├── IMain.resx ├── ImageManager.csproj ├── ImageManager.csproj.bak ├── Mir3Library.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── licenses.licx │ └── licenses.licx.bak └── WTLLibrary.cs ├── Launcher ├── Config.cs ├── LMain.Designer.cs ├── LMain.cs ├── LMain.resx ├── Launcher.csproj ├── Launcher.csproj.DotSettings ├── Launcher.csproj.bak ├── PatchInformation.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── licenses.licx │ └── licenses.licx.bak ├── Resources │ ├── PatchHeader.png │ └── Patcher.exe ├── Zircon.ico └── app.config ├── Library ├── ConfigReader.cs ├── Enum.cs ├── FrameSet.cs ├── Functions.cs ├── Globals.cs ├── Libraries.cs ├── Library.csproj ├── MirDB │ ├── ADBCollection.cs │ ├── Attributes.cs │ ├── DBBindingList.cs │ ├── DBCollection.cs │ ├── DBMapping.cs │ ├── DBObject.cs │ ├── DBRelationship.cs │ ├── DBValue.cs │ └── Session.cs ├── Network │ ├── BaseConnection.cs │ ├── ClientPackets.cs │ ├── GeneralPackets.cs │ ├── Packet.cs │ └── ServerPackets.cs ├── Properties │ └── AssemblyInfo.cs ├── Stat.cs ├── SystemModels │ ├── BaseStat.cs │ ├── CastleInfo.cs │ ├── CompanionInfo.cs │ ├── CompanionLevelInfo.cs │ ├── CompanionSkillInfo.cs │ ├── DropInfo.cs │ ├── EventInfo.cs │ ├── GuardInfo.cs │ ├── ItemInfo.cs │ ├── ItemInfoStat.cs │ ├── MagicInfo.cs │ ├── MapInfo.cs │ ├── MapRegion.cs │ ├── MineInfo.cs │ ├── MonsterInfo.cs │ ├── MonsterInfoStat.cs │ ├── MovementInfo.cs │ ├── NPCInfo.cs │ ├── QuestInfo.cs │ ├── RespawnInfo.cs │ ├── SafeZoneInfo.cs │ ├── SetInfo.cs │ ├── SetInfoStat.cs │ ├── StoreInfo.cs │ └── WeaponCraftStatsInfo.cs └── Time.cs ├── LibraryCore ├── ConfigReader.cs ├── Encryption.cs ├── Enum.cs ├── FrameSet.cs ├── Functions.cs ├── Globals.cs ├── Libraries.cs ├── LibraryCore.csproj ├── MirDB │ ├── ADBCollection.cs │ ├── Attributes.cs │ ├── DBBindingList.cs │ ├── DBCollection.cs │ ├── DBMapping.cs │ ├── DBObject.cs │ ├── DBRelationship.cs │ ├── DBValue.cs │ └── Session.cs ├── Network │ ├── BaseConnection.cs │ ├── ClientPackets.cs │ ├── GeneralPackets.cs │ ├── Packet.cs │ └── ServerPackets.cs ├── Stat.cs ├── SystemModels │ ├── BaseStat.cs │ ├── CastleInfo.cs │ ├── CompanionInfo.cs │ ├── CompanionLevelInfo.cs │ ├── CompanionSkillInfo.cs │ ├── CurrencyInfo.cs │ ├── DropInfo.cs │ ├── EventInfo.cs │ ├── GuardInfo.cs │ ├── InstanceInfo.cs │ ├── ItemInfo.cs │ ├── ItemInfoStat.cs │ ├── MagicInfo.cs │ ├── MapInfo.cs │ ├── MapRegion.cs │ ├── MineInfo.cs │ ├── MonsterInfo.cs │ ├── MonsterInfoStat.cs │ ├── MovementInfo.cs │ ├── NPCInfo.cs │ ├── QuestInfo.cs │ ├── RespawnInfo.cs │ ├── SafeZoneInfo.cs │ ├── SetInfo.cs │ ├── SetInfoStat.cs │ ├── StoreInfo.cs │ └── WeaponCraftStatsInfo.cs └── Time.cs ├── LibraryEditor ├── App.config ├── Astc.cs ├── FixedListView.cs ├── Function.cs ├── LMain.Designer.cs ├── LMain.cs ├── LMain.resx ├── LibraryEditor.csproj ├── LockBitmap.cs ├── MLibrary.cs ├── MLibraryV0.cs ├── MLibraryV2.cs ├── Mir3Library.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources1.Designer.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── WTLLibrary.cs ├── WeMadeLibrary.cs ├── lizard.ico └── packages.config ├── MirDB ├── ADBCollection.cs ├── Attributes.cs ├── DBBindingList.cs ├── DBCollection.cs ├── DBMapping.cs ├── DBObject.cs ├── DBValue.cs ├── MirDB.csproj ├── Properties │ └── AssemblyInfo.cs ├── Session.cs └── SystemModels │ ├── DropInfo.cs │ ├── GuardInfo.cs │ ├── ItemInfo.cs │ ├── ItemInfoStat.cs │ ├── MagicInfo.cs │ ├── MapInfo.cs │ ├── MonsterInfo.cs │ ├── MonsterInfoStat.cs │ ├── MovementInfo.cs │ ├── NPCInfo.cs │ ├── RespawnInfo.cs │ ├── SafeZoneInfo.cs │ ├── SetInfo.cs │ └── SetInfoStat.cs ├── PatchManager ├── Config.cs ├── PMain.Designer.cs ├── PMain.cs ├── PMain.resx ├── PatchInformation.cs ├── PatchManager.csproj ├── PatchManager.csproj.bak ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── licenses.licx │ └── licenses.licx.bak ├── app.config └── packages.config ├── Patcher ├── App.config ├── PMain.Designer.cs ├── PMain.cs ├── PMain.resx ├── Patcher.csproj ├── Patcher.csproj.bak ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PluginCore ├── IPluginStart.cs ├── LogEventArgs.cs ├── PluginCore.csproj ├── PluginLoader.cs └── Properties │ └── AssemblyInfo.cs ├── PluginStandalone ├── App.config ├── PluginStandalone.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── Server ├── App.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── licenses.licx │ └── licenses.licx.bak ├── SMain.Designer.cs ├── SMain.cs ├── SMain.resx ├── Server.csproj ├── Server.csproj.bak ├── Views │ ├── AccountView.Designer.cs │ ├── AccountView.cs │ ├── AccountView.resx │ ├── BaseStatView.Designer.cs │ ├── BaseStatView.cs │ ├── BaseStatView.resx │ ├── CastleInfoView.Designer.cs │ ├── CastleInfoView.cs │ ├── CastleInfoView.resx │ ├── CharacterView.Designer.cs │ ├── CharacterView.cs │ ├── CharacterView.resx │ ├── ChatLogView.Designer.cs │ ├── ChatLogView.cs │ ├── ChatLogView.resx │ ├── CompanionInfoView.Designer.cs │ ├── CompanionInfoView.cs │ ├── CompanionInfoView.resx │ ├── ConfigView.Designer.cs │ ├── ConfigView.cs │ ├── ConfigView.resx │ ├── CurrencyInfoView.Designer.cs │ ├── CurrencyInfoView.cs │ ├── CurrencyInfoView.resx │ ├── DatabaseEncryptionForm.Designer.cs │ ├── DatabaseEncryptionForm.cs │ ├── DatabaseEncryptionForm.resx │ ├── DiagnosticView.cs │ ├── DiagnosticView.designer.cs │ ├── DiagnosticView.resx │ ├── DropInfoView.Designer.cs │ ├── DropInfoView.cs │ ├── DropInfoView.resx │ ├── EventInfoView.Designer.cs │ ├── EventInfoView.cs │ ├── EventInfoView.resx │ ├── GameGoldPaymentView.Designer.cs │ ├── GameGoldPaymentView.cs │ ├── GameGoldPaymentView.resx │ ├── GameStoreSaleView.Designer.cs │ ├── GameStoreSaleView.cs │ ├── GameStoreSaleView.resx │ ├── InstanceInfoView.Designer.cs │ ├── InstanceInfoView.cs │ ├── InstanceInfoView.resx │ ├── ItemInfoStatView.Designer.cs │ ├── ItemInfoStatView.cs │ ├── ItemInfoStatView.resx │ ├── ItemInfoView.Designer.cs │ ├── ItemInfoView.cs │ ├── ItemInfoView.resx │ ├── LocationView.resx │ ├── MagicInfoView.Designer.cs │ ├── MagicInfoView.cs │ ├── MagicInfoView.resx │ ├── MapInfoView.Designer.cs │ ├── MapInfoView.cs │ ├── MapInfoView.resx │ ├── MapRegionView.Designer.cs │ ├── MapRegionView.cs │ ├── MapRegionView.resx │ ├── MapViewer.Designer.cs │ ├── MapViewer.cs │ ├── MapViewer.resx │ ├── MonsterInfoStatView.cs │ ├── MonsterInfoStatView.designer.cs │ ├── MonsterInfoStatView.resx │ ├── MonsterInfoView.Designer.cs │ ├── MonsterInfoView.cs │ ├── MonsterInfoView.resx │ ├── MovementInfoView.Designer.cs │ ├── MovementInfoView.cs │ ├── MovementInfoView.resx │ ├── NPCInfoView.Designer.cs │ ├── NPCInfoView.cs │ ├── NPCInfoView.resx │ ├── NPCPageView.Designer.cs │ ├── NPCPageView.cs │ ├── NPCPageView.resx │ ├── QuestInfoView.Designer.cs │ ├── QuestInfoView.cs │ ├── QuestInfoView.resx │ ├── RespawnInfoView.Designer.cs │ ├── RespawnInfoView.cs │ ├── RespawnInfoView.resx │ ├── SafeZoneInfoView.Designer.cs │ ├── SafeZoneInfoView.cs │ ├── SafeZoneInfoView.resx │ ├── SetInfoView.Designer.cs │ ├── SetInfoView.cs │ ├── SetInfoView.resx │ ├── StoreInfoView.Designer.cs │ ├── StoreInfoView.cs │ ├── StoreInfoView.resx │ ├── SyncForm.Designer.cs │ ├── SyncForm.cs │ ├── SyncForm.resx │ ├── SystemLogView.Designer.cs │ ├── SystemLogView.cs │ ├── SystemLogView.resx │ ├── UserConquestStatsView.Designer.cs │ ├── UserConquestStatsView.cs │ ├── UserConquestStatsView.resx │ ├── UserDropView.Designer.cs │ ├── UserDropView.cs │ ├── UserDropView.resx │ ├── UserItemView.Designer.cs │ ├── UserItemView.cs │ ├── UserItemView.resx │ ├── UserMailView.Designer.cs │ ├── UserMailView.cs │ ├── UserMailView.resx │ ├── WeaponCraftStatInfoView.cs │ ├── WeaponCraftStatInfoView.designer.cs │ └── WeaponCraftStatInfoView.resx └── packages.config ├── ServerCore ├── Program.cs └── ServerCore.csproj ├── ServerLibrary ├── DBModels │ ├── AccountInfo.cs │ ├── AuctionHistoryInfo.cs │ ├── AuctionInfo.cs │ ├── AutoPotionLink.cs │ ├── BlockInfo.cs │ ├── BuffInfo.cs │ ├── CharacterBeltLink.cs │ ├── CharacterInfo.cs │ ├── CompanionFilters.cs │ ├── GameGoldPayment.cs │ ├── GameStoreSale.cs │ ├── GuildInfo.cs │ ├── GuildMemberInfo.cs │ ├── GuildWarInfo.cs │ ├── MailInfo.cs │ ├── RefineInfo.cs │ ├── UserCompanion.cs │ ├── UserCompanionUnlock.cs │ ├── UserConquest.cs │ ├── UserConquestStats.cs │ ├── UserCurrency.cs │ ├── UserDrop.cs │ ├── UserFortuneInfo.cs │ ├── UserItem.cs │ ├── UserItemStat.cs │ ├── UserMagic.cs │ └── UserQuest.cs ├── Envir │ ├── Config.cs │ ├── EmailService.cs │ ├── SConnection.cs │ ├── SEnvir.cs │ ├── Translations │ │ ├── ChineseMessages.cs │ │ ├── EnglishMessages.cs │ │ └── StringMessages.cs │ └── WebServer.cs ├── Models │ ├── ConquestWar.cs │ ├── DelayedAction.cs │ ├── ItemCheck.cs │ ├── ItemObject.cs │ ├── Map.cs │ ├── MapObject.cs │ ├── MonsterObject.cs │ ├── Monsters │ │ ├── Affliction.cs │ │ ├── ArachnidGrazer.cs │ │ ├── ArchLichTaedu.cs │ │ ├── BanyaLeftGuard.cs │ │ ├── BanyoCaptain.cs │ │ ├── BanyoLordGuzak.cs │ │ ├── BanyoWarrior.cs │ │ ├── CarnivorousPlant.cs │ │ ├── CastleLord.cs │ │ ├── ChaosKnight.cs │ │ ├── ChristmasMonster.cs │ │ ├── Companion.cs │ │ ├── CorrosivePoisonSpitter.cs │ │ ├── CrimsonNecromancer.cs │ │ ├── DepartedMonster.cs │ │ ├── DoomClaw.cs │ │ ├── DragonLord.cs │ │ ├── DragonQueen.cs │ │ ├── EmperorSaWoo.cs │ │ ├── EnragedArchLichTaedu.cs │ │ ├── EnragedLordNiJae.cs │ │ ├── EscortCommander.cs │ │ ├── EvilElephant.cs │ │ ├── FerociousIceTiger.cs │ │ ├── FieryDancer.cs │ │ ├── FlameDemon.cs │ │ ├── FrostLordHwa.cs │ │ ├── GhostMage.cs │ │ ├── GhostSorcerer.cs │ │ ├── GiantLizard.cs │ │ ├── GoruArcher.cs │ │ ├── GoruSpearman.cs │ │ ├── Guard.cs │ │ ├── HalloweenMonster.cs │ │ ├── HealerAnt.cs │ │ ├── IcyGoddess.cs │ │ ├── IcySpiritGeneral.cs │ │ ├── IcySpiritWarrior.cs │ │ ├── JinamStoneGate.cs │ │ ├── JinchonDevil.cs │ │ ├── JinhwanSpirit.cs │ │ ├── Larva.cs │ │ ├── LordNiJae.cs │ │ ├── MirrorImage.cs │ │ ├── MonasteryBoss.cs │ │ ├── Monkey.cs │ │ ├── MoonFeralWarrior.cs │ │ ├── NetherworldGate.cs │ │ ├── NumaHighMage.cs │ │ ├── NumaMage.cs │ │ ├── NumaStoneThrower.cs │ │ ├── OmaMage.cs │ │ ├── OmaWarlord.cs │ │ ├── OxFeralGeneral.cs │ │ ├── PachontheChaosbringer.cs │ │ ├── PinkBat.cs │ │ ├── Puppet.cs │ │ ├── QuartzTree.cs │ │ ├── QuartzTurtleSub.cs │ │ ├── QueenOfDawn.cs │ │ ├── RazorTusk.cs │ │ ├── RedMoonTheFallen.cs │ │ ├── SamaBlack.cs │ │ ├── SamaBlue.cs │ │ ├── SamaFireGuardian.cs │ │ ├── SamaIceGuardian.cs │ │ ├── SamaLightningGuardian.cs │ │ ├── SamaPhoenix.cs │ │ ├── SamaProphet.cs │ │ ├── SamaScorcer.cs │ │ ├── SamaWhite.cs │ │ ├── SamaWindGuardian.cs │ │ ├── Shinsu.cs │ │ ├── SkeletonAxeThrower.cs │ │ ├── SonicLizard.cs │ │ ├── SpittingSpider.cs │ │ ├── Stomper.cs │ │ ├── SunFeralWarrior.cs │ │ ├── TreeMonster.cs │ │ ├── UmaKing.cs │ │ ├── VoraciousGhost.cs │ │ ├── Warewolf.cs │ │ ├── WedgeMothLarva.cs │ │ ├── WhiteBone.cs │ │ ├── WindfurySorcerer.cs │ │ ├── WingedHorror.cs │ │ ├── YumgonWitch.cs │ │ ├── ZumaGuardian.cs │ │ └── ZumaKing.cs │ ├── NPCObject.cs │ ├── PlayerObject.cs │ └── SpellObject.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── BuyGameGold.txt │ └── CharacterNotFound.txt └── ServerLibrary.csproj └── Zircon Server.sln /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | *.user 3 | Build/ 4 | .vs/ 5 | [Oo]bj/ 6 | [Bb]in/ 7 | packages/ -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Client.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Client.csproj.DotSettings -------------------------------------------------------------------------------- /Client/Controls/DXAnimatedControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXAnimatedControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXButton.cs -------------------------------------------------------------------------------- /Client/Controls/DXCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXCheckBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXColourControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXColourControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXComboBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXConfigWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXImageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXImageControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXInputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXInputWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemAmountWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXItemAmountWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXItemCell.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXItemGrid.cs -------------------------------------------------------------------------------- /Client/Controls/DXKeyBindWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXKeyBindWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXLabel.cs -------------------------------------------------------------------------------- /Client/Controls/DXListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXListBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXMessageBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXNumberBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXNumberTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXNumberTextBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXScene.cs -------------------------------------------------------------------------------- /Client/Controls/DXTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXTabControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXTextBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXVScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXVScrollBar.cs -------------------------------------------------------------------------------- /Client/Controls/DXWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Controls/DXWindow.cs -------------------------------------------------------------------------------- /Client/Envir/CConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/CConnection.cs -------------------------------------------------------------------------------- /Client/Envir/CEnvir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/CEnvir.cs -------------------------------------------------------------------------------- /Client/Envir/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/Config.cs -------------------------------------------------------------------------------- /Client/Envir/DXManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/DXManager.cs -------------------------------------------------------------------------------- /Client/Envir/DXSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/DXSound.cs -------------------------------------------------------------------------------- /Client/Envir/DXSoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/DXSoundManager.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/ChineseMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/Translations/ChineseMessages.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/EnglishMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/Translations/EnglishMessages.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/StringMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Envir/Translations/StringMessages.cs -------------------------------------------------------------------------------- /Client/Models/DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/DamageInfo.cs -------------------------------------------------------------------------------- /Client/Models/ItemObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/ItemObject.cs -------------------------------------------------------------------------------- /Client/Models/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/MapObject.cs -------------------------------------------------------------------------------- /Client/Models/MirEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/MirEffect.cs -------------------------------------------------------------------------------- /Client/Models/MirLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/MirLibrary.cs -------------------------------------------------------------------------------- /Client/Models/MirProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/MirProjectile.cs -------------------------------------------------------------------------------- /Client/Models/MonsterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/MonsterObject.cs -------------------------------------------------------------------------------- /Client/Models/NPCObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/NPCObject.cs -------------------------------------------------------------------------------- /Client/Models/ObjectAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/ObjectAction.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/Particle.cs -------------------------------------------------------------------------------- /Client/Models/Particles/ParticleEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/ParticleEmitter.cs -------------------------------------------------------------------------------- /Client/Models/Particles/ParticleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/ParticleType.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/FireballTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/Spells/FireballTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/GustTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/Spells/GustTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/IceBladesTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/Spells/IceBladesTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/IceBoltTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/Particles/Spells/IceBoltTrail.cs -------------------------------------------------------------------------------- /Client/Models/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/PlayerObject.cs -------------------------------------------------------------------------------- /Client/Models/SpellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/SpellObject.cs -------------------------------------------------------------------------------- /Client/Models/UserObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Models/UserObject.cs -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Properties/Resources.resx -------------------------------------------------------------------------------- /Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Properties/Settings.settings -------------------------------------------------------------------------------- /Client/Scenes/GameScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/GameScene.cs -------------------------------------------------------------------------------- /Client/Scenes/LoginScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/LoginScene.cs -------------------------------------------------------------------------------- /Client/Scenes/SelectScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/SelectScene.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/AutoPotionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/AutoPotionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BeltDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/BeltDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BigMapDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/BigMapDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BlockDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/BlockDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BuffDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/BuffDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CharacterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/CharacterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/ChatOptionsDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/ChatTab.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/ChatTextBox.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CompanionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/CompanionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CompanionFilterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/CompanionFilterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CurrencyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/CurrencyDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/DungeonFinderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/DungeonFinderDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/EditCharacterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/EditCharacterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ExitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/ExitDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/FishingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/FishingDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/FortuneCheckerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/FortuneCheckerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/GroupDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/GroupDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/GuildDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/GuildDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/InspectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/InspectDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/InventoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/InventoryDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MagicBarDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MagicBarDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MagicDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MagicDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MailDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MailDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MainPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MainPanel.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MapControl.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MarketPlaceDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MarketPlaceDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MiniMapDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MiniMapDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MonsterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/MonsterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/NPCDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/NPCDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/QuestDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/QuestDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/QuestTrackerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/QuestTrackerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/RankingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/RankingDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/StorageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/StorageDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/TradeDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Scenes/Views/TradeDialog.cs -------------------------------------------------------------------------------- /Client/TargetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/TargetForm.cs -------------------------------------------------------------------------------- /Client/TargetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/TargetForm.resx -------------------------------------------------------------------------------- /Client/UserModels/ChatTabControlSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/UserModels/ChatTabControlSetting.cs -------------------------------------------------------------------------------- /Client/UserModels/ChatTabPageSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/UserModels/ChatTabPageSetting.cs -------------------------------------------------------------------------------- /Client/UserModels/KeyBindInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/UserModels/KeyBindInfo.cs -------------------------------------------------------------------------------- /Client/UserModels/WindowSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/UserModels/WindowSetting.cs -------------------------------------------------------------------------------- /Client/Zircon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/Zircon.ico -------------------------------------------------------------------------------- /Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/app.config -------------------------------------------------------------------------------- /Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Client/packages.config -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.BonusSkins.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.BonusSkins.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Data.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Data.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Images.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Images.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Office.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Office.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Pdf.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Pdf.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Printing.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Printing.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.RichEdit.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.RichEdit.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.RichEdit.v18.2.Export.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.RichEdit.v18.2.Export.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Sparkline.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Sparkline.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Utils.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.Utils.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraBars.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraBars.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraEditors.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraEditors.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraGrid.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraGrid.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraLayout.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraLayout.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraNavBar.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraNavBar.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraPrinting.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraPrinting.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraRichEdit.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraRichEdit.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraTreeList.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/DevExpress/DevExpress.XtraTreeList.v18.2.dll -------------------------------------------------------------------------------- /Components/ManagedSquish.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/ManagedSquish.dll -------------------------------------------------------------------------------- /Components/NativeSquish_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/NativeSquish_x64.dll -------------------------------------------------------------------------------- /Components/NativeSquish_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/NativeSquish_x86.dll -------------------------------------------------------------------------------- /Components/SlimDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Components/SlimDX.dll -------------------------------------------------------------------------------- /ImageManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/App.config -------------------------------------------------------------------------------- /ImageManager/IMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/IMain.Designer.cs -------------------------------------------------------------------------------- /ImageManager/IMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/IMain.cs -------------------------------------------------------------------------------- /ImageManager/IMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/IMain.resx -------------------------------------------------------------------------------- /ImageManager/ImageManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/ImageManager.csproj -------------------------------------------------------------------------------- /ImageManager/ImageManager.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/ImageManager.csproj.bak -------------------------------------------------------------------------------- /ImageManager/Mir3Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Mir3Library.cs -------------------------------------------------------------------------------- /ImageManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Program.cs -------------------------------------------------------------------------------- /ImageManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/Resources.resx -------------------------------------------------------------------------------- /ImageManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/Settings.settings -------------------------------------------------------------------------------- /ImageManager/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/licenses.licx -------------------------------------------------------------------------------- /ImageManager/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /ImageManager/WTLLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ImageManager/WTLLibrary.cs -------------------------------------------------------------------------------- /Launcher/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Config.cs -------------------------------------------------------------------------------- /Launcher/LMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/LMain.Designer.cs -------------------------------------------------------------------------------- /Launcher/LMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/LMain.cs -------------------------------------------------------------------------------- /Launcher/LMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/LMain.resx -------------------------------------------------------------------------------- /Launcher/Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Launcher.csproj -------------------------------------------------------------------------------- /Launcher/Launcher.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Launcher.csproj.DotSettings -------------------------------------------------------------------------------- /Launcher/Launcher.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Launcher.csproj.bak -------------------------------------------------------------------------------- /Launcher/PatchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/PatchInformation.cs -------------------------------------------------------------------------------- /Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Program.cs -------------------------------------------------------------------------------- /Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /Launcher/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/licenses.licx -------------------------------------------------------------------------------- /Launcher/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /Launcher/Resources/PatchHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Resources/PatchHeader.png -------------------------------------------------------------------------------- /Launcher/Resources/Patcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Resources/Patcher.exe -------------------------------------------------------------------------------- /Launcher/Zircon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/Zircon.ico -------------------------------------------------------------------------------- /Launcher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Launcher/app.config -------------------------------------------------------------------------------- /Library/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/ConfigReader.cs -------------------------------------------------------------------------------- /Library/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Enum.cs -------------------------------------------------------------------------------- /Library/FrameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/FrameSet.cs -------------------------------------------------------------------------------- /Library/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Functions.cs -------------------------------------------------------------------------------- /Library/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Globals.cs -------------------------------------------------------------------------------- /Library/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Libraries.cs -------------------------------------------------------------------------------- /Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Library.csproj -------------------------------------------------------------------------------- /Library/MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /Library/MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/Attributes.cs -------------------------------------------------------------------------------- /Library/MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /Library/MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /Library/MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /Library/MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/DBObject.cs -------------------------------------------------------------------------------- /Library/MirDB/DBRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/DBRelationship.cs -------------------------------------------------------------------------------- /Library/MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/DBValue.cs -------------------------------------------------------------------------------- /Library/MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/MirDB/Session.cs -------------------------------------------------------------------------------- /Library/Network/BaseConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Network/BaseConnection.cs -------------------------------------------------------------------------------- /Library/Network/ClientPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Network/ClientPackets.cs -------------------------------------------------------------------------------- /Library/Network/GeneralPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Network/GeneralPackets.cs -------------------------------------------------------------------------------- /Library/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Network/Packet.cs -------------------------------------------------------------------------------- /Library/Network/ServerPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Network/ServerPackets.cs -------------------------------------------------------------------------------- /Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Library/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Stat.cs -------------------------------------------------------------------------------- /Library/SystemModels/BaseStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/BaseStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/CastleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/CastleInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/CompanionInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionLevelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/CompanionLevelInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionSkillInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/CompanionSkillInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/EventInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MapRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MapRegion.cs -------------------------------------------------------------------------------- /Library/SystemModels/MineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MineInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/QuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/QuestInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/StoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/StoreInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/WeaponCraftStatsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/SystemModels/WeaponCraftStatsInfo.cs -------------------------------------------------------------------------------- /Library/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Library/Time.cs -------------------------------------------------------------------------------- /LibraryCore/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/ConfigReader.cs -------------------------------------------------------------------------------- /LibraryCore/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Encryption.cs -------------------------------------------------------------------------------- /LibraryCore/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Enum.cs -------------------------------------------------------------------------------- /LibraryCore/FrameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/FrameSet.cs -------------------------------------------------------------------------------- /LibraryCore/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Functions.cs -------------------------------------------------------------------------------- /LibraryCore/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Globals.cs -------------------------------------------------------------------------------- /LibraryCore/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Libraries.cs -------------------------------------------------------------------------------- /LibraryCore/LibraryCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/LibraryCore.csproj -------------------------------------------------------------------------------- /LibraryCore/MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/Attributes.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/DBObject.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/DBRelationship.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/DBValue.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/MirDB/Session.cs -------------------------------------------------------------------------------- /LibraryCore/Network/BaseConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Network/BaseConnection.cs -------------------------------------------------------------------------------- /LibraryCore/Network/ClientPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Network/ClientPackets.cs -------------------------------------------------------------------------------- /LibraryCore/Network/GeneralPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Network/GeneralPackets.cs -------------------------------------------------------------------------------- /LibraryCore/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Network/Packet.cs -------------------------------------------------------------------------------- /LibraryCore/Network/ServerPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Network/ServerPackets.cs -------------------------------------------------------------------------------- /LibraryCore/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Stat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/BaseStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/BaseStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CastleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/CastleInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/CompanionInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionLevelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/CompanionLevelInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionSkillInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/CompanionSkillInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CurrencyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/CurrencyInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/EventInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/InstanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/InstanceInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MapRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MapRegion.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MineInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/QuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/QuestInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/StoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/StoreInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/WeaponCraftStatsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/SystemModels/WeaponCraftStatsInfo.cs -------------------------------------------------------------------------------- /LibraryCore/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryCore/Time.cs -------------------------------------------------------------------------------- /LibraryEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/App.config -------------------------------------------------------------------------------- /LibraryEditor/Astc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Astc.cs -------------------------------------------------------------------------------- /LibraryEditor/FixedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/FixedListView.cs -------------------------------------------------------------------------------- /LibraryEditor/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Function.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/LMain.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/LMain.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/LMain.resx -------------------------------------------------------------------------------- /LibraryEditor/LibraryEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/LibraryEditor.csproj -------------------------------------------------------------------------------- /LibraryEditor/LockBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/LockBitmap.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/MLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibraryV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/MLibraryV0.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibraryV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/MLibraryV2.cs -------------------------------------------------------------------------------- /LibraryEditor/Mir3Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Mir3Library.cs -------------------------------------------------------------------------------- /LibraryEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Program.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Properties/Resources1.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /LibraryEditor/WTLLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/WTLLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/WeMadeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/WeMadeLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/lizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/lizard.ico -------------------------------------------------------------------------------- /LibraryEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/LibraryEditor/packages.config -------------------------------------------------------------------------------- /MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/Attributes.cs -------------------------------------------------------------------------------- /MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/DBObject.cs -------------------------------------------------------------------------------- /MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/DBValue.cs -------------------------------------------------------------------------------- /MirDB/MirDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/MirDB.csproj -------------------------------------------------------------------------------- /MirDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/Session.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/MirDB/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /PatchManager/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Config.cs -------------------------------------------------------------------------------- /PatchManager/PMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/PMain.Designer.cs -------------------------------------------------------------------------------- /PatchManager/PMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/PMain.cs -------------------------------------------------------------------------------- /PatchManager/PMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/PMain.resx -------------------------------------------------------------------------------- /PatchManager/PatchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/PatchInformation.cs -------------------------------------------------------------------------------- /PatchManager/PatchManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/PatchManager.csproj -------------------------------------------------------------------------------- /PatchManager/PatchManager.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/PatchManager.csproj.bak -------------------------------------------------------------------------------- /PatchManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Program.cs -------------------------------------------------------------------------------- /PatchManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/Resources.resx -------------------------------------------------------------------------------- /PatchManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/Settings.settings -------------------------------------------------------------------------------- /PatchManager/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/licenses.licx -------------------------------------------------------------------------------- /PatchManager/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /PatchManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/app.config -------------------------------------------------------------------------------- /PatchManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PatchManager/packages.config -------------------------------------------------------------------------------- /Patcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/App.config -------------------------------------------------------------------------------- /Patcher/PMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/PMain.Designer.cs -------------------------------------------------------------------------------- /Patcher/PMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/PMain.cs -------------------------------------------------------------------------------- /Patcher/PMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/PMain.resx -------------------------------------------------------------------------------- /Patcher/Patcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Patcher.csproj -------------------------------------------------------------------------------- /Patcher/Patcher.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Patcher.csproj.bak -------------------------------------------------------------------------------- /Patcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Program.cs -------------------------------------------------------------------------------- /Patcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Patcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Patcher/Properties/Settings.settings -------------------------------------------------------------------------------- /PluginCore/IPluginStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginCore/IPluginStart.cs -------------------------------------------------------------------------------- /PluginCore/LogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginCore/LogEventArgs.cs -------------------------------------------------------------------------------- /PluginCore/PluginCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginCore/PluginCore.csproj -------------------------------------------------------------------------------- /PluginCore/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginCore/PluginLoader.cs -------------------------------------------------------------------------------- /PluginCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginStandalone/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/App.config -------------------------------------------------------------------------------- /PluginStandalone/PluginStandalone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/PluginStandalone.csproj -------------------------------------------------------------------------------- /PluginStandalone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/Program.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/Properties/Resources.resx -------------------------------------------------------------------------------- /PluginStandalone/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/PluginStandalone/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/README.md -------------------------------------------------------------------------------- /Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/App.config -------------------------------------------------------------------------------- /Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Program.cs -------------------------------------------------------------------------------- /Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Properties/licenses.licx -------------------------------------------------------------------------------- /Server/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /Server/SMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/SMain.Designer.cs -------------------------------------------------------------------------------- /Server/SMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/SMain.cs -------------------------------------------------------------------------------- /Server/SMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/SMain.resx -------------------------------------------------------------------------------- /Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Server.csproj -------------------------------------------------------------------------------- /Server/Server.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Server.csproj.bak -------------------------------------------------------------------------------- /Server/Views/AccountView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/AccountView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/AccountView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/AccountView.cs -------------------------------------------------------------------------------- /Server/Views/AccountView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/AccountView.resx -------------------------------------------------------------------------------- /Server/Views/BaseStatView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/BaseStatView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/BaseStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/BaseStatView.cs -------------------------------------------------------------------------------- /Server/Views/BaseStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/BaseStatView.resx -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CastleInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CastleInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CastleInfoView.resx -------------------------------------------------------------------------------- /Server/Views/CharacterView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CharacterView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CharacterView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CharacterView.cs -------------------------------------------------------------------------------- /Server/Views/CharacterView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CharacterView.resx -------------------------------------------------------------------------------- /Server/Views/ChatLogView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ChatLogView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ChatLogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ChatLogView.cs -------------------------------------------------------------------------------- /Server/Views/ChatLogView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ChatLogView.resx -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CompanionInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CompanionInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CompanionInfoView.resx -------------------------------------------------------------------------------- /Server/Views/ConfigView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ConfigView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ConfigView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ConfigView.cs -------------------------------------------------------------------------------- /Server/Views/ConfigView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ConfigView.resx -------------------------------------------------------------------------------- /Server/Views/CurrencyInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CurrencyInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CurrencyInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CurrencyInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CurrencyInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/CurrencyInfoView.resx -------------------------------------------------------------------------------- /Server/Views/DatabaseEncryptionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DatabaseEncryptionForm.Designer.cs -------------------------------------------------------------------------------- /Server/Views/DatabaseEncryptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DatabaseEncryptionForm.cs -------------------------------------------------------------------------------- /Server/Views/DatabaseEncryptionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DatabaseEncryptionForm.resx -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DiagnosticView.cs -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DiagnosticView.designer.cs -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DiagnosticView.resx -------------------------------------------------------------------------------- /Server/Views/DropInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DropInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/DropInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DropInfoView.cs -------------------------------------------------------------------------------- /Server/Views/DropInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/DropInfoView.resx -------------------------------------------------------------------------------- /Server/Views/EventInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/EventInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/EventInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/EventInfoView.cs -------------------------------------------------------------------------------- /Server/Views/EventInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/EventInfoView.resx -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/GameGoldPaymentView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/GameGoldPaymentView.cs -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/GameGoldPaymentView.resx -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/GameStoreSaleView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/GameStoreSaleView.cs -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/GameStoreSaleView.resx -------------------------------------------------------------------------------- /Server/Views/InstanceInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/InstanceInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/InstanceInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/InstanceInfoView.cs -------------------------------------------------------------------------------- /Server/Views/InstanceInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/InstanceInfoView.resx -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ItemInfoStatView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ItemInfoStatView.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ItemInfoStatView.resx -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ItemInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ItemInfoView.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/ItemInfoView.resx -------------------------------------------------------------------------------- /Server/Views/LocationView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/LocationView.resx -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MagicInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MagicInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MagicInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MapInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MapInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MapRegionView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapRegionView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapRegionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapRegionView.cs -------------------------------------------------------------------------------- /Server/Views/MapRegionView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapRegionView.resx -------------------------------------------------------------------------------- /Server/Views/MapViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapViewer.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapViewer.cs -------------------------------------------------------------------------------- /Server/Views/MapViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MapViewer.resx -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MonsterInfoStatView.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MonsterInfoStatView.designer.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MonsterInfoStatView.resx -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MonsterInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MonsterInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MonsterInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MovementInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MovementInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/MovementInfoView.resx -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/NPCInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/NPCInfoView.cs -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/NPCInfoView.resx -------------------------------------------------------------------------------- /Server/Views/NPCPageView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/NPCPageView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCPageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/NPCPageView.cs -------------------------------------------------------------------------------- /Server/Views/NPCPageView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/NPCPageView.resx -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/QuestInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/QuestInfoView.cs -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/QuestInfoView.resx -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/RespawnInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/RespawnInfoView.cs -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/RespawnInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SafeZoneInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SafeZoneInfoView.cs -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SafeZoneInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SetInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SetInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SetInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SetInfoView.cs -------------------------------------------------------------------------------- /Server/Views/SetInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SetInfoView.resx -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/StoreInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/StoreInfoView.cs -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/StoreInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SyncForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SyncForm.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SyncForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SyncForm.cs -------------------------------------------------------------------------------- /Server/Views/SyncForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SyncForm.resx -------------------------------------------------------------------------------- /Server/Views/SystemLogView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SystemLogView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SystemLogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SystemLogView.cs -------------------------------------------------------------------------------- /Server/Views/SystemLogView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/SystemLogView.resx -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserConquestStatsView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserConquestStatsView.cs -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserConquestStatsView.resx -------------------------------------------------------------------------------- /Server/Views/UserDropView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserDropView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserDropView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserDropView.cs -------------------------------------------------------------------------------- /Server/Views/UserDropView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserDropView.resx -------------------------------------------------------------------------------- /Server/Views/UserItemView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserItemView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserItemView.cs -------------------------------------------------------------------------------- /Server/Views/UserItemView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserItemView.resx -------------------------------------------------------------------------------- /Server/Views/UserMailView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserMailView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserMailView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserMailView.cs -------------------------------------------------------------------------------- /Server/Views/UserMailView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/UserMailView.resx -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/WeaponCraftStatInfoView.cs -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/WeaponCraftStatInfoView.designer.cs -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/Views/WeaponCraftStatInfoView.resx -------------------------------------------------------------------------------- /Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Server/packages.config -------------------------------------------------------------------------------- /ServerCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerCore/Program.cs -------------------------------------------------------------------------------- /ServerCore/ServerCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerCore/ServerCore.csproj -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/AccountInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AuctionHistoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/AuctionHistoryInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AuctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/AuctionInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AutoPotionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/AutoPotionLink.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/BlockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/BlockInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/BuffInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/BuffInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/CharacterBeltLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/CharacterBeltLink.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/CharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/CharacterInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/CompanionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/CompanionFilters.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GameGoldPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/GameGoldPayment.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GameStoreSale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/GameStoreSale.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/GuildInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GuildMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/GuildMemberInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GuildWarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/GuildWarInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/MailInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/MailInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/RefineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/RefineInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserCompanion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserCompanion.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserCompanionUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserCompanionUnlock.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserConquest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserConquest.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserConquestStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserConquestStats.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserCurrency.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserDrop.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserFortuneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserFortuneInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserItem.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserItemStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserItemStat.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserMagic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserMagic.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/DBModels/UserQuest.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/Config.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/EmailService.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/SConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/SConnection.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/SEnvir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/SEnvir.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Translations/ChineseMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/Translations/ChineseMessages.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Translations/EnglishMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/Translations/EnglishMessages.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Translations/StringMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/Translations/StringMessages.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Envir/WebServer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/ConquestWar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/ConquestWar.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/DelayedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/DelayedAction.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/ItemCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/ItemCheck.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/ItemObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/ItemObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Map.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/MapObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/MonsterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/MonsterObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Affliction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Affliction.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ArachnidGrazer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/ArachnidGrazer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ArchLichTaedu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/ArchLichTaedu.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyaLeftGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/BanyaLeftGuard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyoCaptain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/BanyoCaptain.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyoLordGuzak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/BanyoLordGuzak.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyoWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/BanyoWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CarnivorousPlant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/CarnivorousPlant.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CastleLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/CastleLord.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ChaosKnight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/ChaosKnight.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ChristmasMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/ChristmasMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Companion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Companion.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CorrosivePoisonSpitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/CorrosivePoisonSpitter.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CrimsonNecromancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/CrimsonNecromancer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DepartedMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/DepartedMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DoomClaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/DoomClaw.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DragonLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/DragonLord.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DragonQueen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/DragonQueen.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EmperorSaWoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/EmperorSaWoo.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EnragedArchLichTaedu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/EnragedArchLichTaedu.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EnragedLordNiJae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/EnragedLordNiJae.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EscortCommander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/EscortCommander.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EvilElephant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/EvilElephant.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FerociousIceTiger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/FerociousIceTiger.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FieryDancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/FieryDancer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FlameDemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/FlameDemon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FrostLordHwa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/FrostLordHwa.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GhostMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/GhostMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GhostSorcerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/GhostSorcerer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GiantLizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/GiantLizard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GoruArcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/GoruArcher.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GoruSpearman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/GoruSpearman.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Guard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/HalloweenMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/HalloweenMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/HealerAnt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/HealerAnt.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/IcyGoddess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/IcyGoddess.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/IcySpiritGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/IcySpiritGeneral.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/IcySpiritWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/IcySpiritWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/JinamStoneGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/JinamStoneGate.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/JinchonDevil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/JinchonDevil.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/JinhwanSpirit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/JinhwanSpirit.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Larva.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Larva.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/LordNiJae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/LordNiJae.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/MirrorImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/MirrorImage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/MonasteryBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/MonasteryBoss.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Monkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Monkey.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/MoonFeralWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/MoonFeralWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NetherworldGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/NetherworldGate.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NumaHighMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/NumaHighMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NumaMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/NumaMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NumaStoneThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/NumaStoneThrower.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/OmaMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/OmaMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/OmaWarlord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/OmaWarlord.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/OxFeralGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/OxFeralGeneral.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/PachontheChaosbringer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/PachontheChaosbringer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/PinkBat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/PinkBat.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Puppet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Puppet.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/QuartzTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/QuartzTree.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/QuartzTurtleSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/QuartzTurtleSub.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/QueenOfDawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/QueenOfDawn.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/RazorTusk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/RazorTusk.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/RedMoonTheFallen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/RedMoonTheFallen.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaBlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaBlack.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaBlue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaBlue.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaFireGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaFireGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaIceGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaIceGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaLightningGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaLightningGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaPhoenix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaPhoenix.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaProphet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaProphet.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaScorcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaScorcer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaWhite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaWhite.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaWindGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SamaWindGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Shinsu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Shinsu.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SkeletonAxeThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SkeletonAxeThrower.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SonicLizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SonicLizard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SpittingSpider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SpittingSpider.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Stomper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Stomper.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SunFeralWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/SunFeralWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/TreeMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/TreeMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/UmaKing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/UmaKing.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/VoraciousGhost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/VoraciousGhost.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Warewolf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/Warewolf.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WedgeMothLarva.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/WedgeMothLarva.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WhiteBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/WhiteBone.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WindfurySorcerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/WindfurySorcerer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WingedHorror.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/WingedHorror.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/YumgonWitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/YumgonWitch.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ZumaGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/ZumaGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ZumaKing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/Monsters/ZumaKing.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/NPCObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/NPCObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/PlayerObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/SpellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Models/SpellObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ServerLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /ServerLibrary/Resources/BuyGameGold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Resources/BuyGameGold.txt -------------------------------------------------------------------------------- /ServerLibrary/Resources/CharacterNotFound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/Resources/CharacterNotFound.txt -------------------------------------------------------------------------------- /ServerLibrary/ServerLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/ServerLibrary/ServerLibrary.csproj -------------------------------------------------------------------------------- /Zircon Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-ethernity/mir3-zircon/HEAD/Zircon Server.sln --------------------------------------------------------------------------------