├── .gitignore ├── Client ├── Client.csproj ├── Client.csproj.DotSettings ├── Controls │ ├── DXAnimatedControl.cs │ ├── DXButton.cs │ ├── DXCheckBox.cs │ ├── DXColourControl.cs │ ├── DXComboBox.cs │ ├── DXConfigWindow.cs │ ├── DXControl.cs │ ├── DXDropFilterWindow.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 ├── Insanity.ico ├── Models │ ├── DamageInfo.cs │ ├── ItemObject.cs │ ├── MapObject.cs │ ├── MirEffect.cs │ ├── MirLibrary.cs │ ├── MirProjectile.cs │ ├── MonsterObject.cs │ ├── NPCObject.cs │ ├── ObjectAction.cs │ ├── ParticleEngine │ │ ├── ParticleEngine.cs │ │ └── Particles │ │ │ ├── FogParticle.cs │ │ │ └── Particle.cs │ ├── PlayerObject.cs │ ├── SpellObject.cs │ └── UserObject.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Insanity.ico ├── 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 │ │ ├── CompanionOptionsDialog.cs │ │ ├── EditCharacterDialog.cs │ │ ├── ExitDialog.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 ├── 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 ├── Insanity.ico ├── ManagedSquish.dll ├── NativeSquish_x64.dll ├── NativeSquish_x86.dll ├── SlimDX.dll └── patcher-6.bmp ├── Database └── System.db ├── 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 ├── Insanity.ico ├── 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 │ └── patcher-6.bmp └── Zircon.ico ├── 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 ├── LibraryEditor ├── App.config ├── 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 ├── 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 ├── README.md ├── Server ├── App.config ├── DBModels │ ├── AccountInfo.cs │ ├── AuctionHistoryInfo.cs │ ├── AuctionInfo.cs │ ├── AutoPotionLink.cs │ ├── BlockInfo.cs │ ├── BuffInfo.cs │ ├── CharacterBeltLink.cs │ ├── CharacterInfo.cs │ ├── GameGoldPayment.cs │ ├── GameStoreSale.cs │ ├── GuildAllianceInfo.cs │ ├── GuildInfo.cs │ ├── GuildMemberInfo.cs │ ├── GuildWarInfo.cs │ ├── MailInfo.cs │ ├── RefineInfo.cs │ ├── UserCompanion.cs │ ├── UserCompanionUnlock.cs │ ├── UserConquest.cs │ ├── UserConquestStats.cs │ ├── UserDrop.cs │ ├── UserFortuneInfo.cs │ ├── UserItem.cs │ ├── UserItemStat.cs │ ├── UserMagic.cs │ └── UserQuest.cs ├── Envir │ ├── Config.cs │ ├── SConnection.cs │ ├── SEnvir.cs │ └── Translations │ │ ├── ChineseMessages.cs │ │ ├── EnglishMessages.cs │ │ └── StringMessages.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 │ │ ├── BlueBlossom.cs │ │ ├── CarnivorousPlant.cs │ │ ├── CastleLord.cs │ │ ├── ChaosKnight.cs │ │ ├── ChristmasMonster.cs │ │ ├── Companion.cs │ │ ├── CorrosivePoisonSpitter.cs │ │ ├── CrawlerSlave.cs │ │ ├── CrimsonNecromancer.cs │ │ ├── CursedSlave.cs │ │ ├── DepartedMonster.cs │ │ ├── DoomClaw.cs │ │ ├── DragonLord.cs │ │ ├── DragonQueen.cs │ │ ├── DuelHitMonster.cs │ │ ├── EmperorSaWoo.cs │ │ ├── EnragedArchLichTaedu.cs │ │ ├── EnragedLordNiJae.cs │ │ ├── EscortCommander.cs │ │ ├── EvilCursedSlave.cs │ │ ├── EvilElephant.cs │ │ ├── FerociousIceTiger.cs │ │ ├── FieryDancer.cs │ │ ├── FireBird.cs │ │ ├── FlameDemon.cs │ │ ├── FrostLordHwa.cs │ │ ├── GardenDefender.cs │ │ ├── GardenSoldier.cs │ │ ├── GhostMage.cs │ │ ├── GhostSorcerer.cs │ │ ├── GiantLizard.cs │ │ ├── GoruArcher.cs │ │ ├── GoruSpearman.cs │ │ ├── Guard.cs │ │ ├── HalloweenMonster.cs │ │ ├── HealerAnt.cs │ │ ├── HellBringer.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 │ │ ├── PoisonousGolem.cs │ │ ├── Puppet.cs │ │ ├── QuartzTree.cs │ │ ├── QuartzTurtleSub.cs │ │ ├── QueenOfDawn.cs │ │ ├── RazorTusk.cs │ │ ├── RedBlossom.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 │ ├── PlayerSets.cs │ └── SpellObject.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── licenses.licx │ └── licenses.licx.bak ├── Resources │ ├── BuyGameGold.txt │ └── CharacterNotFound.txt ├── 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 │ ├── CompanionInfoView.Designer.cs │ ├── CompanionInfoView.cs │ ├── CompanionInfoView.resx │ ├── ConfigView.Designer.cs │ ├── ConfigView.cs │ ├── ConfigView.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 │ ├── 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 │ ├── 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 └── Zircon Server.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Client.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Client.csproj.DotSettings -------------------------------------------------------------------------------- /Client/Controls/DXAnimatedControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXAnimatedControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXButton.cs -------------------------------------------------------------------------------- /Client/Controls/DXCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXCheckBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXColourControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXColourControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXComboBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXConfigWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXDropFilterWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXDropFilterWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXImageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXImageControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXInputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXInputWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemAmountWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXItemAmountWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXItemCell.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXItemGrid.cs -------------------------------------------------------------------------------- /Client/Controls/DXKeyBindWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXKeyBindWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXLabel.cs -------------------------------------------------------------------------------- /Client/Controls/DXListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXListBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXMessageBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXNumberBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXNumberTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXNumberTextBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXScene.cs -------------------------------------------------------------------------------- /Client/Controls/DXTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXTabControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXTextBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXVScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXVScrollBar.cs -------------------------------------------------------------------------------- /Client/Controls/DXWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Controls/DXWindow.cs -------------------------------------------------------------------------------- /Client/Envir/CConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/CConnection.cs -------------------------------------------------------------------------------- /Client/Envir/CEnvir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/CEnvir.cs -------------------------------------------------------------------------------- /Client/Envir/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/Config.cs -------------------------------------------------------------------------------- /Client/Envir/DXManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/DXManager.cs -------------------------------------------------------------------------------- /Client/Envir/DXSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/DXSound.cs -------------------------------------------------------------------------------- /Client/Envir/DXSoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/DXSoundManager.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/ChineseMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/Translations/ChineseMessages.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/EnglishMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/Translations/EnglishMessages.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/StringMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Envir/Translations/StringMessages.cs -------------------------------------------------------------------------------- /Client/Insanity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Insanity.ico -------------------------------------------------------------------------------- /Client/Models/DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/DamageInfo.cs -------------------------------------------------------------------------------- /Client/Models/ItemObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/ItemObject.cs -------------------------------------------------------------------------------- /Client/Models/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/MapObject.cs -------------------------------------------------------------------------------- /Client/Models/MirEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/MirEffect.cs -------------------------------------------------------------------------------- /Client/Models/MirLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/MirLibrary.cs -------------------------------------------------------------------------------- /Client/Models/MirProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/MirProjectile.cs -------------------------------------------------------------------------------- /Client/Models/MonsterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/MonsterObject.cs -------------------------------------------------------------------------------- /Client/Models/NPCObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/NPCObject.cs -------------------------------------------------------------------------------- /Client/Models/ObjectAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/ObjectAction.cs -------------------------------------------------------------------------------- /Client/Models/ParticleEngine/ParticleEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/ParticleEngine/ParticleEngine.cs -------------------------------------------------------------------------------- /Client/Models/ParticleEngine/Particles/FogParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/ParticleEngine/Particles/FogParticle.cs -------------------------------------------------------------------------------- /Client/Models/ParticleEngine/Particles/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/ParticleEngine/Particles/Particle.cs -------------------------------------------------------------------------------- /Client/Models/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/PlayerObject.cs -------------------------------------------------------------------------------- /Client/Models/SpellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/SpellObject.cs -------------------------------------------------------------------------------- /Client/Models/UserObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Models/UserObject.cs -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Properties/Resources.resx -------------------------------------------------------------------------------- /Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Properties/Settings.settings -------------------------------------------------------------------------------- /Client/Resources/Insanity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Resources/Insanity.ico -------------------------------------------------------------------------------- /Client/Scenes/GameScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/GameScene.cs -------------------------------------------------------------------------------- /Client/Scenes/LoginScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/LoginScene.cs -------------------------------------------------------------------------------- /Client/Scenes/SelectScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/SelectScene.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/AutoPotionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/AutoPotionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BeltDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/BeltDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BigMapDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/BigMapDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BlockDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/BlockDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BuffDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/BuffDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CharacterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/CharacterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/ChatOptionsDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/ChatTab.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/ChatTextBox.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CompanionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/CompanionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CompanionOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/CompanionOptionsDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/EditCharacterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/EditCharacterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ExitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/ExitDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/FortuneCheckerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/FortuneCheckerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/GroupDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/GroupDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/GuildDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/GuildDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/InspectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/InspectDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/InventoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/InventoryDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MagicBarDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MagicBarDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MagicDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MagicDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MailDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MailDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MainPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MainPanel.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MapControl.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MarketPlaceDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MarketPlaceDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MiniMapDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MiniMapDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MonsterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/MonsterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/NPCDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/NPCDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/QuestDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/QuestDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/QuestTrackerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/QuestTrackerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/RankingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/RankingDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/StorageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/StorageDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/TradeDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Scenes/Views/TradeDialog.cs -------------------------------------------------------------------------------- /Client/TargetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/TargetForm.cs -------------------------------------------------------------------------------- /Client/TargetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/TargetForm.resx -------------------------------------------------------------------------------- /Client/UserModels/ChatTabControlSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/UserModels/ChatTabControlSetting.cs -------------------------------------------------------------------------------- /Client/UserModels/ChatTabPageSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/UserModels/ChatTabPageSetting.cs -------------------------------------------------------------------------------- /Client/UserModels/KeyBindInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/UserModels/KeyBindInfo.cs -------------------------------------------------------------------------------- /Client/UserModels/WindowSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/UserModels/WindowSetting.cs -------------------------------------------------------------------------------- /Client/Zircon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Client/Zircon.ico -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.BonusSkins.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.BonusSkins.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Data.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Data.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Images.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Images.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Office.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Office.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Pdf.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Pdf.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Printing.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Printing.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.RichEdit.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.RichEdit.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.RichEdit.v18.2.Export.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.RichEdit.v18.2.Export.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Sparkline.v18.2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Sparkline.v18.2.Core.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.Utils.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.Utils.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraBars.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraBars.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraEditors.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraEditors.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraGrid.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraGrid.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraLayout.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraLayout.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraNavBar.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraNavBar.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraPrinting.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraPrinting.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraRichEdit.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraRichEdit.v18.2.dll -------------------------------------------------------------------------------- /Components/DevExpress/DevExpress.XtraTreeList.v18.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/DevExpress/DevExpress.XtraTreeList.v18.2.dll -------------------------------------------------------------------------------- /Components/Insanity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/Insanity.ico -------------------------------------------------------------------------------- /Components/ManagedSquish.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/ManagedSquish.dll -------------------------------------------------------------------------------- /Components/NativeSquish_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/NativeSquish_x64.dll -------------------------------------------------------------------------------- /Components/NativeSquish_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/NativeSquish_x86.dll -------------------------------------------------------------------------------- /Components/SlimDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/SlimDX.dll -------------------------------------------------------------------------------- /Components/patcher-6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Components/patcher-6.bmp -------------------------------------------------------------------------------- /Database/System.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Database/System.db -------------------------------------------------------------------------------- /ImageManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/App.config -------------------------------------------------------------------------------- /ImageManager/IMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/IMain.Designer.cs -------------------------------------------------------------------------------- /ImageManager/IMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/IMain.cs -------------------------------------------------------------------------------- /ImageManager/IMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/IMain.resx -------------------------------------------------------------------------------- /ImageManager/ImageManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/ImageManager.csproj -------------------------------------------------------------------------------- /ImageManager/ImageManager.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/ImageManager.csproj.bak -------------------------------------------------------------------------------- /ImageManager/Mir3Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Mir3Library.cs -------------------------------------------------------------------------------- /ImageManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Program.cs -------------------------------------------------------------------------------- /ImageManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Properties/Resources.resx -------------------------------------------------------------------------------- /ImageManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Properties/Settings.settings -------------------------------------------------------------------------------- /ImageManager/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageManager/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /ImageManager/WTLLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/ImageManager/WTLLibrary.cs -------------------------------------------------------------------------------- /Launcher/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Config.cs -------------------------------------------------------------------------------- /Launcher/Insanity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Insanity.ico -------------------------------------------------------------------------------- /Launcher/LMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/LMain.Designer.cs -------------------------------------------------------------------------------- /Launcher/LMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/LMain.cs -------------------------------------------------------------------------------- /Launcher/LMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/LMain.resx -------------------------------------------------------------------------------- /Launcher/Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Launcher.csproj -------------------------------------------------------------------------------- /Launcher/Launcher.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Launcher.csproj.DotSettings -------------------------------------------------------------------------------- /Launcher/Launcher.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Launcher.csproj.bak -------------------------------------------------------------------------------- /Launcher/PatchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/PatchInformation.cs -------------------------------------------------------------------------------- /Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Program.cs -------------------------------------------------------------------------------- /Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /Launcher/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/licenses.licx -------------------------------------------------------------------------------- /Launcher/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /Launcher/Resources/PatchHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Resources/PatchHeader.png -------------------------------------------------------------------------------- /Launcher/Resources/Patcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Resources/Patcher.exe -------------------------------------------------------------------------------- /Launcher/Resources/patcher-6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Resources/patcher-6.bmp -------------------------------------------------------------------------------- /Launcher/Zircon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Launcher/Zircon.ico -------------------------------------------------------------------------------- /Library/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/ConfigReader.cs -------------------------------------------------------------------------------- /Library/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Enum.cs -------------------------------------------------------------------------------- /Library/FrameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/FrameSet.cs -------------------------------------------------------------------------------- /Library/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Functions.cs -------------------------------------------------------------------------------- /Library/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Globals.cs -------------------------------------------------------------------------------- /Library/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Libraries.cs -------------------------------------------------------------------------------- /Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Library.csproj -------------------------------------------------------------------------------- /Library/MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /Library/MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/Attributes.cs -------------------------------------------------------------------------------- /Library/MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /Library/MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /Library/MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /Library/MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/DBObject.cs -------------------------------------------------------------------------------- /Library/MirDB/DBRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/DBRelationship.cs -------------------------------------------------------------------------------- /Library/MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/DBValue.cs -------------------------------------------------------------------------------- /Library/MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/MirDB/Session.cs -------------------------------------------------------------------------------- /Library/Network/BaseConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Network/BaseConnection.cs -------------------------------------------------------------------------------- /Library/Network/ClientPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Network/ClientPackets.cs -------------------------------------------------------------------------------- /Library/Network/GeneralPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Network/GeneralPackets.cs -------------------------------------------------------------------------------- /Library/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Network/Packet.cs -------------------------------------------------------------------------------- /Library/Network/ServerPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Network/ServerPackets.cs -------------------------------------------------------------------------------- /Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Library/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Stat.cs -------------------------------------------------------------------------------- /Library/SystemModels/BaseStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/BaseStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/CastleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/CastleInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/CompanionInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionLevelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/CompanionLevelInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionSkillInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/CompanionSkillInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/EventInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MapRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MapRegion.cs -------------------------------------------------------------------------------- /Library/SystemModels/MineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MineInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/QuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/QuestInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/StoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/StoreInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/WeaponCraftStatsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/SystemModels/WeaponCraftStatsInfo.cs -------------------------------------------------------------------------------- /Library/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Library/Time.cs -------------------------------------------------------------------------------- /LibraryEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/App.config -------------------------------------------------------------------------------- /LibraryEditor/FixedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/FixedListView.cs -------------------------------------------------------------------------------- /LibraryEditor/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Function.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/LMain.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/LMain.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/LMain.resx -------------------------------------------------------------------------------- /LibraryEditor/LibraryEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/LibraryEditor.csproj -------------------------------------------------------------------------------- /LibraryEditor/LockBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/LockBitmap.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/MLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibraryV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/MLibraryV0.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibraryV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/MLibraryV2.cs -------------------------------------------------------------------------------- /LibraryEditor/Mir3Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Mir3Library.cs -------------------------------------------------------------------------------- /LibraryEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Program.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Properties/Resources1.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /LibraryEditor/WTLLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/WTLLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/WeMadeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/WeMadeLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/lizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/lizard.ico -------------------------------------------------------------------------------- /LibraryEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/LibraryEditor/packages.config -------------------------------------------------------------------------------- /MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/Attributes.cs -------------------------------------------------------------------------------- /MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/DBObject.cs -------------------------------------------------------------------------------- /MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/DBValue.cs -------------------------------------------------------------------------------- /MirDB/MirDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/MirDB.csproj -------------------------------------------------------------------------------- /MirDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/Session.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/MirDB/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /PatchManager/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Config.cs -------------------------------------------------------------------------------- /PatchManager/PMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/PMain.Designer.cs -------------------------------------------------------------------------------- /PatchManager/PMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/PMain.cs -------------------------------------------------------------------------------- /PatchManager/PMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/PMain.resx -------------------------------------------------------------------------------- /PatchManager/PatchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/PatchInformation.cs -------------------------------------------------------------------------------- /PatchManager/PatchManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/PatchManager.csproj -------------------------------------------------------------------------------- /PatchManager/PatchManager.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/PatchManager.csproj.bak -------------------------------------------------------------------------------- /PatchManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Program.cs -------------------------------------------------------------------------------- /PatchManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Properties/Resources.resx -------------------------------------------------------------------------------- /PatchManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Properties/Settings.settings -------------------------------------------------------------------------------- /PatchManager/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PatchManager/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/PatchManager/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /Patcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/App.config -------------------------------------------------------------------------------- /Patcher/PMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/PMain.Designer.cs -------------------------------------------------------------------------------- /Patcher/PMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/PMain.cs -------------------------------------------------------------------------------- /Patcher/PMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/PMain.resx -------------------------------------------------------------------------------- /Patcher/Patcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Patcher.csproj -------------------------------------------------------------------------------- /Patcher/Patcher.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Patcher.csproj.bak -------------------------------------------------------------------------------- /Patcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Program.cs -------------------------------------------------------------------------------- /Patcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Patcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Patcher/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/README.md -------------------------------------------------------------------------------- /Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/App.config -------------------------------------------------------------------------------- /Server/DBModels/AccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/AccountInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/AuctionHistoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/AuctionHistoryInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/AuctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/AuctionInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/AutoPotionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/AutoPotionLink.cs -------------------------------------------------------------------------------- /Server/DBModels/BlockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/BlockInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/BuffInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/BuffInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/CharacterBeltLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/CharacterBeltLink.cs -------------------------------------------------------------------------------- /Server/DBModels/CharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/CharacterInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/GameGoldPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/GameGoldPayment.cs -------------------------------------------------------------------------------- /Server/DBModels/GameStoreSale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/GameStoreSale.cs -------------------------------------------------------------------------------- /Server/DBModels/GuildAllianceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/GuildAllianceInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/GuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/GuildInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/GuildMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/GuildMemberInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/GuildWarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/GuildWarInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/MailInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/MailInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/RefineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/RefineInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/UserCompanion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserCompanion.cs -------------------------------------------------------------------------------- /Server/DBModels/UserCompanionUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserCompanionUnlock.cs -------------------------------------------------------------------------------- /Server/DBModels/UserConquest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserConquest.cs -------------------------------------------------------------------------------- /Server/DBModels/UserConquestStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserConquestStats.cs -------------------------------------------------------------------------------- /Server/DBModels/UserDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserDrop.cs -------------------------------------------------------------------------------- /Server/DBModels/UserFortuneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserFortuneInfo.cs -------------------------------------------------------------------------------- /Server/DBModels/UserItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserItem.cs -------------------------------------------------------------------------------- /Server/DBModels/UserItemStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserItemStat.cs -------------------------------------------------------------------------------- /Server/DBModels/UserMagic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserMagic.cs -------------------------------------------------------------------------------- /Server/DBModels/UserQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/DBModels/UserQuest.cs -------------------------------------------------------------------------------- /Server/Envir/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Envir/Config.cs -------------------------------------------------------------------------------- /Server/Envir/SConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Envir/SConnection.cs -------------------------------------------------------------------------------- /Server/Envir/SEnvir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Envir/SEnvir.cs -------------------------------------------------------------------------------- /Server/Envir/Translations/ChineseMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Envir/Translations/ChineseMessages.cs -------------------------------------------------------------------------------- /Server/Envir/Translations/EnglishMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Envir/Translations/EnglishMessages.cs -------------------------------------------------------------------------------- /Server/Envir/Translations/StringMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Envir/Translations/StringMessages.cs -------------------------------------------------------------------------------- /Server/Models/ConquestWar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/ConquestWar.cs -------------------------------------------------------------------------------- /Server/Models/DelayedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/DelayedAction.cs -------------------------------------------------------------------------------- /Server/Models/ItemCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/ItemCheck.cs -------------------------------------------------------------------------------- /Server/Models/ItemObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/ItemObject.cs -------------------------------------------------------------------------------- /Server/Models/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Map.cs -------------------------------------------------------------------------------- /Server/Models/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/MapObject.cs -------------------------------------------------------------------------------- /Server/Models/MonsterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/MonsterObject.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Affliction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Affliction.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/ArachnidGrazer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/ArachnidGrazer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/ArchLichTaedu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/ArchLichTaedu.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/BanyaLeftGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/BanyaLeftGuard.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/BanyoCaptain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/BanyoCaptain.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/BanyoLordGuzak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/BanyoLordGuzak.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/BanyoWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/BanyoWarrior.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/BlueBlossom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/BlueBlossom.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/CarnivorousPlant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/CarnivorousPlant.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/CastleLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/CastleLord.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/ChaosKnight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/ChaosKnight.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/ChristmasMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/ChristmasMonster.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Companion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Companion.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/CorrosivePoisonSpitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/CorrosivePoisonSpitter.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/CrawlerSlave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/CrawlerSlave.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/CrimsonNecromancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/CrimsonNecromancer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/CursedSlave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/CursedSlave.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/DepartedMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/DepartedMonster.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/DoomClaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/DoomClaw.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/DragonLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/DragonLord.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/DragonQueen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/DragonQueen.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/DuelHitMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/DuelHitMonster.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/EmperorSaWoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/EmperorSaWoo.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/EnragedArchLichTaedu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/EnragedArchLichTaedu.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/EnragedLordNiJae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/EnragedLordNiJae.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/EscortCommander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/EscortCommander.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/EvilCursedSlave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/EvilCursedSlave.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/EvilElephant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/EvilElephant.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/FerociousIceTiger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/FerociousIceTiger.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/FieryDancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/FieryDancer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/FireBird.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/FireBird.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/FlameDemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/FlameDemon.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/FrostLordHwa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/FrostLordHwa.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GardenDefender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GardenDefender.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GardenSoldier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GardenSoldier.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GhostMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GhostMage.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GhostSorcerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GhostSorcerer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GiantLizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GiantLizard.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GoruArcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GoruArcher.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/GoruSpearman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/GoruSpearman.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Guard.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/HalloweenMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/HalloweenMonster.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/HealerAnt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/HealerAnt.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/HellBringer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/HellBringer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/IcyGoddess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/IcyGoddess.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/IcySpiritGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/IcySpiritGeneral.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/IcySpiritWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/IcySpiritWarrior.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/JinamStoneGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/JinamStoneGate.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/JinchonDevil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/JinchonDevil.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/JinhwanSpirit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/JinhwanSpirit.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Larva.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Larva.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/LordNiJae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/LordNiJae.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/MirrorImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/MirrorImage.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/MonasteryBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/MonasteryBoss.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Monkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Monkey.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/MoonFeralWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/MoonFeralWarrior.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/NetherworldGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/NetherworldGate.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/NumaHighMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/NumaHighMage.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/NumaMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/NumaMage.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/NumaStoneThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/NumaStoneThrower.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/OmaMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/OmaMage.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/OmaWarlord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/OmaWarlord.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/OxFeralGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/OxFeralGeneral.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/PachontheChaosbringer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/PachontheChaosbringer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/PinkBat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/PinkBat.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/PoisonousGolem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/PoisonousGolem.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Puppet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Puppet.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/QuartzTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/QuartzTree.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/QuartzTurtleSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/QuartzTurtleSub.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/QueenOfDawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/QueenOfDawn.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/RazorTusk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/RazorTusk.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/RedBlossom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/RedBlossom.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/RedMoonTheFallen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/RedMoonTheFallen.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaBlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaBlack.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaBlue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaBlue.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaFireGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaFireGuardian.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaIceGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaIceGuardian.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaLightningGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaLightningGuardian.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaPhoenix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaPhoenix.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaProphet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaProphet.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaScorcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaScorcer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaWhite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaWhite.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SamaWindGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SamaWindGuardian.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Shinsu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Shinsu.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SkeletonAxeThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SkeletonAxeThrower.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SonicLizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SonicLizard.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SpittingSpider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SpittingSpider.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Stomper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Stomper.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/SunFeralWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/SunFeralWarrior.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/TreeMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/TreeMonster.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/UmaKing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/UmaKing.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/VoraciousGhost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/VoraciousGhost.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/Warewolf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/Warewolf.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/WedgeMothLarva.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/WedgeMothLarva.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/WhiteBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/WhiteBone.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/WindfurySorcerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/WindfurySorcerer.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/WingedHorror.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/WingedHorror.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/YumgonWitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/YumgonWitch.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/ZumaGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/ZumaGuardian.cs -------------------------------------------------------------------------------- /Server/Models/Monsters/ZumaKing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/Monsters/ZumaKing.cs -------------------------------------------------------------------------------- /Server/Models/NPCObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/NPCObject.cs -------------------------------------------------------------------------------- /Server/Models/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/PlayerObject.cs -------------------------------------------------------------------------------- /Server/Models/PlayerSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/PlayerSets.cs -------------------------------------------------------------------------------- /Server/Models/SpellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Models/SpellObject.cs -------------------------------------------------------------------------------- /Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Program.cs -------------------------------------------------------------------------------- /Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/Resources.resx -------------------------------------------------------------------------------- /Server/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Server/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/Settings.settings -------------------------------------------------------------------------------- /Server/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/licenses.licx -------------------------------------------------------------------------------- /Server/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /Server/Resources/BuyGameGold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Resources/BuyGameGold.txt -------------------------------------------------------------------------------- /Server/Resources/CharacterNotFound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Resources/CharacterNotFound.txt -------------------------------------------------------------------------------- /Server/SMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/SMain.Designer.cs -------------------------------------------------------------------------------- /Server/SMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/SMain.cs -------------------------------------------------------------------------------- /Server/SMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/SMain.resx -------------------------------------------------------------------------------- /Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Server.csproj -------------------------------------------------------------------------------- /Server/Server.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Server.csproj.bak -------------------------------------------------------------------------------- /Server/Views/AccountView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/AccountView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/AccountView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/AccountView.cs -------------------------------------------------------------------------------- /Server/Views/AccountView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/AccountView.resx -------------------------------------------------------------------------------- /Server/Views/BaseStatView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/BaseStatView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/BaseStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/BaseStatView.cs -------------------------------------------------------------------------------- /Server/Views/BaseStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/BaseStatView.resx -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CastleInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CastleInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CastleInfoView.resx -------------------------------------------------------------------------------- /Server/Views/CharacterView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CharacterView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CharacterView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CharacterView.cs -------------------------------------------------------------------------------- /Server/Views/CharacterView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CharacterView.resx -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CompanionInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CompanionInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/CompanionInfoView.resx -------------------------------------------------------------------------------- /Server/Views/ConfigView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ConfigView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ConfigView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ConfigView.cs -------------------------------------------------------------------------------- /Server/Views/ConfigView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ConfigView.resx -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/DiagnosticView.cs -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/DiagnosticView.designer.cs -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/DiagnosticView.resx -------------------------------------------------------------------------------- /Server/Views/DropInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/DropInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/DropInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/DropInfoView.cs -------------------------------------------------------------------------------- /Server/Views/DropInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/DropInfoView.resx -------------------------------------------------------------------------------- /Server/Views/EventInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/EventInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/EventInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/EventInfoView.cs -------------------------------------------------------------------------------- /Server/Views/EventInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/EventInfoView.resx -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/GameGoldPaymentView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/GameGoldPaymentView.cs -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/GameGoldPaymentView.resx -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/GameStoreSaleView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/GameStoreSaleView.cs -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/GameStoreSaleView.resx -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ItemInfoStatView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ItemInfoStatView.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ItemInfoStatView.resx -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ItemInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ItemInfoView.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/ItemInfoView.resx -------------------------------------------------------------------------------- /Server/Views/LocationView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/LocationView.resx -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MagicInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MagicInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MagicInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MapInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MapInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MapRegionView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapRegionView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapRegionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapRegionView.cs -------------------------------------------------------------------------------- /Server/Views/MapRegionView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapRegionView.resx -------------------------------------------------------------------------------- /Server/Views/MapViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapViewer.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapViewer.cs -------------------------------------------------------------------------------- /Server/Views/MapViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MapViewer.resx -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MonsterInfoStatView.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MonsterInfoStatView.designer.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MonsterInfoStatView.resx -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MonsterInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MonsterInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MonsterInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MovementInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MovementInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/MovementInfoView.resx -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/NPCInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/NPCInfoView.cs -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/NPCInfoView.resx -------------------------------------------------------------------------------- /Server/Views/NPCPageView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/NPCPageView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCPageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/NPCPageView.cs -------------------------------------------------------------------------------- /Server/Views/NPCPageView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/NPCPageView.resx -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/QuestInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/QuestInfoView.cs -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/QuestInfoView.resx -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/RespawnInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/RespawnInfoView.cs -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/RespawnInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SafeZoneInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SafeZoneInfoView.cs -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SafeZoneInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SetInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SetInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SetInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SetInfoView.cs -------------------------------------------------------------------------------- /Server/Views/SetInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SetInfoView.resx -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/StoreInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/StoreInfoView.cs -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/StoreInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SystemLogView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SystemLogView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SystemLogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SystemLogView.cs -------------------------------------------------------------------------------- /Server/Views/SystemLogView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/SystemLogView.resx -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserConquestStatsView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserConquestStatsView.cs -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserConquestStatsView.resx -------------------------------------------------------------------------------- /Server/Views/UserDropView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserDropView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserDropView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserDropView.cs -------------------------------------------------------------------------------- /Server/Views/UserDropView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserDropView.resx -------------------------------------------------------------------------------- /Server/Views/UserItemView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserItemView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserItemView.cs -------------------------------------------------------------------------------- /Server/Views/UserItemView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserItemView.resx -------------------------------------------------------------------------------- /Server/Views/UserMailView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserMailView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserMailView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserMailView.cs -------------------------------------------------------------------------------- /Server/Views/UserMailView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/UserMailView.resx -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/WeaponCraftStatInfoView.cs -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/WeaponCraftStatInfoView.designer.cs -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Server/Views/WeaponCraftStatInfoView.resx -------------------------------------------------------------------------------- /Zircon Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhells21/mir3insanity/HEAD/Zircon Server.sln --------------------------------------------------------------------------------