├── .gitignore ├── Client ├── Client.csproj ├── Controls │ ├── DXAnimatedControl.cs │ ├── DXButton.cs │ ├── DXCheckBox.cs │ ├── DXColourControl.cs │ ├── DXComboBox.cs │ ├── DXConfigWindow.cs │ ├── DXControl.cs │ ├── DXImageControl.cs │ ├── DXInputWindow.cs │ ├── DXItemAmountWindow.cs │ ├── DXItemCell.cs │ ├── DXItemGrid.cs │ ├── DXKeyBindWindow.cs │ ├── DXLabel.cs │ ├── DXListBox.cs │ ├── DXMapInfoControl.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 ├── Extensions │ └── SharpDXExtensions.cs ├── Models │ ├── DamageInfo.cs │ ├── ItemObject.cs │ ├── MapObject.cs │ ├── MirEffect.cs │ ├── MirLibrary.cs │ ├── MirLineEffect.cs │ ├── MirProjectile.cs │ ├── MonsterObject.cs │ ├── NPCObject.cs │ ├── ObjectAction.cs │ ├── Particles │ │ ├── Particle.cs │ │ ├── ParticleEmitter.cs │ │ ├── ParticleType.cs │ │ ├── Spells │ │ │ ├── FireballTrail.cs │ │ │ ├── GustTrail.cs │ │ │ ├── IceBladesTrail.cs │ │ │ └── IceBoltTrail.cs │ │ └── Weather │ │ │ ├── Fog.cs │ │ │ ├── Lightning.cs │ │ │ ├── Rain.cs │ │ │ └── Snow.cs │ ├── Player │ │ └── ExteriorEffectManager.cs │ ├── PlayerObject.cs │ ├── SpellObject.cs │ └── UserObject.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scenes │ ├── GameScene.cs │ ├── LoginScene.cs │ ├── SelectScene.cs │ └── Views │ │ ├── AutoPotionDialog.cs │ │ ├── BeltDialog.cs │ │ ├── BigMapDialog.cs │ │ ├── BuffDialog.cs │ │ ├── BundleDialog.cs │ │ ├── CaptionDialog.cs │ │ ├── Character │ │ ├── EquipEffectDecider.cs │ │ ├── FameEffectDecider.cs │ │ └── ItemEffectDecider.cs │ │ ├── CharacterDialog.cs │ │ ├── ChatOptionsDialog.cs │ │ ├── ChatTab.cs │ │ ├── ChatTextBox.cs │ │ ├── CommunicationDialog.cs │ │ ├── CompanionDialog.cs │ │ ├── CurrencyDialog.cs │ │ ├── DungeonFinderDialog.cs │ │ ├── EditCharacterDialog.cs │ │ ├── ExitDialog.cs │ │ ├── FilterDropDialog.cs │ │ ├── FishingDialog.cs │ │ ├── FortuneCheckerDialog.cs │ │ ├── GroupDialog.cs │ │ ├── GuildDialog.cs │ │ ├── InventoryDialog.cs │ │ ├── LootBoxDialog.cs │ │ ├── MagicBarDialog.cs │ │ ├── MagicDialog.cs │ │ ├── MainPanel.cs │ │ ├── MapControl.cs │ │ ├── MarketPlaceDialog.cs │ │ ├── MenuDialog.cs │ │ ├── MiniMapDialog.cs │ │ ├── MonsterDialog.cs │ │ ├── NPCDialog.cs │ │ ├── QuestDialog.cs │ │ ├── QuestTrackerDialog.cs │ │ ├── RankingDialog.cs │ │ ├── StorageDialog.cs │ │ ├── TimerDialog.cs │ │ └── TradeDialog.cs ├── TargetForm.cs ├── TargetForm.resx ├── UserModels │ ├── ChatTabControlSetting.cs │ ├── ChatTabPageSetting.cs │ ├── KeyBindInfo.cs │ └── WindowSetting.cs ├── Zircon.ico └── app.config ├── Components ├── ManagedSquish.dll ├── NativeSquish_x64.dll ├── NativeSquish_x86.dll └── SlimDX.dll ├── ImageManager ├── App.config ├── IMain.Designer.cs ├── IMain.cs ├── IMain.resx ├── ImageManager.csproj ├── Mir3Library.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── licenses.licx.bak └── WTLLibrary.cs ├── Launcher ├── Config.cs ├── LMain.Designer.cs ├── LMain.cs ├── LMain.resx ├── Launcher.csproj ├── PatchInformation.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── PatchHeader.png │ └── Patcher.exe ├── Zircon.ico └── app.config ├── Library ├── ConfigReader.cs ├── Enum.cs ├── FrameSet.cs ├── Functions.cs ├── Globals.cs ├── Libraries.cs ├── Library.csproj ├── MirDB │ ├── ADBCollection.cs │ ├── Attributes.cs │ ├── DBBindingList.cs │ ├── DBCollection.cs │ ├── DBMapping.cs │ ├── DBObject.cs │ ├── DBRelationship.cs │ ├── DBValue.cs │ └── Session.cs ├── Network │ ├── BaseConnection.cs │ ├── ClientPackets.cs │ ├── GeneralPackets.cs │ ├── Packet.cs │ └── ServerPackets.cs ├── Properties │ └── AssemblyInfo.cs ├── Stat.cs ├── SystemModels │ ├── BaseStat.cs │ ├── CastleInfo.cs │ ├── CompanionInfo.cs │ ├── CompanionLevelInfo.cs │ ├── CompanionSkillInfo.cs │ ├── CompanionSpeech.cs │ ├── DropInfo.cs │ ├── EventInfo.cs │ ├── GuardInfo.cs │ ├── ItemInfo.cs │ ├── ItemInfoStat.cs │ ├── MagicInfo.cs │ ├── MapInfo.cs │ ├── MapRegion.cs │ ├── MineInfo.cs │ ├── MonsterInfo.cs │ ├── MonsterInfoStat.cs │ ├── MovementInfo.cs │ ├── NPCInfo.cs │ ├── QuestInfo.cs │ ├── RespawnInfo.cs │ ├── SafeZoneInfo.cs │ ├── SetInfo.cs │ ├── SetInfoStat.cs │ ├── StoreInfo.cs │ └── WeaponCraftStatsInfo.cs └── Time.cs ├── LibraryCore ├── ConfigReader.cs ├── Encryption.cs ├── Enum.cs ├── FrameSet.cs ├── Functions.cs ├── Globals.cs ├── Libraries.cs ├── LibraryCore.csproj ├── MirDB │ ├── ADBCollection.cs │ ├── Attributes.cs │ ├── DBBindingList.cs │ ├── DBCollection.cs │ ├── DBMapping.cs │ ├── DBObject.cs │ ├── DBRelationship.cs │ ├── DBValue.cs │ └── Session.cs ├── Network │ ├── BaseConnection.cs │ ├── ClientPackets.cs │ ├── GeneralPackets.cs │ ├── Packet.cs │ └── ServerPackets.cs ├── Stat.cs ├── SystemModels │ ├── BaseStat.cs │ ├── BundleInfo.cs │ ├── CastleFlagInfo.cs │ ├── CastleGateInfo.cs │ ├── CastleGuardInfo.cs │ ├── CastleInfo.cs │ ├── CompanionInfo.cs │ ├── CompanionLevelInfo.cs │ ├── CompanionSkillInfo.cs │ ├── CompanionSpeech.cs │ ├── CurrencyInfo.cs │ ├── DisciplineInfo.cs │ ├── DropInfo.cs │ ├── EventInfo.cs │ ├── FameInfo.cs │ ├── FishingInfo.cs │ ├── GuardInfo.cs │ ├── InstanceInfo.cs │ ├── ItemInfo.cs │ ├── ItemInfoStat.cs │ ├── LootBoxInfo.cs │ ├── MagicInfo.cs │ ├── MapInfo.cs │ ├── MapRegion.cs │ ├── MineInfo.cs │ ├── MonsterInfo.cs │ ├── MonsterInfoStat.cs │ ├── MovementInfo.cs │ ├── NPCInfo.cs │ ├── QuestInfo.cs │ ├── RespawnInfo.cs │ ├── SafeZoneInfo.cs │ ├── SetInfo.cs │ ├── SetInfoStat.cs │ ├── StoreInfo.cs │ └── WeaponCraftStatsInfo.cs └── Time.cs ├── LibraryEditor ├── App.config ├── Astc.cs ├── FixedListView.cs ├── Function.cs ├── LMain.Designer.cs ├── LMain.cs ├── LMain.resx ├── LibraryEditor.csproj ├── LockBitmap.cs ├── MLibrary.cs ├── MLibraryV0.cs ├── MLibraryV2.cs ├── Mir3Library.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources1.Designer.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── WTLLibrary.cs ├── WeMadeLibrary.cs └── lizard.ico ├── 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 ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── app.config ├── Patcher ├── App.config ├── PMain.Designer.cs ├── PMain.cs ├── PMain.resx ├── Patcher.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PluginCore ├── AbstractPlugin.cs ├── AbstractStart.cs ├── Events │ ├── LogEventArgs.cs │ ├── ShowMapViewerEventArgs.cs │ └── ShowViewEventArgs.cs ├── Helpers │ └── RibbonHelper.cs ├── IPluginStart.cs ├── IPluginType.cs ├── PluginCore.csproj ├── PluginLoader.cs ├── PluginOptions.cs ├── Properties │ └── AssemblyInfo.cs └── Types │ ├── IPluginForm.cs │ └── IPluginMessage.cs ├── PluginStandalone ├── App.config ├── PluginStandalone.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── Server ├── App.config ├── Extensions │ └── SharpDXExtensions.cs ├── Helpers │ ├── JsonExporter.cs │ └── JsonImporter.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SMain.Designer.cs ├── SMain.cs ├── SMain.resx ├── Server.csproj └── Views │ ├── AccountView.Designer.cs │ ├── AccountView.cs │ ├── AccountView.resx │ ├── BaseStatView.Designer.cs │ ├── BaseStatView.cs │ ├── BaseStatView.resx │ ├── BundleInfoView.Designer.cs │ ├── BundleInfoView.cs │ ├── BundleInfoView.resx │ ├── CastleInfoView.Designer.cs │ ├── CastleInfoView.cs │ ├── CastleInfoView.resx │ ├── CharacterView.Designer.cs │ ├── CharacterView.cs │ ├── CharacterView.resx │ ├── ChatLogView.Designer.cs │ ├── ChatLogView.cs │ ├── ChatLogView.resx │ ├── CompanionInfoView.Designer.cs │ ├── CompanionInfoView.cs │ ├── CompanionInfoView.resx │ ├── ConfigView.Designer.cs │ ├── ConfigView.cs │ ├── ConfigView.resx │ ├── CurrencyInfoView.Designer.cs │ ├── CurrencyInfoView.cs │ ├── CurrencyInfoView.resx │ ├── DatabaseEncryptionForm.Designer.cs │ ├── DatabaseEncryptionForm.cs │ ├── DatabaseEncryptionForm.resx │ ├── DiagnosticView.cs │ ├── DiagnosticView.designer.cs │ ├── DiagnosticView.resx │ ├── DisciplineInfoView.Designer.cs │ ├── DisciplineInfoView.cs │ ├── DisciplineInfoView.resx │ ├── DropInfoView.Designer.cs │ ├── DropInfoView.cs │ ├── DropInfoView.resx │ ├── EventInfoView.Designer.cs │ ├── EventInfoView.cs │ ├── EventInfoView.resx │ ├── FameInfoView.Designer.cs │ ├── FameInfoView.cs │ ├── FameInfoView.resx │ ├── FishingInfoView.Designer.cs │ ├── FishingInfoView.cs │ ├── FishingInfoView.resx │ ├── GameGoldPaymentView.Designer.cs │ ├── GameGoldPaymentView.cs │ ├── GameGoldPaymentView.resx │ ├── GameStoreSaleView.Designer.cs │ ├── GameStoreSaleView.cs │ ├── GameStoreSaleView.resx │ ├── InstanceInfoView.Designer.cs │ ├── InstanceInfoView.cs │ ├── InstanceInfoView.resx │ ├── ItemInfoStatView.Designer.cs │ ├── ItemInfoStatView.cs │ ├── ItemInfoStatView.resx │ ├── ItemInfoView.Designer.cs │ ├── ItemInfoView.cs │ ├── ItemInfoView.resx │ ├── LocationView.resx │ ├── LootBoxInfoView.Designer.cs │ ├── LootBoxInfoView.cs │ ├── LootBoxInfoView.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 │ ├── NPCListView.Designer.cs │ ├── NPCListView.cs │ ├── NPCListView.resx │ ├── NPCPageView.Designer.cs │ ├── NPCPageView.cs │ ├── NPCPageView.resx │ ├── QuestInfoView.Designer.cs │ ├── QuestInfoView.cs │ ├── QuestInfoView.resx │ ├── RespawnInfoView.Designer.cs │ ├── RespawnInfoView.cs │ ├── RespawnInfoView.resx │ ├── SafeZoneInfoView.Designer.cs │ ├── SafeZoneInfoView.cs │ ├── SafeZoneInfoView.resx │ ├── SetInfoView.Designer.cs │ ├── SetInfoView.cs │ ├── SetInfoView.resx │ ├── StoreInfoView.Designer.cs │ ├── StoreInfoView.cs │ ├── StoreInfoView.resx │ ├── SyncForm.Designer.cs │ ├── SyncForm.cs │ ├── SyncForm.resx │ ├── SystemLogView.Designer.cs │ ├── SystemLogView.cs │ ├── SystemLogView.resx │ ├── UserConquestStatsView.Designer.cs │ ├── UserConquestStatsView.cs │ ├── UserConquestStatsView.resx │ ├── UserDropView.Designer.cs │ ├── UserDropView.cs │ ├── UserDropView.resx │ ├── UserItemView.resx │ ├── UserMailView.Designer.cs │ ├── UserMailView.cs │ ├── UserMailView.resx │ ├── WeaponCraftStatInfoView.cs │ ├── WeaponCraftStatInfoView.designer.cs │ └── WeaponCraftStatInfoView.resx ├── ServerCore ├── Program.cs └── ServerCore.csproj ├── ServerLibrary ├── Converter │ └── DBObjectConverter.cs ├── DBModels │ ├── AccountInfo.cs │ ├── AuctionHistoryInfo.cs │ ├── AuctionInfo.cs │ ├── AutoPotionLink.cs │ ├── BlockInfo.cs │ ├── BuffInfo.cs │ ├── CharacterBeltLink.cs │ ├── CharacterInfo.cs │ ├── CompanionFilters.cs │ ├── FriendInfo.cs │ ├── GameGoldPayment.cs │ ├── GameNPCData.cs │ ├── GameStoreSale.cs │ ├── GuildInfo.cs │ ├── GuildMemberInfo.cs │ ├── GuildWarInfo.cs │ ├── MailInfo.cs │ ├── RefineInfo.cs │ ├── UserCompanion.cs │ ├── UserCompanionUnlock.cs │ ├── UserConquest.cs │ ├── UserConquestStats.cs │ ├── UserCurrency.cs │ ├── UserDiscipline.cs │ ├── UserDrop.cs │ ├── UserFortuneInfo.cs │ ├── UserItem.cs │ ├── UserItemStat.cs │ ├── UserMagic.cs │ └── UserQuest.cs ├── Envir │ ├── Commands │ │ ├── AdminCommandHandler.cs │ │ ├── Command │ │ │ ├── AbstractCommand.cs │ │ │ ├── AbstractParameterizedCommand.cs │ │ │ ├── Admin │ │ │ │ ├── AddStat.cs │ │ │ │ ├── Ban.cs │ │ │ │ ├── ChatBan.cs │ │ │ │ ├── ClearIPBlocks.cs │ │ │ │ ├── CreateGuild.cs │ │ │ │ ├── CreateItem.cs │ │ │ │ ├── EndConquest.cs │ │ │ │ ├── ForceGarbageCollection.cs │ │ │ │ ├── GiveGameGold.cs │ │ │ │ ├── GiveHorse.cs │ │ │ │ ├── GiveSkills.cs │ │ │ │ ├── GlobalShoutBan.cs │ │ │ │ ├── Goto.cs │ │ │ │ ├── IAdminCommand.cs │ │ │ │ ├── Kick.cs │ │ │ │ ├── Level.cs │ │ │ │ ├── LevelSkill.cs │ │ │ │ ├── MapMove.cs │ │ │ │ ├── PromoteFame.cs │ │ │ │ ├── Reboot.cs │ │ │ │ ├── RecallPlayer.cs │ │ │ │ ├── RemoveCaption.cs │ │ │ │ ├── RemovePKPoints.cs │ │ │ │ ├── ResetDiscipline.cs │ │ │ │ ├── SetCompanionLevel.cs │ │ │ │ ├── SetCompanionStat.cs │ │ │ │ ├── SetHermitStat.cs │ │ │ │ ├── SpawnMob.cs │ │ │ │ ├── StartConquest.cs │ │ │ │ ├── TakeCastle.cs │ │ │ │ ├── TakeGameGold.cs │ │ │ │ ├── ToggleGameMaster.cs │ │ │ │ ├── ToggleObserver.cs │ │ │ │ └── ToggleSuperman.cs │ │ │ ├── Exceptions │ │ │ │ ├── UserCommandException.cs │ │ │ │ └── UserCommandFatalException.cs │ │ │ ├── ICommand.cs │ │ │ ├── IParameterizedCommand.cs │ │ │ └── Player │ │ │ │ ├── BlockWhisper.cs │ │ │ │ ├── ClearBelt.cs │ │ │ │ ├── Companion │ │ │ │ ├── AbstractToggleCompanion.cs │ │ │ │ ├── ToggleCompanion10.cs │ │ │ │ ├── ToggleCompanion11.cs │ │ │ │ ├── ToggleCompanion13.cs │ │ │ │ ├── ToggleCompanion15.cs │ │ │ │ ├── ToggleCompanion3.cs │ │ │ │ ├── ToggleCompanion5.cs │ │ │ │ └── ToggleCompanion7.cs │ │ │ │ ├── Event.cs │ │ │ │ ├── GroupRecall.cs │ │ │ │ ├── GroupRoll.cs │ │ │ │ ├── IPlayerCommand.cs │ │ │ │ ├── LeaveGuild.cs │ │ │ │ ├── ToggleExtractorLock.cs │ │ │ │ ├── ToggleGroupRecall.cs │ │ │ │ ├── ToggleGuildInvite.cs │ │ │ │ └── ToggleTrade.cs │ │ ├── ErrorHandlingCommandHandler.cs │ │ ├── Handler │ │ │ ├── AbstractCommandHandler.cs │ │ │ ├── ICommandHandler.cs │ │ │ └── IValidatingCommandHandler.cs │ │ └── PlayerCommandHandler.cs │ ├── Config.cs │ ├── EmailService.cs │ ├── Events │ │ ├── Actions │ │ │ ├── ItemDrop.cs │ │ │ ├── ItemGive.cs │ │ │ ├── MonsterBuffAdd.cs │ │ │ ├── MonsterBuffRemove.cs │ │ │ ├── MonsterPlayerSpawn.cs │ │ │ ├── MonsterSpawn.cs │ │ │ ├── PlayerBuffAdd.cs │ │ │ ├── PlayerBuffRemove.cs │ │ │ ├── PlayerEscape.cs │ │ │ ├── PlayerMessage.cs │ │ │ ├── PlayerTeleport.cs │ │ │ ├── TimerReset.cs │ │ │ ├── TimerStart.cs │ │ │ └── TimerStop.cs │ │ ├── Attributes │ │ │ ├── EventActionType.cs │ │ │ └── EventTriggerType.cs │ │ ├── EventInfoHandler.cs │ │ ├── IEventAction.cs │ │ ├── IEventTrigger.cs │ │ └── Triggers │ │ │ ├── MonsterClear.cs │ │ │ ├── MonsterDie.cs │ │ │ ├── PlayerCommand.cs │ │ │ ├── PlayerDie.cs │ │ │ ├── PlayerMoveMap.cs │ │ │ ├── PlayerMoveRegion.cs │ │ │ ├── TimerMinute.cs │ │ │ └── WorldTimeOfDay.cs │ ├── SConnection.cs │ ├── SEnvir.cs │ ├── Translations │ │ ├── ChineseMessages.cs │ │ ├── EnglishMessages.cs │ │ └── StringMessages.cs │ └── WebServer.cs ├── Models │ ├── ConquestWar.cs │ ├── DelayedAction.cs │ ├── ItemCheck.cs │ ├── ItemObject.cs │ ├── MagicObject.cs │ ├── Magics │ │ ├── Assassin │ │ │ ├── Abyss.cs │ │ │ ├── AdventOfDemon.cs │ │ │ ├── AdventOfDevil.cs │ │ │ ├── ArtOfShadows.cs │ │ │ ├── BloodyFlower.cs │ │ │ ├── BurningFire.cs │ │ │ ├── CalamityOfFullMoon.cs │ │ │ ├── Chain.cs │ │ │ ├── ChainOfFire.cs │ │ │ ├── ChangeOfSeasons.cs │ │ │ ├── Cloak.cs │ │ │ ├── Concentration.cs │ │ │ ├── Containment.cs │ │ │ ├── CrescentMoon.cs │ │ │ ├── DanceOfSwallow.cs │ │ │ ├── DarkConversion.cs │ │ │ ├── Discipline.cs │ │ │ ├── DragonBlood.cs │ │ │ ├── DragonRepulse.cs │ │ │ ├── DragonWave.cs │ │ │ ├── DualWeaponSkills.cs │ │ │ ├── ElementalPuppet.cs │ │ │ ├── Evasion.cs │ │ │ ├── FatalBlow.cs │ │ │ ├── FlameSplash.cs │ │ │ ├── FlamingDaggers.cs │ │ │ ├── FlashOfLight.cs │ │ │ ├── FourWheels.cs │ │ │ ├── FullBloom.cs │ │ │ ├── GhostWalk.cs │ │ │ ├── HellFire.cs │ │ │ ├── Hemorrhage.cs │ │ │ ├── Karma.cs │ │ │ ├── LastStand.cs │ │ │ ├── MagicCombustion.cs │ │ │ ├── Massacre.cs │ │ │ ├── PledgeOfBlood.cs │ │ │ ├── PoisonousCloud.cs │ │ │ ├── RagingWind.cs │ │ │ ├── Rake.cs │ │ │ ├── RedLotus.cs │ │ │ ├── Rejuvenation.cs │ │ │ ├── Release.cs │ │ │ ├── Resolution.cs │ │ │ ├── Shredding.cs │ │ │ ├── Stealth.cs │ │ │ ├── SummonPuppet.cs │ │ │ ├── SweetBrier.cs │ │ │ ├── TheNewBeginning.cs │ │ │ ├── TouchOfTheDeparted.cs │ │ │ ├── VineTreeDance.cs │ │ │ ├── Vitality.cs │ │ │ ├── WaningMoon.cs │ │ │ ├── WhiteLotus.cs │ │ │ ├── WillowDance.cs │ │ │ └── WraithGrip.cs │ │ ├── Taoist │ │ │ ├── AugmentCelestialLight.cs │ │ │ ├── AugmentEvilSlayer.cs │ │ │ ├── AugmentExplosiveTalisman.cs │ │ │ ├── AugmentNeutralize.cs │ │ │ ├── AugmentPurification.cs │ │ │ ├── AugmentResurrection.cs │ │ │ ├── BindingTalisman.cs │ │ │ ├── BloodLust.cs │ │ │ ├── BrainStorm.cs │ │ │ ├── CelestialLight.cs │ │ │ ├── CombatKick.cs │ │ │ ├── CorpseExploder.cs │ │ │ ├── CursedDoll.cs │ │ │ ├── DarkSoulPrison.cs │ │ │ ├── DemonExplosion.cs │ │ │ ├── DemonicRecovery.cs │ │ │ ├── ElementalSuperiority.cs │ │ │ ├── EmpoweredHealing.cs │ │ │ ├── EvilSlayer.cs │ │ │ ├── ExplosiveTalisman.cs │ │ │ ├── GreaterEvilSlayer.cs │ │ │ ├── GreaterPoisonDust.cs │ │ │ ├── Heal.cs │ │ │ ├── HeavenlySky.cs │ │ │ ├── ImprovedExplosiveTalisman.cs │ │ │ ├── Infection.cs │ │ │ ├── Invisibility.cs │ │ │ ├── LifeSteal.cs │ │ │ ├── MagicResistance.cs │ │ │ ├── MassHeal.cs │ │ │ ├── MassInvisibility.cs │ │ │ ├── Neutralize.cs │ │ │ ├── Parasite.cs │ │ │ ├── PoisonCloud.cs │ │ │ ├── PoisonDust.cs │ │ │ ├── Purification.cs │ │ │ ├── Resilience.cs │ │ │ ├── Resurrection.cs │ │ │ ├── SearingLight.cs │ │ │ ├── SoulResonance.cs │ │ │ ├── SpiritSword.cs │ │ │ ├── Spiritualism.cs │ │ │ ├── StrengthOfFaith.cs │ │ │ ├── SummonDead.cs │ │ │ ├── SummonDemonicCreature.cs │ │ │ ├── SummonJinSkeleton.cs │ │ │ ├── SummonShinsu.cs │ │ │ ├── SummonSkeleton.cs │ │ │ ├── ThunderKick.cs │ │ │ ├── Transparency.cs │ │ │ └── TrapOctagon.cs │ │ ├── Warrior │ │ │ ├── AdvancedPotionMastery.cs │ │ │ ├── Assault.cs │ │ │ ├── AugmentDefiance.cs │ │ │ ├── AugmentDestructiveSurge.cs │ │ │ ├── AugmentReflectDamage.cs │ │ │ ├── Beckon.cs │ │ │ ├── BladeStorm.cs │ │ │ ├── CrushingWave.cs │ │ │ ├── DefensiveBlow.cs │ │ │ ├── DefensiveMastery.cs │ │ │ ├── Defiance.cs │ │ │ ├── DestructiveSurge.cs │ │ │ ├── DragonRise.cs │ │ │ ├── ElementalSwords.cs │ │ │ ├── Endurance.cs │ │ │ ├── Fetter.cs │ │ │ ├── FireSword.cs │ │ │ ├── FlamingSword.cs │ │ │ ├── HalfMoon.cs │ │ │ ├── HundredFist.cs │ │ │ ├── Interchange.cs │ │ │ ├── Invincibility.cs │ │ │ ├── MagicImmunity.cs │ │ │ ├── MassBeckon.cs │ │ │ ├── Might.cs │ │ │ ├── OffensiveBlow.cs │ │ │ ├── PhysicalImmunity.cs │ │ │ ├── PotionMastery.cs │ │ │ ├── ReflectDamage.cs │ │ │ ├── SeismicSlam.cs │ │ │ ├── ShoulderDash.cs │ │ │ ├── Shuriken.cs │ │ │ ├── Slaying.cs │ │ │ ├── SwiftBlade.cs │ │ │ ├── Swordsmanship.cs │ │ │ ├── TaecheonSword.cs │ │ │ └── Thrusting.cs │ │ └── Wizard │ │ │ ├── AdamantineFireBall.cs │ │ │ ├── Asteroid.cs │ │ │ ├── BlowEarth.cs │ │ │ ├── Burning.cs │ │ │ ├── ChainLightning.cs │ │ │ ├── Cyclone.cs │ │ │ ├── DragonTornado.cs │ │ │ ├── ElectricShock.cs │ │ │ ├── ElementalHurricane.cs │ │ │ ├── ExpelUndead.cs │ │ │ ├── FireBall.cs │ │ │ ├── FireBounce.cs │ │ │ ├── FireStorm.cs │ │ │ ├── FireWall.cs │ │ │ ├── FrostBite.cs │ │ │ ├── FrozenDragon.cs │ │ │ ├── FrozenEarth.cs │ │ │ ├── GeoManipulation.cs │ │ │ ├── GreaterFrozenEarth.cs │ │ │ ├── GustBlast.cs │ │ │ ├── IceAura.cs │ │ │ ├── IceBlades.cs │ │ │ ├── IceBolt.cs │ │ │ ├── IceBreaker.cs │ │ │ ├── IceDragon.cs │ │ │ ├── IceRain.cs │ │ │ ├── IceStorm.cs │ │ │ ├── JudgementOfHeaven.cs │ │ │ ├── LightningBall.cs │ │ │ ├── LightningBeam.cs │ │ │ ├── LightningStrike.cs │ │ │ ├── LightningWave.cs │ │ │ ├── MagicShield.cs │ │ │ ├── MeteorShower.cs │ │ │ ├── MirrorImage.cs │ │ │ ├── Renounce.cs │ │ │ ├── Repulsion.cs │ │ │ ├── ScortchedEarth.cs │ │ │ ├── Shocked.cs │ │ │ ├── Storm.cs │ │ │ ├── SuperiorMagicShield.cs │ │ │ ├── Teleportation.cs │ │ │ ├── Tempest.cs │ │ │ ├── ThunderBolt.cs │ │ │ ├── ThunderStrike.cs │ │ │ └── Tornado.cs │ ├── Map.cs │ ├── MapObject.cs │ ├── MonsterObject.cs │ ├── Monsters │ │ ├── Affliction.cs │ │ ├── ArachnidGrazer.cs │ │ ├── ArchLichTaedu.cs │ │ ├── BanyaLeftGuard.cs │ │ ├── BanyoCaptain.cs │ │ ├── BanyoLordGuzak.cs │ │ ├── BanyoWarrior.cs │ │ ├── BlockingObject.cs │ │ ├── CarnivorousPlant.cs │ │ ├── CastleFlag.cs │ │ ├── CastleGate.cs │ │ ├── CastleGuard.cs │ │ ├── CastleLord.cs │ │ ├── CastleObject.cs │ │ ├── ChaosKnight.cs │ │ ├── ChristmasMonster.cs │ │ ├── Companion.cs │ │ ├── CorrosivePoisonSpitter.cs │ │ ├── CrimsonNecromancer.cs │ │ ├── DepartedMonster.cs │ │ ├── Doll.cs │ │ ├── DoomClaw.cs │ │ ├── DragonLord.cs │ │ ├── DragonQueen.cs │ │ ├── EmperorSaWoo.cs │ │ ├── EnragedArchLichTaedu.cs │ │ ├── EnragedLordNiJae.cs │ │ ├── EscortCommander.cs │ │ ├── EvilElephant.cs │ │ ├── FerociousIceTiger.cs │ │ ├── FieryDancer.cs │ │ ├── FlameDemon.cs │ │ ├── FrostLordHwa.cs │ │ ├── GhostMage.cs │ │ ├── GhostSorcerer.cs │ │ ├── GiantLizard.cs │ │ ├── GoruArcher.cs │ │ ├── GoruSpearman.cs │ │ ├── Guard.cs │ │ ├── HalloweenMonster.cs │ │ ├── HealerAnt.cs │ │ ├── IcyGoddess.cs │ │ ├── IcySpiritGeneral.cs │ │ ├── IcySpiritWarrior.cs │ │ ├── InfernalSoldier.cs │ │ ├── JinamStoneGate.cs │ │ ├── JinchonDevil.cs │ │ ├── JinhwanSpirit.cs │ │ ├── Larva.cs │ │ ├── LordNiJae.cs │ │ ├── MirrorImage.cs │ │ ├── MonasteryBoss.cs │ │ ├── Monkey.cs │ │ ├── MoonFeralWarrior.cs │ │ ├── NetherworldGate.cs │ │ ├── NumaHighMage.cs │ │ ├── NumaMage.cs │ │ ├── NumaStoneThrower.cs │ │ ├── OmaMage.cs │ │ ├── OmaWarlord.cs │ │ ├── OxFeralGeneral.cs │ │ ├── PachontheChaosbringer.cs │ │ ├── PinkBat.cs │ │ ├── Puppet.cs │ │ ├── QuartzTree.cs │ │ ├── QuartzTurtleSub.cs │ │ ├── QueenOfDawn.cs │ │ ├── RazorTusk.cs │ │ ├── RedMoonTheFallen.cs │ │ ├── SamaBlack.cs │ │ ├── SamaBlue.cs │ │ ├── SamaFireGuardian.cs │ │ ├── SamaIceGuardian.cs │ │ ├── SamaLightningGuardian.cs │ │ ├── SamaPhoenix.cs │ │ ├── SamaProphet.cs │ │ ├── SamaScorcer.cs │ │ ├── SamaWhite.cs │ │ ├── SamaWindGuardian.cs │ │ ├── Shinsu.cs │ │ ├── SkeletonAxeThrower.cs │ │ ├── SonicLizard.cs │ │ ├── SpittingSpider.cs │ │ ├── Stomper.cs │ │ ├── SunFeralWarrior.cs │ │ ├── Terracotta.cs │ │ ├── TerracottaBoss.cs │ │ ├── TerracottaSub.cs │ │ ├── Tornado.cs │ │ ├── TreeMonster.cs │ │ ├── UmaKing.cs │ │ ├── UndeadSoul.cs │ │ ├── VoraciousGhost.cs │ │ ├── Warewolf.cs │ │ ├── WedgeMothLarva.cs │ │ ├── WhiteBone.cs │ │ ├── WindfurySorcerer.cs │ │ ├── WingedHorror.cs │ │ ├── YumgonWitch.cs │ │ ├── ZumaGuardian.cs │ │ └── ZumaKing.cs │ ├── NPCObject.cs │ ├── PlayerObject.cs │ └── SpellObject.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── BuyGameGold.txt │ └── CharacterNotFound.txt └── ServerLibrary.csproj ├── Zircon Server.sln └── docs └── vortice-migration.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Controls/DXAnimatedControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXAnimatedControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXButton.cs -------------------------------------------------------------------------------- /Client/Controls/DXCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXCheckBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXColourControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXColourControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXComboBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXConfigWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXImageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXImageControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXInputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXInputWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemAmountWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXItemAmountWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXItemCell.cs -------------------------------------------------------------------------------- /Client/Controls/DXItemGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXItemGrid.cs -------------------------------------------------------------------------------- /Client/Controls/DXKeyBindWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXKeyBindWindow.cs -------------------------------------------------------------------------------- /Client/Controls/DXLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXLabel.cs -------------------------------------------------------------------------------- /Client/Controls/DXListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXListBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXMapInfoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXMapInfoControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXMessageBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXNumberBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXNumberTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXNumberTextBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXScene.cs -------------------------------------------------------------------------------- /Client/Controls/DXTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXTabControl.cs -------------------------------------------------------------------------------- /Client/Controls/DXTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXTextBox.cs -------------------------------------------------------------------------------- /Client/Controls/DXVScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXVScrollBar.cs -------------------------------------------------------------------------------- /Client/Controls/DXWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Controls/DXWindow.cs -------------------------------------------------------------------------------- /Client/Envir/CConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/CConnection.cs -------------------------------------------------------------------------------- /Client/Envir/CEnvir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/CEnvir.cs -------------------------------------------------------------------------------- /Client/Envir/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/Config.cs -------------------------------------------------------------------------------- /Client/Envir/DXManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/DXManager.cs -------------------------------------------------------------------------------- /Client/Envir/DXSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/DXSound.cs -------------------------------------------------------------------------------- /Client/Envir/DXSoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/DXSoundManager.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/ChineseMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/Translations/ChineseMessages.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/EnglishMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/Translations/EnglishMessages.cs -------------------------------------------------------------------------------- /Client/Envir/Translations/StringMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Envir/Translations/StringMessages.cs -------------------------------------------------------------------------------- /Client/Extensions/SharpDXExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Extensions/SharpDXExtensions.cs -------------------------------------------------------------------------------- /Client/Models/DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/DamageInfo.cs -------------------------------------------------------------------------------- /Client/Models/ItemObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/ItemObject.cs -------------------------------------------------------------------------------- /Client/Models/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/MapObject.cs -------------------------------------------------------------------------------- /Client/Models/MirEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/MirEffect.cs -------------------------------------------------------------------------------- /Client/Models/MirLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/MirLibrary.cs -------------------------------------------------------------------------------- /Client/Models/MirLineEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/MirLineEffect.cs -------------------------------------------------------------------------------- /Client/Models/MirProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/MirProjectile.cs -------------------------------------------------------------------------------- /Client/Models/MonsterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/MonsterObject.cs -------------------------------------------------------------------------------- /Client/Models/NPCObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/NPCObject.cs -------------------------------------------------------------------------------- /Client/Models/ObjectAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/ObjectAction.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Particle.cs -------------------------------------------------------------------------------- /Client/Models/Particles/ParticleEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/ParticleEmitter.cs -------------------------------------------------------------------------------- /Client/Models/Particles/ParticleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/ParticleType.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/FireballTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Spells/FireballTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/GustTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Spells/GustTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/IceBladesTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Spells/IceBladesTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Spells/IceBoltTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Spells/IceBoltTrail.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Weather/Fog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Weather/Fog.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Weather/Lightning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Weather/Lightning.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Weather/Rain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Weather/Rain.cs -------------------------------------------------------------------------------- /Client/Models/Particles/Weather/Snow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Particles/Weather/Snow.cs -------------------------------------------------------------------------------- /Client/Models/Player/ExteriorEffectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/Player/ExteriorEffectManager.cs -------------------------------------------------------------------------------- /Client/Models/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/PlayerObject.cs -------------------------------------------------------------------------------- /Client/Models/SpellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/SpellObject.cs -------------------------------------------------------------------------------- /Client/Models/UserObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Models/UserObject.cs -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Properties/Resources.resx -------------------------------------------------------------------------------- /Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Properties/Settings.settings -------------------------------------------------------------------------------- /Client/Scenes/GameScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/GameScene.cs -------------------------------------------------------------------------------- /Client/Scenes/LoginScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/LoginScene.cs -------------------------------------------------------------------------------- /Client/Scenes/SelectScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/SelectScene.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/AutoPotionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/AutoPotionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BeltDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/BeltDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BigMapDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/BigMapDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BuffDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/BuffDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/BundleDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/BundleDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CaptionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/CaptionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/Character/EquipEffectDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/Character/EquipEffectDecider.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/Character/FameEffectDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/Character/FameEffectDecider.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/Character/ItemEffectDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/Character/ItemEffectDecider.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CharacterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/CharacterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/ChatOptionsDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/ChatTab.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ChatTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/ChatTextBox.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CommunicationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/CommunicationDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CompanionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/CompanionDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/CurrencyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/CurrencyDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/DungeonFinderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/DungeonFinderDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/EditCharacterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/EditCharacterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/ExitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/ExitDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/FilterDropDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/FilterDropDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/FishingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/FishingDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/FortuneCheckerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/FortuneCheckerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/GroupDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/GroupDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/GuildDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/GuildDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/InventoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/InventoryDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/LootBoxDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/LootBoxDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MagicBarDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MagicBarDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MagicDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MagicDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MainPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MainPanel.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MapControl.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MarketPlaceDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MarketPlaceDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MenuDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MenuDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MiniMapDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MiniMapDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/MonsterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/MonsterDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/NPCDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/NPCDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/QuestDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/QuestDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/QuestTrackerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/QuestTrackerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/RankingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/RankingDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/StorageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/StorageDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/TimerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/TimerDialog.cs -------------------------------------------------------------------------------- /Client/Scenes/Views/TradeDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Scenes/Views/TradeDialog.cs -------------------------------------------------------------------------------- /Client/TargetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/TargetForm.cs -------------------------------------------------------------------------------- /Client/TargetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/TargetForm.resx -------------------------------------------------------------------------------- /Client/UserModels/ChatTabControlSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/UserModels/ChatTabControlSetting.cs -------------------------------------------------------------------------------- /Client/UserModels/ChatTabPageSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/UserModels/ChatTabPageSetting.cs -------------------------------------------------------------------------------- /Client/UserModels/KeyBindInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/UserModels/KeyBindInfo.cs -------------------------------------------------------------------------------- /Client/UserModels/WindowSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/UserModels/WindowSetting.cs -------------------------------------------------------------------------------- /Client/Zircon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/Zircon.ico -------------------------------------------------------------------------------- /Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Client/app.config -------------------------------------------------------------------------------- /Components/ManagedSquish.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Components/ManagedSquish.dll -------------------------------------------------------------------------------- /Components/NativeSquish_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Components/NativeSquish_x64.dll -------------------------------------------------------------------------------- /Components/NativeSquish_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Components/NativeSquish_x86.dll -------------------------------------------------------------------------------- /Components/SlimDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Components/SlimDX.dll -------------------------------------------------------------------------------- /ImageManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/App.config -------------------------------------------------------------------------------- /ImageManager/IMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/IMain.Designer.cs -------------------------------------------------------------------------------- /ImageManager/IMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/IMain.cs -------------------------------------------------------------------------------- /ImageManager/IMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/IMain.resx -------------------------------------------------------------------------------- /ImageManager/ImageManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/ImageManager.csproj -------------------------------------------------------------------------------- /ImageManager/Mir3Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Mir3Library.cs -------------------------------------------------------------------------------- /ImageManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Program.cs -------------------------------------------------------------------------------- /ImageManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Properties/Resources.resx -------------------------------------------------------------------------------- /ImageManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ImageManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Properties/Settings.settings -------------------------------------------------------------------------------- /ImageManager/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /ImageManager/WTLLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ImageManager/WTLLibrary.cs -------------------------------------------------------------------------------- /Launcher/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Config.cs -------------------------------------------------------------------------------- /Launcher/LMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/LMain.Designer.cs -------------------------------------------------------------------------------- /Launcher/LMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/LMain.cs -------------------------------------------------------------------------------- /Launcher/LMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/LMain.resx -------------------------------------------------------------------------------- /Launcher/Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Launcher.csproj -------------------------------------------------------------------------------- /Launcher/PatchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/PatchInformation.cs -------------------------------------------------------------------------------- /Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Program.cs -------------------------------------------------------------------------------- /Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /Launcher/Resources/PatchHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Resources/PatchHeader.png -------------------------------------------------------------------------------- /Launcher/Resources/Patcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Resources/Patcher.exe -------------------------------------------------------------------------------- /Launcher/Zircon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/Zircon.ico -------------------------------------------------------------------------------- /Launcher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Launcher/app.config -------------------------------------------------------------------------------- /Library/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/ConfigReader.cs -------------------------------------------------------------------------------- /Library/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Enum.cs -------------------------------------------------------------------------------- /Library/FrameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/FrameSet.cs -------------------------------------------------------------------------------- /Library/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Functions.cs -------------------------------------------------------------------------------- /Library/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Globals.cs -------------------------------------------------------------------------------- /Library/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Libraries.cs -------------------------------------------------------------------------------- /Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Library.csproj -------------------------------------------------------------------------------- /Library/MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /Library/MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/Attributes.cs -------------------------------------------------------------------------------- /Library/MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /Library/MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /Library/MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /Library/MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/DBObject.cs -------------------------------------------------------------------------------- /Library/MirDB/DBRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/DBRelationship.cs -------------------------------------------------------------------------------- /Library/MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/DBValue.cs -------------------------------------------------------------------------------- /Library/MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/MirDB/Session.cs -------------------------------------------------------------------------------- /Library/Network/BaseConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Network/BaseConnection.cs -------------------------------------------------------------------------------- /Library/Network/ClientPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Network/ClientPackets.cs -------------------------------------------------------------------------------- /Library/Network/GeneralPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Network/GeneralPackets.cs -------------------------------------------------------------------------------- /Library/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Network/Packet.cs -------------------------------------------------------------------------------- /Library/Network/ServerPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Network/ServerPackets.cs -------------------------------------------------------------------------------- /Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Library/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Stat.cs -------------------------------------------------------------------------------- /Library/SystemModels/BaseStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/BaseStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/CastleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/CastleInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/CompanionInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionLevelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/CompanionLevelInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionSkillInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/CompanionSkillInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/CompanionSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/CompanionSpeech.cs -------------------------------------------------------------------------------- /Library/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/EventInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MapRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MapRegion.cs -------------------------------------------------------------------------------- /Library/SystemModels/MineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MineInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/QuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/QuestInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /Library/SystemModels/StoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/StoreInfo.cs -------------------------------------------------------------------------------- /Library/SystemModels/WeaponCraftStatsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/SystemModels/WeaponCraftStatsInfo.cs -------------------------------------------------------------------------------- /Library/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Library/Time.cs -------------------------------------------------------------------------------- /LibraryCore/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/ConfigReader.cs -------------------------------------------------------------------------------- /LibraryCore/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Encryption.cs -------------------------------------------------------------------------------- /LibraryCore/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Enum.cs -------------------------------------------------------------------------------- /LibraryCore/FrameSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/FrameSet.cs -------------------------------------------------------------------------------- /LibraryCore/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Functions.cs -------------------------------------------------------------------------------- /LibraryCore/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Globals.cs -------------------------------------------------------------------------------- /LibraryCore/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Libraries.cs -------------------------------------------------------------------------------- /LibraryCore/LibraryCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/LibraryCore.csproj -------------------------------------------------------------------------------- /LibraryCore/MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/Attributes.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/DBObject.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/DBRelationship.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/DBValue.cs -------------------------------------------------------------------------------- /LibraryCore/MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/MirDB/Session.cs -------------------------------------------------------------------------------- /LibraryCore/Network/BaseConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Network/BaseConnection.cs -------------------------------------------------------------------------------- /LibraryCore/Network/ClientPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Network/ClientPackets.cs -------------------------------------------------------------------------------- /LibraryCore/Network/GeneralPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Network/GeneralPackets.cs -------------------------------------------------------------------------------- /LibraryCore/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Network/Packet.cs -------------------------------------------------------------------------------- /LibraryCore/Network/ServerPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Network/ServerPackets.cs -------------------------------------------------------------------------------- /LibraryCore/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Stat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/BaseStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/BaseStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/BundleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/BundleInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CastleFlagInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CastleFlagInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CastleGateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CastleGateInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CastleGuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CastleGuardInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CastleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CastleInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CompanionInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionLevelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CompanionLevelInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionSkillInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CompanionSkillInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CompanionSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CompanionSpeech.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/CurrencyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/CurrencyInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/DisciplineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/DisciplineInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/EventInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/FameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/FameInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/FishingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/FishingInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/InstanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/InstanceInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/LootBoxInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/LootBoxInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MapRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MapRegion.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MineInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/QuestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/QuestInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/StoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/StoreInfo.cs -------------------------------------------------------------------------------- /LibraryCore/SystemModels/WeaponCraftStatsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/SystemModels/WeaponCraftStatsInfo.cs -------------------------------------------------------------------------------- /LibraryCore/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryCore/Time.cs -------------------------------------------------------------------------------- /LibraryEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/App.config -------------------------------------------------------------------------------- /LibraryEditor/Astc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Astc.cs -------------------------------------------------------------------------------- /LibraryEditor/FixedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/FixedListView.cs -------------------------------------------------------------------------------- /LibraryEditor/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Function.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/LMain.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/LMain.cs -------------------------------------------------------------------------------- /LibraryEditor/LMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/LMain.resx -------------------------------------------------------------------------------- /LibraryEditor/LibraryEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/LibraryEditor.csproj -------------------------------------------------------------------------------- /LibraryEditor/LockBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/LockBitmap.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/MLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibraryV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/MLibraryV0.cs -------------------------------------------------------------------------------- /LibraryEditor/MLibraryV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/MLibraryV2.cs -------------------------------------------------------------------------------- /LibraryEditor/Mir3Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Mir3Library.cs -------------------------------------------------------------------------------- /LibraryEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Program.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /LibraryEditor/Properties/Resources1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Properties/Resources1.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LibraryEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /LibraryEditor/WTLLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/WTLLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/WeMadeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/WeMadeLibrary.cs -------------------------------------------------------------------------------- /LibraryEditor/lizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/LibraryEditor/lizard.ico -------------------------------------------------------------------------------- /MirDB/ADBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/ADBCollection.cs -------------------------------------------------------------------------------- /MirDB/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/Attributes.cs -------------------------------------------------------------------------------- /MirDB/DBBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/DBBindingList.cs -------------------------------------------------------------------------------- /MirDB/DBCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/DBCollection.cs -------------------------------------------------------------------------------- /MirDB/DBMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/DBMapping.cs -------------------------------------------------------------------------------- /MirDB/DBObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/DBObject.cs -------------------------------------------------------------------------------- /MirDB/DBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/DBValue.cs -------------------------------------------------------------------------------- /MirDB/MirDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/MirDB.csproj -------------------------------------------------------------------------------- /MirDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MirDB/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/Session.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/DropInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/GuardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/GuardInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/ItemInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/ItemInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/ItemInfoStat.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MagicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/MagicInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/MapInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MonsterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/MonsterInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MonsterInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/MonsterInfoStat.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/MovementInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/NPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/NPCInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/RespawnInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SafeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/SafeZoneInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/SetInfo.cs -------------------------------------------------------------------------------- /MirDB/SystemModels/SetInfoStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/MirDB/SystemModels/SetInfoStat.cs -------------------------------------------------------------------------------- /PatchManager/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Config.cs -------------------------------------------------------------------------------- /PatchManager/PMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/PMain.Designer.cs -------------------------------------------------------------------------------- /PatchManager/PMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/PMain.cs -------------------------------------------------------------------------------- /PatchManager/PMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/PMain.resx -------------------------------------------------------------------------------- /PatchManager/PatchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/PatchInformation.cs -------------------------------------------------------------------------------- /PatchManager/PatchManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/PatchManager.csproj -------------------------------------------------------------------------------- /PatchManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Program.cs -------------------------------------------------------------------------------- /PatchManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Properties/Resources.resx -------------------------------------------------------------------------------- /PatchManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PatchManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/Properties/Settings.settings -------------------------------------------------------------------------------- /PatchManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PatchManager/app.config -------------------------------------------------------------------------------- /Patcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/App.config -------------------------------------------------------------------------------- /Patcher/PMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/PMain.Designer.cs -------------------------------------------------------------------------------- /Patcher/PMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/PMain.cs -------------------------------------------------------------------------------- /Patcher/PMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/PMain.resx -------------------------------------------------------------------------------- /Patcher/Patcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Patcher.csproj -------------------------------------------------------------------------------- /Patcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Program.cs -------------------------------------------------------------------------------- /Patcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Patcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Patcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Patcher/Properties/Settings.settings -------------------------------------------------------------------------------- /PluginCore/AbstractPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/AbstractPlugin.cs -------------------------------------------------------------------------------- /PluginCore/AbstractStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/AbstractStart.cs -------------------------------------------------------------------------------- /PluginCore/Events/LogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Events/LogEventArgs.cs -------------------------------------------------------------------------------- /PluginCore/Events/ShowMapViewerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Events/ShowMapViewerEventArgs.cs -------------------------------------------------------------------------------- /PluginCore/Events/ShowViewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Events/ShowViewEventArgs.cs -------------------------------------------------------------------------------- /PluginCore/Helpers/RibbonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Helpers/RibbonHelper.cs -------------------------------------------------------------------------------- /PluginCore/IPluginStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/IPluginStart.cs -------------------------------------------------------------------------------- /PluginCore/IPluginType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/IPluginType.cs -------------------------------------------------------------------------------- /PluginCore/PluginCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/PluginCore.csproj -------------------------------------------------------------------------------- /PluginCore/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/PluginLoader.cs -------------------------------------------------------------------------------- /PluginCore/PluginOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/PluginOptions.cs -------------------------------------------------------------------------------- /PluginCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginCore/Types/IPluginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Types/IPluginForm.cs -------------------------------------------------------------------------------- /PluginCore/Types/IPluginMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginCore/Types/IPluginMessage.cs -------------------------------------------------------------------------------- /PluginStandalone/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/App.config -------------------------------------------------------------------------------- /PluginStandalone/PluginStandalone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/PluginStandalone.csproj -------------------------------------------------------------------------------- /PluginStandalone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/Program.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/Properties/Resources.resx -------------------------------------------------------------------------------- /PluginStandalone/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PluginStandalone/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/PluginStandalone/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/README.md -------------------------------------------------------------------------------- /Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/App.config -------------------------------------------------------------------------------- /Server/Extensions/SharpDXExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Extensions/SharpDXExtensions.cs -------------------------------------------------------------------------------- /Server/Helpers/JsonExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Helpers/JsonExporter.cs -------------------------------------------------------------------------------- /Server/Helpers/JsonImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Helpers/JsonImporter.cs -------------------------------------------------------------------------------- /Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Program.cs -------------------------------------------------------------------------------- /Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Properties/Resources.resx -------------------------------------------------------------------------------- /Server/SMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/SMain.Designer.cs -------------------------------------------------------------------------------- /Server/SMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/SMain.cs -------------------------------------------------------------------------------- /Server/SMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/SMain.resx -------------------------------------------------------------------------------- /Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Server.csproj -------------------------------------------------------------------------------- /Server/Views/AccountView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/AccountView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/AccountView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/AccountView.cs -------------------------------------------------------------------------------- /Server/Views/AccountView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/AccountView.resx -------------------------------------------------------------------------------- /Server/Views/BaseStatView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/BaseStatView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/BaseStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/BaseStatView.cs -------------------------------------------------------------------------------- /Server/Views/BaseStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/BaseStatView.resx -------------------------------------------------------------------------------- /Server/Views/BundleInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/BundleInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/BundleInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/BundleInfoView.cs -------------------------------------------------------------------------------- /Server/Views/BundleInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/BundleInfoView.resx -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CastleInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CastleInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CastleInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CastleInfoView.resx -------------------------------------------------------------------------------- /Server/Views/CharacterView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CharacterView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CharacterView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CharacterView.cs -------------------------------------------------------------------------------- /Server/Views/CharacterView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CharacterView.resx -------------------------------------------------------------------------------- /Server/Views/ChatLogView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ChatLogView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ChatLogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ChatLogView.cs -------------------------------------------------------------------------------- /Server/Views/ChatLogView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ChatLogView.resx -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CompanionInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CompanionInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CompanionInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CompanionInfoView.resx -------------------------------------------------------------------------------- /Server/Views/ConfigView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ConfigView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ConfigView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ConfigView.cs -------------------------------------------------------------------------------- /Server/Views/ConfigView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ConfigView.resx -------------------------------------------------------------------------------- /Server/Views/CurrencyInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CurrencyInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/CurrencyInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CurrencyInfoView.cs -------------------------------------------------------------------------------- /Server/Views/CurrencyInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/CurrencyInfoView.resx -------------------------------------------------------------------------------- /Server/Views/DatabaseEncryptionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DatabaseEncryptionForm.Designer.cs -------------------------------------------------------------------------------- /Server/Views/DatabaseEncryptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DatabaseEncryptionForm.cs -------------------------------------------------------------------------------- /Server/Views/DatabaseEncryptionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DatabaseEncryptionForm.resx -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DiagnosticView.cs -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DiagnosticView.designer.cs -------------------------------------------------------------------------------- /Server/Views/DiagnosticView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DiagnosticView.resx -------------------------------------------------------------------------------- /Server/Views/DisciplineInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DisciplineInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/DisciplineInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DisciplineInfoView.cs -------------------------------------------------------------------------------- /Server/Views/DisciplineInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DisciplineInfoView.resx -------------------------------------------------------------------------------- /Server/Views/DropInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DropInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/DropInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DropInfoView.cs -------------------------------------------------------------------------------- /Server/Views/DropInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/DropInfoView.resx -------------------------------------------------------------------------------- /Server/Views/EventInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/EventInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/EventInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/EventInfoView.cs -------------------------------------------------------------------------------- /Server/Views/EventInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/EventInfoView.resx -------------------------------------------------------------------------------- /Server/Views/FameInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/FameInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/FameInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/FameInfoView.cs -------------------------------------------------------------------------------- /Server/Views/FameInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/FameInfoView.resx -------------------------------------------------------------------------------- /Server/Views/FishingInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/FishingInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/FishingInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/FishingInfoView.cs -------------------------------------------------------------------------------- /Server/Views/FishingInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/FishingInfoView.resx -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/GameGoldPaymentView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/GameGoldPaymentView.cs -------------------------------------------------------------------------------- /Server/Views/GameGoldPaymentView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/GameGoldPaymentView.resx -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/GameStoreSaleView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/GameStoreSaleView.cs -------------------------------------------------------------------------------- /Server/Views/GameStoreSaleView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/GameStoreSaleView.resx -------------------------------------------------------------------------------- /Server/Views/InstanceInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/InstanceInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/InstanceInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/InstanceInfoView.cs -------------------------------------------------------------------------------- /Server/Views/InstanceInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/InstanceInfoView.resx -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ItemInfoStatView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ItemInfoStatView.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ItemInfoStatView.resx -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ItemInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ItemInfoView.cs -------------------------------------------------------------------------------- /Server/Views/ItemInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/ItemInfoView.resx -------------------------------------------------------------------------------- /Server/Views/LocationView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/LocationView.resx -------------------------------------------------------------------------------- /Server/Views/LootBoxInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/LootBoxInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/LootBoxInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/LootBoxInfoView.cs -------------------------------------------------------------------------------- /Server/Views/LootBoxInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/LootBoxInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MagicInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MagicInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MagicInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MagicInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MapInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MapInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MapRegionView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapRegionView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapRegionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapRegionView.cs -------------------------------------------------------------------------------- /Server/Views/MapRegionView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapRegionView.resx -------------------------------------------------------------------------------- /Server/Views/MapViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapViewer.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MapViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapViewer.cs -------------------------------------------------------------------------------- /Server/Views/MapViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MapViewer.resx -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MonsterInfoStatView.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MonsterInfoStatView.designer.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoStatView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MonsterInfoStatView.resx -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MonsterInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MonsterInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MonsterInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MonsterInfoView.resx -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MovementInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MovementInfoView.cs -------------------------------------------------------------------------------- /Server/Views/MovementInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/MovementInfoView.resx -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCInfoView.cs -------------------------------------------------------------------------------- /Server/Views/NPCInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCInfoView.resx -------------------------------------------------------------------------------- /Server/Views/NPCListView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCListView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCListView.cs -------------------------------------------------------------------------------- /Server/Views/NPCListView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCListView.resx -------------------------------------------------------------------------------- /Server/Views/NPCPageView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCPageView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/NPCPageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCPageView.cs -------------------------------------------------------------------------------- /Server/Views/NPCPageView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/NPCPageView.resx -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/QuestInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/QuestInfoView.cs -------------------------------------------------------------------------------- /Server/Views/QuestInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/QuestInfoView.resx -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/RespawnInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/RespawnInfoView.cs -------------------------------------------------------------------------------- /Server/Views/RespawnInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/RespawnInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SafeZoneInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SafeZoneInfoView.cs -------------------------------------------------------------------------------- /Server/Views/SafeZoneInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SafeZoneInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SetInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SetInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SetInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SetInfoView.cs -------------------------------------------------------------------------------- /Server/Views/SetInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SetInfoView.resx -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/StoreInfoView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/StoreInfoView.cs -------------------------------------------------------------------------------- /Server/Views/StoreInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/StoreInfoView.resx -------------------------------------------------------------------------------- /Server/Views/SyncForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SyncForm.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SyncForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SyncForm.cs -------------------------------------------------------------------------------- /Server/Views/SyncForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SyncForm.resx -------------------------------------------------------------------------------- /Server/Views/SystemLogView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SystemLogView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/SystemLogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SystemLogView.cs -------------------------------------------------------------------------------- /Server/Views/SystemLogView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/SystemLogView.resx -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserConquestStatsView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserConquestStatsView.cs -------------------------------------------------------------------------------- /Server/Views/UserConquestStatsView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserConquestStatsView.resx -------------------------------------------------------------------------------- /Server/Views/UserDropView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserDropView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserDropView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserDropView.cs -------------------------------------------------------------------------------- /Server/Views/UserDropView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserDropView.resx -------------------------------------------------------------------------------- /Server/Views/UserItemView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserItemView.resx -------------------------------------------------------------------------------- /Server/Views/UserMailView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserMailView.Designer.cs -------------------------------------------------------------------------------- /Server/Views/UserMailView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserMailView.cs -------------------------------------------------------------------------------- /Server/Views/UserMailView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/UserMailView.resx -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/WeaponCraftStatInfoView.cs -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/WeaponCraftStatInfoView.designer.cs -------------------------------------------------------------------------------- /Server/Views/WeaponCraftStatInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Server/Views/WeaponCraftStatInfoView.resx -------------------------------------------------------------------------------- /ServerCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerCore/Program.cs -------------------------------------------------------------------------------- /ServerCore/ServerCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerCore/ServerCore.csproj -------------------------------------------------------------------------------- /ServerLibrary/Converter/DBObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Converter/DBObjectConverter.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/AccountInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AuctionHistoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/AuctionHistoryInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AuctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/AuctionInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/AutoPotionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/AutoPotionLink.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/BlockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/BlockInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/BuffInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/BuffInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/CharacterBeltLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/CharacterBeltLink.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/CharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/CharacterInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/CompanionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/CompanionFilters.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/FriendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/FriendInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GameGoldPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/GameGoldPayment.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GameNPCData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/GameNPCData.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GameStoreSale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/GameStoreSale.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/GuildInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GuildMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/GuildMemberInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/GuildWarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/GuildWarInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/MailInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/MailInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/RefineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/RefineInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserCompanion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserCompanion.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserCompanionUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserCompanionUnlock.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserConquest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserConquest.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserConquestStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserConquestStats.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserCurrency.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserDiscipline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserDiscipline.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserDrop.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserFortuneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserFortuneInfo.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserItem.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserItemStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserItemStat.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserMagic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserMagic.cs -------------------------------------------------------------------------------- /ServerLibrary/DBModels/UserQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/DBModels/UserQuest.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/AdminCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/AdminCommandHandler.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/AddStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/AddStat.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/Ban.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/Ban.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/ChatBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/ChatBan.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/Goto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/Goto.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/Kick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/Kick.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/Level.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/MapMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/MapMove.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Admin/Reboot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Admin/Reboot.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/ICommand.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/Command/Player/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/Command/Player/Event.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Commands/PlayerCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Commands/PlayerCommandHandler.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Config.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/EmailService.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/ItemDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/ItemDrop.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/ItemGive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/ItemGive.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/MonsterBuffAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/MonsterBuffAdd.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/MonsterSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/MonsterSpawn.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/PlayerBuffAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/PlayerBuffAdd.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/PlayerEscape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/PlayerEscape.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/PlayerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/PlayerMessage.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/PlayerTeleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/PlayerTeleport.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/TimerReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/TimerReset.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/TimerStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/TimerStart.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Actions/TimerStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Actions/TimerStop.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/EventInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/EventInfoHandler.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/IEventAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/IEventAction.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/IEventTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/IEventTrigger.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/MonsterClear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/MonsterClear.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/MonsterDie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/MonsterDie.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/PlayerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/PlayerCommand.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/PlayerDie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/PlayerDie.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/PlayerMoveMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/PlayerMoveMap.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/TimerMinute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/TimerMinute.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Events/Triggers/WorldTimeOfDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Events/Triggers/WorldTimeOfDay.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/SConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/SConnection.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/SEnvir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/SEnvir.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Translations/ChineseMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Translations/ChineseMessages.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Translations/EnglishMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Translations/EnglishMessages.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/Translations/StringMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/Translations/StringMessages.cs -------------------------------------------------------------------------------- /ServerLibrary/Envir/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Envir/WebServer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/ConquestWar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/ConquestWar.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/DelayedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/DelayedAction.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/ItemCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/ItemCheck.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/ItemObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/ItemObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/MagicObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/MagicObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Abyss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Abyss.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/AdventOfDemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/AdventOfDemon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/AdventOfDevil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/AdventOfDevil.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/ArtOfShadows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/ArtOfShadows.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/BloodyFlower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/BloodyFlower.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/BurningFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/BurningFire.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Chain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Chain.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/ChainOfFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/ChainOfFire.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Cloak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Cloak.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Concentration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Concentration.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Containment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Containment.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/CrescentMoon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/CrescentMoon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Discipline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Discipline.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/DragonBlood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/DragonBlood.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/DragonRepulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/DragonRepulse.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/DragonWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/DragonWave.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Evasion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Evasion.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/FatalBlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/FatalBlow.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/FlameSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/FlameSplash.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/FlashOfLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/FlashOfLight.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/FourWheels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/FourWheels.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/FullBloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/FullBloom.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/GhostWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/GhostWalk.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/HellFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/HellFire.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Hemorrhage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Hemorrhage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Karma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Karma.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/LastStand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/LastStand.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Massacre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Massacre.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/PledgeOfBlood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/PledgeOfBlood.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/RagingWind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/RagingWind.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Rake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Rake.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/RedLotus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/RedLotus.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Rejuvenation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Rejuvenation.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Release.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Resolution.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Shredding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Shredding.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Stealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Stealth.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/SummonPuppet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/SummonPuppet.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/SweetBrier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/SweetBrier.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/VineTreeDance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/VineTreeDance.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/Vitality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/Vitality.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/WaningMoon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/WaningMoon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/WhiteLotus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/WhiteLotus.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/WillowDance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/WillowDance.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Assassin/WraithGrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Assassin/WraithGrip.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/BindingTalisman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/BindingTalisman.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/BloodLust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/BloodLust.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/BrainStorm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/BrainStorm.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/CelestialLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/CelestialLight.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/CombatKick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/CombatKick.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/CorpseExploder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/CorpseExploder.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/CursedDoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/CursedDoll.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/DarkSoulPrison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/DarkSoulPrison.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/DemonExplosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/DemonExplosion.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/DemonicRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/DemonicRecovery.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/EvilSlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/EvilSlayer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Heal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Heal.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/HeavenlySky.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/HeavenlySky.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Infection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Infection.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Invisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Invisibility.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/LifeSteal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/LifeSteal.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/MagicResistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/MagicResistance.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/MassHeal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/MassHeal.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Neutralize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Neutralize.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Parasite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Parasite.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/PoisonCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/PoisonCloud.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/PoisonDust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/PoisonDust.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Purification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Purification.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Resilience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Resilience.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Resurrection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Resurrection.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/SearingLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/SearingLight.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/SoulResonance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/SoulResonance.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/SpiritSword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/SpiritSword.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Spiritualism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Spiritualism.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/StrengthOfFaith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/StrengthOfFaith.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/SummonDead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/SummonDead.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/SummonShinsu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/SummonShinsu.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/SummonSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/SummonSkeleton.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/ThunderKick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/ThunderKick.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/Transparency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/Transparency.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Taoist/TrapOctagon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Taoist/TrapOctagon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Assault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Assault.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Beckon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Beckon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/BladeStorm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/BladeStorm.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/CrushingWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/CrushingWave.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/DefensiveBlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/DefensiveBlow.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Defiance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Defiance.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/DragonRise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/DragonRise.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Endurance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Endurance.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Fetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Fetter.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/FireSword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/FireSword.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/FlamingSword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/FlamingSword.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/HalfMoon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/HalfMoon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/HundredFist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/HundredFist.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Interchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Interchange.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Invincibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Invincibility.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/MagicImmunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/MagicImmunity.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/MassBeckon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/MassBeckon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Might.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Might.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/OffensiveBlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/OffensiveBlow.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/SeismicSlam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/SeismicSlam.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/ShoulderDash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/ShoulderDash.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Shuriken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Shuriken.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Slaying.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Slaying.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/SwiftBlade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/SwiftBlade.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Warrior/Thrusting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Warrior/Thrusting.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Asteroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Asteroid.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/BlowEarth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/BlowEarth.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Burning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Burning.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Cyclone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Cyclone.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/DragonTornado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/DragonTornado.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/ElectricShock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/ElectricShock.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/ExpelUndead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/ExpelUndead.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FireBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FireBall.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FireBounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FireBounce.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FireStorm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FireStorm.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FireWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FireWall.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FrostBite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FrostBite.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FrozenDragon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FrozenDragon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/FrozenEarth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/FrozenEarth.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/GustBlast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/GustBlast.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceAura.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceAura.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceBlades.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceBlades.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceBolt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceBolt.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceBreaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceBreaker.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceDragon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceDragon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceRain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceRain.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/IceStorm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/IceStorm.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/LightningBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/LightningBall.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/LightningBeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/LightningBeam.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/LightningWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/LightningWave.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/MagicShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/MagicShield.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/MeteorShower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/MeteorShower.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/MirrorImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/MirrorImage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Renounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Renounce.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Repulsion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Repulsion.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Shocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Shocked.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Storm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Storm.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Teleportation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Teleportation.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Tempest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Tempest.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/ThunderBolt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/ThunderBolt.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/ThunderStrike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/ThunderStrike.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Magics/Wizard/Tornado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Magics/Wizard/Tornado.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Map.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/MapObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/MonsterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/MonsterObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Affliction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Affliction.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ArachnidGrazer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/ArachnidGrazer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ArchLichTaedu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/ArchLichTaedu.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyaLeftGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/BanyaLeftGuard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyoCaptain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/BanyoCaptain.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyoLordGuzak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/BanyoLordGuzak.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BanyoWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/BanyoWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/BlockingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/BlockingObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CarnivorousPlant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CarnivorousPlant.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CastleFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CastleFlag.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CastleGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CastleGate.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CastleGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CastleGuard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CastleLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CastleLord.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CastleObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CastleObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ChaosKnight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/ChaosKnight.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ChristmasMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/ChristmasMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Companion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Companion.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/CrimsonNecromancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/CrimsonNecromancer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DepartedMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/DepartedMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Doll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Doll.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DoomClaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/DoomClaw.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DragonLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/DragonLord.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/DragonQueen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/DragonQueen.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EmperorSaWoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/EmperorSaWoo.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EnragedLordNiJae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/EnragedLordNiJae.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EscortCommander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/EscortCommander.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/EvilElephant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/EvilElephant.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FerociousIceTiger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/FerociousIceTiger.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FieryDancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/FieryDancer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FlameDemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/FlameDemon.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/FrostLordHwa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/FrostLordHwa.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GhostMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/GhostMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GhostSorcerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/GhostSorcerer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GiantLizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/GiantLizard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GoruArcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/GoruArcher.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/GoruSpearman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/GoruSpearman.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Guard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/HalloweenMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/HalloweenMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/HealerAnt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/HealerAnt.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/IcyGoddess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/IcyGoddess.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/IcySpiritGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/IcySpiritGeneral.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/IcySpiritWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/IcySpiritWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/InfernalSoldier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/InfernalSoldier.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/JinamStoneGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/JinamStoneGate.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/JinchonDevil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/JinchonDevil.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/JinhwanSpirit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/JinhwanSpirit.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Larva.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Larva.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/LordNiJae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/LordNiJae.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/MirrorImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/MirrorImage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/MonasteryBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/MonasteryBoss.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Monkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Monkey.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/MoonFeralWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/MoonFeralWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NetherworldGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/NetherworldGate.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NumaHighMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/NumaHighMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NumaMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/NumaMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/NumaStoneThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/NumaStoneThrower.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/OmaMage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/OmaMage.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/OmaWarlord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/OmaWarlord.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/OxFeralGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/OxFeralGeneral.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/PinkBat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/PinkBat.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Puppet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Puppet.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/QuartzTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/QuartzTree.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/QuartzTurtleSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/QuartzTurtleSub.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/QueenOfDawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/QueenOfDawn.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/RazorTusk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/RazorTusk.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/RedMoonTheFallen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/RedMoonTheFallen.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaBlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaBlack.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaBlue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaBlue.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaFireGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaFireGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaIceGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaIceGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaPhoenix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaPhoenix.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaProphet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaProphet.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaScorcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaScorcer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaWhite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaWhite.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SamaWindGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SamaWindGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Shinsu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Shinsu.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SkeletonAxeThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SkeletonAxeThrower.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SonicLizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SonicLizard.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SpittingSpider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SpittingSpider.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Stomper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Stomper.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/SunFeralWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/SunFeralWarrior.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Terracotta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Terracotta.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/TerracottaBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/TerracottaBoss.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/TerracottaSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/TerracottaSub.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Tornado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Tornado.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/TreeMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/TreeMonster.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/UmaKing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/UmaKing.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/UndeadSoul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/UndeadSoul.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/VoraciousGhost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/VoraciousGhost.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/Warewolf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/Warewolf.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WedgeMothLarva.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/WedgeMothLarva.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WhiteBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/WhiteBone.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WindfurySorcerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/WindfurySorcerer.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/WingedHorror.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/WingedHorror.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/YumgonWitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/YumgonWitch.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ZumaGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/ZumaGuardian.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/Monsters/ZumaKing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/Monsters/ZumaKing.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/NPCObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/NPCObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/PlayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/PlayerObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Models/SpellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Models/SpellObject.cs -------------------------------------------------------------------------------- /ServerLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ServerLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /ServerLibrary/Resources/BuyGameGold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Resources/BuyGameGold.txt -------------------------------------------------------------------------------- /ServerLibrary/Resources/CharacterNotFound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/Resources/CharacterNotFound.txt -------------------------------------------------------------------------------- /ServerLibrary/ServerLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/ServerLibrary/ServerLibrary.csproj -------------------------------------------------------------------------------- /Zircon Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/Zircon Server.sln -------------------------------------------------------------------------------- /docs/vortice-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suprcode/Zircon/HEAD/docs/vortice-migration.md --------------------------------------------------------------------------------