├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build-and-release.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CoreBase ├── .gitignore ├── CompiledConstructorFactory.cs ├── Configs │ ├── BaseServerConfig.cs │ ├── ConfigElement.cs │ └── XmlConfigFile.cs ├── CoreBase.csproj ├── Enums │ ├── EFtpFileTransferType.cs │ ├── EFtpMode.cs │ ├── EGameServerStatus.cs │ └── EGameServerType.cs ├── FTP │ ├── FtpAsyncConnection.cs │ ├── FtpConnection.cs │ └── FtpFile.cs ├── Logging │ ├── Enums │ │ ├── ELogLevel.cs │ │ └── LogLibrary.cs │ ├── LogEntry │ │ ├── LogEntry.cs │ │ ├── LogEntryFactory.cs │ │ └── LogEntryQueueProcessor.cs │ └── Logger │ │ ├── Logger.cs │ │ └── LoggerManager.cs ├── MPK │ ├── MpkFile.cs │ ├── MpkFileHeader.cs │ └── MpkHandler.cs ├── Marshal.cs ├── Network │ ├── BaseClient.cs │ ├── BaseServer.cs │ ├── IPacket.cs │ ├── PacketIn.cs │ ├── PacketOut.cs │ ├── SessionId.cs │ ├── SessionIdAllocator.cs │ └── UpnpNat.cs ├── Threading │ ├── SimpleDisposableLock.cs │ └── SpinWaitLock.cs ├── WeakMulticastDelegate.cs └── WeakRef.cs ├── CoreDatabase ├── .gitignore ├── Attributes │ ├── AttributeUtil.cs │ ├── DataElement.cs │ ├── DataTable.cs │ ├── PrimaryKey.cs │ ├── ReadOnly.cs │ └── Relation.cs ├── Connection │ └── TableRowBinding.cs ├── CoreDatabase.csproj ├── CustomParam.cs ├── DataObject.cs ├── DataTableHandler.cs ├── DatabaseException.cs ├── DatabaseParameter.cs ├── DatabaseUtil.cs ├── ElementBinding.cs ├── Enums │ ├── EConnectionType.cs │ ├── EIsolationLevel.cs │ ├── EKeepSkinType.cs │ └── EPathType.cs ├── Handlers │ ├── MySqlObjectDatabase.cs │ └── SqliteObjectDatabase.cs ├── IObjectDatabase.cs ├── LanguageDataObject.cs ├── ObjectDatabase.cs ├── SqlObjectDatabase.cs ├── Tables │ ├── DbAbility.cs │ ├── DbAccount.cs │ ├── DbAccountXCrafting.cs │ ├── DbAccountXCustomParam.cs │ ├── DbAccountXMoney.cs │ ├── DbAppeal.cs │ ├── DbArea.cs │ ├── DbArtifact.cs │ ├── DbArtifactBonus.cs │ ├── DbArtifactXItem.cs │ ├── DbAuditEntry.cs │ ├── DbBans.cs │ ├── DbBattleground.cs │ ├── DbBindPoint.cs │ ├── DbBugReport.cs │ ├── DbCharacterXDataQuest.cs │ ├── DbCharacterXMasterLevel.cs │ ├── DbCharacterXOneTimeDrop.cs │ ├── DbClassXRealmAbility.cs │ ├── DbClassXSpecialization.cs │ ├── DbCoreCharacter.cs │ ├── DbCoreCharacterBackup.cs │ ├── DbCoreCharacterBackupXCustomParam.cs │ ├── DbCoreCharacterXCustomParam.cs │ ├── DbCraftedItem.cs │ ├── DbCraftedXItem.cs │ ├── DbDataQuest.cs │ ├── DbDoor.cs │ ├── DbDropTemplateXItemTemplate.cs │ ├── DbFaction.cs │ ├── DbFactionAggroLevel.cs │ ├── DbFactionLinks.cs │ ├── DbGuild.cs │ ├── DbGuildAlliance.cs │ ├── DbGuildRank.cs │ ├── DbHouse.cs │ ├── DbHouseCharsXPerms.cs │ ├── DbHouseConsignmentMerchant.cs │ ├── DbHouseHookPointItem.cs │ ├── DbHouseHookPointOffset.cs │ ├── DbHouseIndoorItem.cs │ ├── DbHouseOutdoorItem.cs │ ├── DbHousePermissions.cs │ ├── DbInstanceXElement.cs │ ├── DbInventoryItem.cs │ ├── DbItemTemplate.cs │ ├── DbItemUnique.cs │ ├── DbKeep.cs │ ├── DbKeepCaptureLog.cs │ ├── DbKeepComponent.cs │ ├── DbKeepDoorTeleport.cs │ ├── DbKeepHookPoint.cs │ ├── DbKeepHookPointItem.cs │ ├── DbKeepPosition.cs │ ├── DbLanguageArea.cs │ ├── DbLanguageGameDoor.cs │ ├── DbLanguageGameItem.cs │ ├── DbLanguageGameNpc.cs │ ├── DbLanguageGameObject.cs │ ├── DbLanguageSystem.cs │ ├── DbLanguageZone.cs │ ├── DbLineXSpell.cs │ ├── DbLootGenerator.cs │ ├── DbLootOtd.cs │ ├── DbLootTemplate.cs │ ├── DbMerchantItem.cs │ ├── DbMinotaurRelic.cs │ ├── DbMob.cs │ ├── DbMobDropTemplate.cs │ ├── DbMobXAmbientBehavior.cs │ ├── DbMobXLootTemplate.cs │ ├── DbNews.cs │ ├── DbNpcEquipment.cs │ ├── DbNpcTemplate.cs │ ├── DbPath.cs │ ├── DbPathPoint.cs │ ├── DbPlayerBoat.cs │ ├── DbPlayerXEffect.cs │ ├── DbQuest.cs │ ├── DbRace.cs │ ├── DbRegion.cs │ ├── DbRelic.cs │ ├── DbSalvage.cs │ ├── DbSalvageYield.cs │ ├── DbServerProperty.cs │ ├── DbServerPropertyCategory.cs │ ├── DbServerStat.cs │ ├── DbSinglePermission.cs │ ├── DbSpecXAbility.cs │ ├── DbSpecialization.cs │ ├── DbSpell.cs │ ├── DbSpellLine.cs │ ├── DbSpellXCustomValues.cs │ ├── DbStyle.cs │ ├── DbStyleXSpell.cs │ ├── DbTask.cs │ ├── DbTaskRefreshInterval.cs │ ├── DbTeleport.cs │ ├── DbTimeXLevel.cs │ ├── DbWorldObject.cs │ ├── DbZone.cs │ └── DbZonePoint.cs ├── UniqueID │ └── IdGenerator.cs └── WhereClause.cs ├── CoreServer ├── .DS_Store ├── .gitignore ├── Actions │ ├── ConsoleStart.cs │ ├── ServiceInstall.cs │ ├── ServiceRun.cs │ ├── ServiceStart.cs │ ├── ServiceStop.cs │ └── ServiceUninstall.cs ├── ConsolePacketLib.cs ├── CoreServer.csproj ├── DOLServer.exe.config ├── GameServerService.cs ├── GameServerService.resx ├── GameServerServiceInstaller.cs ├── GameServerServiceInstaller.resx ├── IAction.cs ├── MainClass.cs ├── app.config ├── config │ ├── .gitignore │ └── serverconfig.example.xml └── icon.ico ├── DOLLinux.sln ├── Dawn of Light.sln ├── Dockerfile ├── GameServer ├── .gitignore ├── API │ ├── ApiHost.cs │ ├── Guild.cs │ ├── News.cs │ ├── PasswordVerification.cs │ ├── Player.cs │ ├── Realm.cs │ ├── Shutdown.cs │ ├── Utils.cs │ └── docs │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.bck │ │ ├── index.css │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-initializer.js │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-bundle.js.map │ │ ├── swagger-ui-es-bundle-core.js │ │ ├── swagger-ui-es-bundle-core.js.map │ │ ├── swagger-ui-es-bundle.js │ │ ├── swagger-ui-es-bundle.js.map │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui-standalone-preset.js.map │ │ ├── swagger-ui.css │ │ ├── swagger-ui.css.map │ │ ├── swagger-ui.js │ │ ├── swagger-ui.js.map │ │ ├── swagger.json │ │ └── swagger.yaml ├── ECS-Components │ ├── Actions │ │ ├── AttackAction.cs │ │ ├── CraftAction.cs │ │ ├── NpcAttackAction.cs │ │ ├── PlayerAttackAction.cs │ │ └── WeaponAction.cs │ ├── AttackComponent.cs │ ├── CastingComponent.cs │ ├── CraftComponent.cs │ ├── EffectListComponent.cs │ ├── MovementComponent.cs │ ├── NpcCastingComponent.cs │ ├── NpcMovementComponent.cs │ ├── NpcStyleComponent.cs │ ├── PlayerCastingComponent.cs │ ├── PlayerEffectListComponent.cs │ ├── PlayerMovementComponent.cs │ ├── PlayerStyleComponent.cs │ ├── RangeAttackComponent.cs │ └── StyleComponent.cs ├── ECS-Debug │ └── ECSDebug.cs ├── ECS-Effects │ ├── AblativeArmorECSEffect.cs │ ├── AmnesiaECSEffect.cs │ ├── BerserkECSEffect.cs │ ├── BladeturnECSEffect.cs │ ├── BleedECSEffect.cs │ ├── CamouflageECSEffect.cs │ ├── ChargeECSEffect.cs │ ├── CharmECSEffect.cs │ ├── CombatHealECSEffect.cs │ ├── ConfusionECSEffect.cs │ ├── CrowdControlECSEffect.cs │ ├── DamageAddECSEffect.cs │ ├── DamageOverTimeECSEffect.cs │ ├── DamageShieldECSEffect.cs │ ├── DirtyTricksECSEffect.cs │ ├── DiseaseECSEffect.cs │ ├── ECSGameAbilityEffect.cs │ ├── ECSGameEffect.cs │ ├── ECSGameEffectFactory.cs │ ├── ECSGameSpellEffect.cs │ ├── ECSImmunityEffect.cs │ ├── ECSPulseEffect.cs │ ├── EngageECSEffect.cs │ ├── FacilitatePainworkingECSEffect.cs │ ├── FocusECSEffect.cs │ ├── GuardECSEffect.cs │ ├── HealOverTimeECSEffect.cs │ ├── InterceptECSEffect.cs │ ├── NearsightECSEffect.cs │ ├── NecromancerShadeECSGameEffect.cs │ ├── PetECSEffect.cs │ ├── PiercingMagicECSEffect.cs │ ├── ProcECSEffect.cs │ ├── ProtectECSEffect.cs │ ├── QuickCastECSEffect.cs │ ├── RapidFireECSEffect.cs │ ├── ResurrectionIllnessECSEffect.cs │ ├── SavageBuffECSEffect.cs │ ├── ShadeECSEffect.cs │ ├── SpeedEnhancementECSEffect.cs │ ├── SprintECSEffect.cs │ ├── StagECSEffect.cs │ ├── StatBuffECSEffect.cs │ ├── StatDebuffECSEffect.cs │ ├── StealthECSEffect.cs │ ├── SureShotECSEffect.cs │ ├── TripleWieldECSEffect.cs │ └── TrueShotECSEffect.cs ├── ECS-Services │ ├── AttackService.cs │ ├── CastingService.cs │ ├── ClientService.cs │ ├── CraftingService.cs │ ├── DailyQuestService.cs │ ├── EffectListService.cs │ ├── EffectService.cs │ ├── GameLoopService.cs │ ├── GameServiceBase.cs │ ├── GameServiceUtils.cs │ ├── MonthlyQuestService.cs │ ├── MovementService.cs │ ├── NpcService.cs │ ├── ReaperService.cs │ ├── TimerService.cs │ ├── WeeklyQuestService.cs │ └── ZoneService.cs ├── Enums │ ├── SpellCostType.cs │ ├── SpellNegatedReason.cs │ ├── eActiveQuiverSlot.cs │ ├── eActiveWeaponSlot.cs │ ├── eArmorSlot.cs │ ├── eAttackResult.cs │ ├── eBuffBonusCategory.cs │ ├── eCastState.cs │ ├── eCharFacePart.cs │ ├── eCharacterClass.cs │ ├── eCheckRangeAttackStateResult.cs │ ├── eClientExpansion.cs │ ├── eColor.cs │ ├── eDamageType.cs │ ├── eDeathType.cs │ ├── eEffect.cs │ ├── eEnduranceChangeType.cs │ ├── eEquipmentItems.cs │ ├── eFSMStateType.cs │ ├── eGameObjectType.cs │ ├── eGender.cs │ ├── eHealthChangeType.cs │ ├── eHorseSaddleBag.cs │ ├── eInstrumentType.cs │ ├── eItemFlags.cs │ ├── eLivingModel.cs │ ├── eManaChangeType.cs │ ├── eMaterial.cs │ ├── eObjectType.cs │ ├── ePrivLevel.cs │ ├── eProperty.cs │ ├── ePropertyType.cs │ ├── eQuestIndicator.cs │ ├── eRace.cs │ ├── eRangedAttackState.cs │ ├── eRangedAttackType.cs │ ├── eRealm.cs │ ├── eReleaseType.cs │ ├── eResist.cs │ ├── eSize.cs │ ├── eSpellEffect.cs │ ├── eSpellTarget.cs │ ├── eSpellType.cs │ ├── eStat.cs │ ├── eWaterBreath.cs │ ├── eWeaponDamageType.cs │ ├── eXPLogState.cs │ └── eXPSource.cs ├── GameClient.cs ├── GameServer.cs ├── GameServer.csproj ├── GameServerConfiguration.cs ├── GlobalConstants.cs ├── Managers │ ├── Discord │ │ └── DiscordClientManager.cs │ ├── GameLoop │ │ ├── GameLoop.cs │ │ ├── GameLoopSynchronizationContext.cs │ │ ├── GameLoopThreadPool.cs │ │ ├── GameLoopThreadPoolMultiThreaded.cs │ │ ├── GameLoopThreadPoolSingleThreaded.cs │ │ ├── GameLoopThreadPoolWatchdog.cs │ │ ├── GameLoopTickPacer.cs │ │ ├── GameLoopTickPacerStats.cs │ │ ├── TickListPool.cs │ │ ├── TickListPoolManager.cs │ │ ├── TickObjectPool.cs │ │ ├── TickObjectPoolManager.cs │ │ ├── TickPool.cs │ │ └── TickPoolBase.cs │ ├── RandomObjectGeneration │ │ ├── AtlasMobLoot.cs │ │ ├── AtlasROGManager.cs │ │ └── GeneratedUniqueItem.cs │ ├── ServiceObject │ │ ├── IServiceObject.cs │ │ ├── ServiceObjectId.cs │ │ ├── ServiceObjectStore.cs │ │ └── ServiceObjectType.cs │ ├── npcmanager │ │ ├── MobAmbientBehaviourManager.cs │ │ └── NpcManager.cs │ ├── playermanager │ │ ├── FriendStatus.cs │ │ ├── FriendsManager.cs │ │ ├── FriendsManagerExtensions.cs │ │ ├── InvalidNamesManager.cs │ │ └── PlayerManager.cs │ └── worldmanager │ │ ├── RegionWeather.cs │ │ ├── WeatherManager.cs │ │ └── WorldManager.cs ├── Metrics │ ├── MeterRegistry.cs │ └── Meters │ │ ├── CurrencyMeterProvider.cs │ │ ├── IMeterProvider.cs │ │ ├── PlayerMeterProvider.cs │ │ ├── PvEMeterProvider.cs │ │ └── RvRMeterProvider.cs ├── PerformanceStatistics │ ├── CurrentProcessCpuUsageStatistics.cs │ ├── DiskTransferStatistics.cs │ ├── DummyPerformanceStatistic.cs │ ├── IPerformanceStatistic.cs │ ├── PageFaultStatistics.cs │ ├── PerSecondStatistic.cs │ ├── PerformanceCounterStatistics.cs │ └── SystemCpuUsageStatistics.cs ├── ResourceUtil.cs ├── SimpleScheduler.cs ├── ai │ ├── ABrain.cs │ ├── APlayerVicinityBrain.cs │ ├── FSM │ │ ├── FSM.cs │ │ └── FSMState.cs │ └── brain │ │ ├── Animist │ │ ├── BomberBrain.cs │ │ ├── ForestheartAmbusherBrain.cs │ │ ├── TurretBrain.cs │ │ ├── TurretFNFBrain.cs │ │ ├── TurretMainPetCasterBrain.cs │ │ └── TurretMainPetTankBrain.cs │ │ ├── BlankBrain.cs │ │ ├── Bonedancer │ │ ├── BdArcherBrain.cs │ │ ├── BdBufferBrain.cs │ │ ├── BdCasterBrain.cs │ │ ├── BdDebufferBrain.cs │ │ ├── BdHealerBrain.cs │ │ ├── BdMeleeBrain.cs │ │ ├── BdPetBrain.cs │ │ └── CommanderBrain.cs │ │ ├── Cabalist │ │ └── JuggernautBrain.cs │ │ ├── ControlledMob │ │ ├── ControlledMobBrain.cs │ │ └── ControlledMobState.cs │ │ ├── FollowOwnerBrain.cs │ │ ├── Guards │ │ ├── Caster.cs │ │ ├── GuardBrain.cs │ │ ├── GuardState.cs │ │ ├── Healer.cs │ │ ├── KeepGuardBrain.cs │ │ ├── Lord.cs │ │ └── PveSafetyGuard.cs │ │ ├── IControlledBrain.cs │ │ ├── IOldAggressiveBrain.cs │ │ ├── Necromancer │ │ └── NecromancerPetBrain.cs │ │ ├── NoveltyPetBrain.cs │ │ ├── ProcPetBrain.cs │ │ ├── RoundsBrain.cs │ │ ├── Scout │ │ ├── ScoutMobBrain.cs │ │ └── ScoutMobBrainState.cs │ │ ├── Special │ │ ├── AlluvianBrain.cs │ │ ├── AlluvianGlobuleBrain.cs │ │ ├── AlluvianGlobuleState.cs │ │ ├── SINeckBossBrain.cs │ │ ├── UrchinAmbusherBrain.cs │ │ └── WaterElementalBrain.cs │ │ ├── StandardMob │ │ ├── StandardMobBrain.cs │ │ └── StandardMobState.cs │ │ ├── Theurgist │ │ ├── TheurgistAirPetBrain.cs │ │ ├── TheurgistEarthPetBrain.cs │ │ ├── TheurgistIcePetBrain.cs │ │ └── TheurgistPetBrain.cs │ │ └── ZephyrBrain.cs ├── behaviour │ ├── AbstractAction.cs │ ├── AbstractRequirement.cs │ ├── AbstractTrigger.cs │ ├── Actions │ │ ├── AnimationAction.cs │ │ ├── AttackAction.cs │ │ ├── CustomDialogAction.cs │ │ ├── CustomTimerAction.cs │ │ ├── DestroyItemAction.cs │ │ ├── DropItemAction.cs │ │ ├── GiveGoldAction.cs │ │ ├── GiveItemAction.cs │ │ ├── GiveXPAction.cs │ │ ├── MessageAction.cs │ │ ├── MonsterSpawnAction.cs │ │ ├── MonsterUnspawnAction.cs │ │ ├── MoveToAction.cs │ │ ├── PlaySoundAction.cs │ │ ├── ReplaceItemAction.cs │ │ ├── SetGuildNameAction.cs │ │ ├── SetMonsterPathAction.cs │ │ ├── TakeGoldAction.cs │ │ ├── TakeItemAction.cs │ │ ├── TalkAction.cs │ │ ├── TeleportAction.cs │ │ ├── TimerAction.cs │ │ ├── TrainerWindowAction.cs │ │ ├── WalkToAction.cs │ │ ├── WalkToSpawnAction.cs │ │ └── WhisperAction.cs │ ├── Attributes │ │ ├── ActionAttribute.cs │ │ ├── RequirementAttribute.cs │ │ └── TriggerAttribute.cs │ ├── BaseBehaviour.cs │ ├── BehaviourBuilder.cs │ ├── BehaviourMgr.cs │ ├── BehaviourUtils.cs │ ├── IBehaviourAction.cs │ ├── IBehaviourRequirement.cs │ ├── IBehaviourTrigger.cs │ ├── Requirements │ │ ├── ClassRequirement.cs │ │ ├── DistanceRequirement.cs │ │ ├── EncumbranceMaxRequirement.cs │ │ ├── EncumbranceRequirement.cs │ │ ├── EnduranceRequirement.cs │ │ ├── EquippedItemRequirement.cs │ │ ├── GenderRequirement.cs │ │ ├── GoldRequirement.cs │ │ ├── GroupLevelRequirement.cs │ │ ├── GroupNumberRequirement.cs │ │ ├── GuildRequirement.cs │ │ ├── HealthMaxRequirement.cs │ │ ├── HealthRequirement.cs │ │ ├── InventoryItemRequirement.cs │ │ ├── LevelRequirement.cs │ │ ├── ManaMaxRequirement.cs │ │ ├── ManaRequirement.cs │ │ ├── RaceRequirement.cs │ │ ├── RandomChanceRequirement.cs │ │ ├── RealmLevelRequirement.cs │ │ ├── RealmPointsRequirement.cs │ │ ├── RealmRequirement.cs │ │ └── RegionRequirement.cs │ └── Triggers │ │ ├── EnemyDyingTrigger.cs │ │ ├── EnemyKilledTrigger.cs │ │ ├── EnterAreaTrigger.cs │ │ ├── GiveItemTrigger.cs │ │ ├── InteractTrigger.cs │ │ ├── ItemUsedTrigger.cs │ │ ├── LeaveAreaTrigger.cs │ │ ├── PlayerKilledTrigger.cs │ │ ├── TimerTrigger.cs │ │ └── WhisperTrigger.cs ├── commands │ ├── AbstractCommandHandler.cs │ ├── CmdAttribute.cs │ ├── ICommandHandler.cs │ ├── RefreshCommandAttribute.cs │ ├── admincommands │ │ ├── Account.cs │ │ ├── BenchmarkCommand.cs │ │ ├── Freeze.cs │ │ ├── KeepDoorTeleport.cs │ │ ├── RefreshCommand.cs │ │ ├── Reload.cs │ │ ├── Shutdown.cs │ │ ├── SpeedHack.cs │ │ ├── code.cs │ │ ├── plvl.cs │ │ └── serverproperties.cs │ ├── gmcommands │ │ ├── AddHookPoint.cs │ │ ├── AdviceTeam.cs │ │ ├── Announce.cs │ │ ├── Ban.cs │ │ ├── ClearInventory.cs │ │ ├── ClientList.cs │ │ ├── Faction.cs │ │ ├── GMinfo.cs │ │ ├── Instance.cs │ │ ├── KeepComponent.cs │ │ ├── Minorelic.cs │ │ ├── Player.cs │ │ ├── Removehouse.cs │ │ ├── SpamMob.cs │ │ ├── Team.cs │ │ ├── Teleport.cs │ │ ├── addbind.cs │ │ ├── area.cs │ │ ├── blink.cs │ │ ├── cast.cs │ │ ├── crafting.cs │ │ ├── debug.cs │ │ ├── debugjump.cs │ │ ├── door.cs │ │ ├── gmappeal.cs │ │ ├── gmrelic.cs │ │ ├── gmrelicpad.cs │ │ ├── gmstealth.cs │ │ ├── harm.cs │ │ ├── heal.cs │ │ ├── item.cs │ │ ├── jump.cs │ │ ├── keep.cs │ │ ├── keepguard.cs │ │ ├── kick.cs │ │ ├── merchant.cs │ │ ├── mob.cs │ │ ├── morph.cs │ │ ├── mountgm.cs │ │ ├── mute.cs │ │ ├── npc.cs │ │ ├── object.cs │ │ ├── offlinejump.cs │ │ ├── path.cs │ │ ├── resetability.cs │ │ ├── siegeweapon.cs │ │ ├── specLock.cs │ │ ├── speed.cs │ │ ├── titlegm.cs │ │ ├── translate.cs │ │ ├── walk.cs │ │ ├── weather.cs │ │ ├── zone.cs │ │ ├── zonebonus.cs │ │ └── zonepoint.cs │ └── playercommands │ │ ├── Boat.cs │ │ ├── Formation.cs │ │ ├── GroundAssist.cs │ │ ├── LFG.cs │ │ ├── QuestCommands.cs │ │ ├── Repair.cs │ │ ├── ViewReports.cs │ │ ├── advice.cs │ │ ├── advisor.cs │ │ ├── afk.cs │ │ ├── anonymous.cs │ │ ├── api.cs │ │ ├── appeal.cs │ │ ├── assist.cs │ │ ├── autoloot.cs │ │ ├── autosplit.cs │ │ ├── backupstyle.cs │ │ ├── battlegroup.cs │ │ ├── bind.cs │ │ ├── boot.cs │ │ ├── bountyrent.cs │ │ ├── broadcast.cs │ │ ├── buff.cs │ │ ├── cancelstyle.cs │ │ ├── chatgroup.cs │ │ ├── checkappeal.cs │ │ ├── checkconcolor.cs │ │ ├── classrogs.cs │ │ ├── cloak.cs │ │ ├── cmdhelp.cs │ │ ├── combatstats.cs │ │ ├── craft.cs │ │ ├── deal.cs │ │ ├── disband.cs │ │ ├── discard.cs │ │ ├── dismount.cs │ │ ├── dropmr.cs │ │ ├── duel.cs │ │ ├── email.cs │ │ ├── emote.cs │ │ ├── emotes.cs │ │ ├── facegloc.cs │ │ ├── faceloc.cs │ │ ├── filter.cs │ │ ├── freelevel.cs │ │ ├── friend.cs │ │ ├── gloc.cs │ │ ├── group.cs │ │ ├── groupsort.cs │ │ ├── gtrange.cs │ │ ├── guild.cs │ │ ├── guildchat.cs │ │ ├── hardcore.cs │ │ ├── held.cs │ │ ├── helm.cs │ │ ├── hood.cs │ │ ├── horse.cs │ │ ├── house.cs │ │ ├── houseface.cs │ │ ├── housefriend.cs │ │ ├── housepoints.cs │ │ ├── ignore.cs │ │ ├── invite.cs │ │ ├── knock.cs │ │ ├── language.cs │ │ ├── lastname.cs │ │ ├── level.cs │ │ ├── makeleader.cs │ │ ├── namemount.cs │ │ ├── news.cs │ │ ├── noqueue.cs │ │ ├── password.cs │ │ ├── played.cs │ │ ├── pray.cs │ │ ├── quest.cs │ │ ├── quit.cs │ │ ├── random.cs │ │ ├── range.cs │ │ ├── realm.cs │ │ ├── realmtimer.cs │ │ ├── rearrange.cs │ │ ├── region.cs │ │ ├── release.cs │ │ ├── relic.cs │ │ ├── report.cs │ │ ├── respec.cs │ │ ├── roleplay.cs │ │ ├── roll.cs │ │ ├── rp.cs │ │ ├── safety.cs │ │ ├── salvage.cs │ │ ├── say.cs │ │ ├── sell.cs │ │ ├── send.cs │ │ ├── settitle.cs │ │ ├── setwho.cs │ │ ├── show.cs │ │ ├── shuffle.cs │ │ ├── spacing.cs │ │ ├── sprint.cs │ │ ├── stand.cs │ │ ├── stats.cs │ │ ├── statsanon.cs │ │ ├── stuck.cs │ │ ├── summon.cs │ │ ├── target.cs │ │ ├── targetstats.cs │ │ ├── task.cs │ │ ├── time.cs │ │ ├── trade.cs │ │ ├── train.cs │ │ ├── vault.cs │ │ ├── webdisplay.cs │ │ ├── where.cs │ │ ├── whisper.cs │ │ ├── who.cs │ │ ├── xp.cs │ │ ├── xpstats.cs │ │ └── yell.cs ├── config │ ├── invalidnames.txt │ └── logconfig.xml ├── craft │ ├── AbstractCraftingSkill.cs │ ├── AbstractProfession.cs │ ├── AdvancedCraftingSkill.cs │ ├── Alchemy.cs │ ├── ArmorCrafting.cs │ ├── BasicCrafting.cs │ ├── ClothWorking.cs │ ├── CraftingMgr.cs │ ├── Fletching.cs │ ├── GemCutting.cs │ ├── HerbalCrafting.cs │ ├── LeatherCrafting.cs │ ├── MetalWorking.cs │ ├── Recipe.cs │ ├── Repair.cs │ ├── Salvage.cs │ ├── SalvageCalculator.cs │ ├── SiegeCrafting.cs │ ├── SpellCrafting.cs │ ├── Tailoring.cs │ ├── WeaponCrafting.cs │ └── WoodWorking.cs ├── database │ ├── DOLDB.cs │ └── updaters │ │ ├── DatabaseUpdateAttribute.cs │ │ └── IDatabaseUpdater.cs ├── effects │ ├── BerserkEffect.cs │ ├── BodyguardEffect.cs │ ├── CamouflageEffect.cs │ ├── DummyEffect.cs │ ├── EngageEffect.cs │ ├── GameEffectList.cs │ ├── GameEffectPlayerList.cs │ ├── GameSpellAndImmunityEffect.cs │ ├── GameSpellEffect.cs │ ├── GuildBannerEffect.cs │ ├── IConcentrationEffect.cs │ ├── IGameEffect.cs │ ├── Necromancer │ │ ├── FacilitatePainworkingEffect.cs │ │ ├── NecromancerShadeEffect.cs │ │ └── TauntEffect.cs │ ├── ProtectEffect.cs │ ├── PulsingSpellEffect.cs │ ├── QuickCastEffect.cs │ ├── RapidFireEffect.cs │ ├── ShadeEffect.cs │ ├── Spells │ │ └── FocusShellEffect.cs │ ├── SprintEffect.cs │ ├── StagEffect.cs │ ├── StaticEffect.cs │ ├── SureShotEffect.cs │ ├── TimedEffect.cs │ ├── TripleWieldEffect.cs │ └── UniPortalEffect.cs ├── events │ ├── DOLEvent.cs │ ├── DOLEventHandlerCollection.cs │ ├── GameEventMgr.cs │ ├── IDOLEventHandler.cs │ ├── World │ │ ├── AreaEvent.cs │ │ ├── AreaEventArgs.cs │ │ ├── RegionEvent.cs │ │ └── RegionPlayerArgs.cs │ ├── database │ │ ├── AccountEventArgs.cs │ │ ├── CharacterEventArgs.cs │ │ ├── DatabaseEvent.cs │ │ └── NewsEventArgs.cs │ ├── gameobjects │ │ ├── AttackFinishedEventArgs.cs │ │ ├── AttackedByEnemyEventArgs.cs │ │ ├── CastFailedEventArgs.cs │ │ ├── CastingEventArgs.cs │ │ ├── DyingEventArgs.cs │ │ ├── EnemyHealedEventArgs.cs │ │ ├── EnemyKilledEventArgs.cs │ │ ├── ExecuteCommandEventArgs.cs │ │ ├── FollowLostTargetEventArgs.cs │ │ ├── GainedExperienceEventArgs.cs │ │ ├── GainedRealmPointsEventArgs.cs │ │ ├── GameLivingEvent.cs │ │ ├── GameObjectEvent.cs │ │ ├── GamePlayerEvent.cs │ │ ├── GiveItemEventArgs.cs │ │ ├── GiveMoneyEventArgs.cs │ │ ├── HealthChangedEventArgs.cs │ │ ├── InteractEventArgs.cs │ │ ├── InteractWithEventArgs.cs │ │ ├── InterruptedEventArgs.cs │ │ ├── ItemBonusChangedEventArgs.cs │ │ ├── ItemDroppedEventArgs.cs │ │ ├── ItemEquippedArgs.cs │ │ ├── ItemUnequippedArgs.cs │ │ ├── MoveToEventArgs.cs │ │ ├── NextCraftingTierReachedEventArgs.cs │ │ ├── PlayerDisbandedEventArgs.cs │ │ ├── PlayerGroupEvent.cs │ │ ├── PlayerInventoryEvent.cs │ │ ├── PlayerJoinedEventArgs.cs │ │ ├── PlayerPromotedEventArgs.cs │ │ ├── QuestEventArgs.cs │ │ ├── QuestRewardChosenEventArgs.cs │ │ ├── ReceiveItemEventArgs.cs │ │ ├── ReceiveMoneyEventArgs.cs │ │ ├── RevivedEventArgs.cs │ │ ├── SayEventArgs.cs │ │ ├── SayReceiveEventArgs.cs │ │ ├── SourceEventArgs.cs │ │ ├── SwitchedTargetEventArgs.cs │ │ ├── TakeDamageEventArgs.cs │ │ ├── TetherEventArgs.cs │ │ ├── TimerEventArgs.cs │ │ ├── TurnToEventArgs.cs │ │ ├── TurnToHeadingEventArgs.cs │ │ ├── UseSlotEventArgs.cs │ │ ├── WalkEventArgs.cs │ │ ├── WalkToEventArgs.cs │ │ ├── WhisperEventArgs.cs │ │ ├── WhisperReceiveEventArgs.cs │ │ ├── YellEventArgs.cs │ │ └── YellReceiveEventArgs.cs │ ├── keep │ │ ├── KeepEvent.cs │ │ ├── KeepEventArgs.cs │ │ ├── RelicGuardsOnKeepTaken.cs │ │ ├── RelicPadEvent.cs │ │ └── RelicPadEventArgs.cs │ ├── scripts │ │ ├── ScriptEvent.cs │ │ ├── ScriptLoadedEventAttribute.cs │ │ └── ScriptUnloadedEventAttribute.cs │ └── server │ │ ├── GameClientEvent.cs │ │ ├── GameServerEvent.cs │ │ ├── GameServerStartedEventAttribute.cs │ │ └── GameServerStoppedEventAttribute.cs ├── gameobjects │ ├── Animist │ │ ├── TurretFnfPet.cs │ │ ├── TurretMainPetCaster.cs │ │ ├── TurretMainPetTank.cs │ │ └── TurretPet.cs │ ├── Atlantis │ │ ├── Arbiter.cs │ │ ├── ArtifactScholar.cs │ │ ├── HeadScholar.cs │ │ ├── Researcher.cs │ │ ├── Scholar.cs │ │ └── Teleporter │ │ │ ├── AncientBoundDjinn.cs │ │ │ ├── DjinnStone.cs │ │ │ ├── PermanentDjinn.cs │ │ │ ├── SpawnDjinnStone.cs │ │ │ ├── SummonDjinnStone.cs │ │ │ └── SummonedDjinn.cs │ ├── Bonedancer │ │ ├── BdArcherSubPet.cs │ │ ├── BdBufferSubPet.cs │ │ ├── BdCasterSubPet.cs │ │ ├── BdDebufferSubPet.cs │ │ ├── BdHealerSubPet.cs │ │ ├── BdMeleeSubPet.cs │ │ ├── BdPet.cs │ │ ├── BdSubPet.cs │ │ └── CommanderPet.cs │ ├── CharacterClasses │ │ ├── Albion │ │ │ └── CharacterClassNecromancer.cs │ │ ├── CharacterClassAttribute.cs │ │ ├── CharacterClassBase.cs │ │ ├── Hibernia │ │ │ └── CharacterClassAnimist.cs │ │ ├── ICharacterClass.cs │ │ └── Midgard │ │ │ └── CharacterClassBoneDancer.cs │ ├── CraftingMaster │ │ ├── AlchemyMaster.cs │ │ ├── ArmorCraftingMaster.cs │ │ ├── BasicCraftingMaster.cs │ │ ├── FletchingMaster.cs │ │ ├── SiegecraftingMaster.cs │ │ ├── SpellCraftingMaster.cs │ │ ├── TailoringMaster.cs │ │ └── WeaponCraftingMaster.cs │ ├── CustomNPC │ │ ├── Blacksmith.cs │ │ ├── BuffMerchant.cs │ │ ├── ConsignmentMerchant.cs │ │ ├── CraftNPC.cs │ │ ├── DisplayModel.cs │ │ ├── Doppelganger.cs │ │ ├── DreadedSealCollector.cs │ │ ├── EmblemNPC.cs │ │ ├── Enchanter.cs │ │ ├── FaceCustomiser.cs │ │ ├── GameBoatStableMaster.cs │ │ ├── GameKingThroneNpc.cs │ │ ├── GameStableMaster.cs │ │ ├── GameSummoner.cs │ │ ├── GameTrainer.cs │ │ ├── GuildRegistrar.cs │ │ ├── Hastener.cs │ │ ├── Healer.cs │ │ ├── HousingHastener.cs │ │ ├── MarketExplorer.cs │ │ ├── NameRegistrar.cs │ │ ├── Recharger.cs │ │ ├── RoyalTreasuryClerk.cs │ │ ├── StatsCustomiser.cs │ │ ├── TaskMaster.cs │ │ ├── Teleporters │ │ │ ├── AlbionSITeleporter.cs │ │ │ ├── AlbionTeleporter.cs │ │ │ ├── AllRealmsTeleporter.cs │ │ │ ├── HiberniaSITeleporter.cs │ │ │ ├── HiberniaTeleporter.cs │ │ │ ├── MidgardSITeleporter.cs │ │ │ ├── MidgardTeleporter.cs │ │ │ ├── SimpleTeleporter.cs │ │ │ └── ThroneRoomTeleporter.cs │ │ └── VaultKeeper.cs │ ├── GameBoat.cs │ ├── GameDoor.cs │ ├── GameDoorBase.cs │ ├── GameEpicBoss.cs │ ├── GameEpicDungeonNPC.cs │ ├── GameEpicNPC.cs │ ├── GameGravestone.cs │ ├── GameGuard.cs │ ├── GameHouseVault.cs │ ├── GameInventoryItem.cs │ ├── GameInventoryObject.cs │ ├── GameLiving.cs │ ├── GameMerchant.cs │ ├── GameMoney.cs │ ├── GameMovingObject.cs │ ├── GameMythirian.cs │ ├── GameNPC.cs │ ├── GameNPChelper.cs │ ├── GameObject.cs │ ├── GamePlayer.cs │ ├── GameSiegeItem.cs │ ├── GameSiegeWeapon.cs │ ├── GameStaticItem.cs │ ├── GameStaticItemTimed.cs │ ├── GameSummonedPet.cs │ ├── GameTaxi.cs │ ├── GameTaxiBoat.cs │ ├── GameTeleporter.cs │ ├── GameTrainingDummy.cs │ ├── GameVault.cs │ ├── GuildBannerItem.cs │ ├── IGameEpicNpc.cs │ ├── IGameInventoryItem.cs │ ├── Necromancer │ │ └── NecromancerPet.cs │ ├── PlayerRace.cs │ ├── RaceStats.cs │ ├── SiegeWeapon │ │ ├── GameSiegeRam.cs │ │ ├── gamesiegeballista.cs │ │ ├── gamesiegecatapult.cs │ │ ├── gamesiegecauldron.cs │ │ └── gamesiegetrebuchet.cs │ ├── Theurgist │ │ ├── TheurgistAirPet.cs │ │ ├── TheurgistEarthPet.cs │ │ ├── TheurgistIcePet.cs │ │ └── TheurgistPet.cs │ └── WorldInventoryItem.cs ├── gameutils │ ├── Ability.cs │ ├── Alliance.cs │ ├── AppealMgr.cs │ ├── AttackData.cs │ ├── AttackerTracker.cs │ ├── AuditMgr.cs │ ├── BattleGroup.cs │ ├── BoatMgr.cs │ ├── CardMgr.cs │ ├── ChatGroup.cs │ ├── ChatUtil.cs │ ├── ClientExtensions.cs │ ├── Collections │ │ ├── DrainArray.cs │ │ ├── ReaderWriterHashSet.cs │ │ ├── ReaderWriterList.cs │ │ ├── Trie.cs │ │ └── WriteLockedLinkedList.cs │ ├── ConLevels.cs │ ├── CraftingProgressMgr.cs │ ├── DOLScriptCompiler.cs │ ├── DoorMgr.cs │ ├── EffectHelper.cs │ ├── Faction.cs │ ├── FactionMgr.cs │ ├── GameDuel.cs │ ├── GameLivingInventory.cs │ ├── GameNPCInventory.cs │ ├── GameNpcInventoryTemplate.cs │ ├── GamePlayerInventory.cs │ ├── GamePlayerUtils.cs │ ├── Group.cs │ ├── GroupMgr.cs │ ├── Guild.cs │ ├── GuildBanner.cs │ ├── GuildEvents.cs │ ├── GuildMgr.cs │ ├── IGameInventory.cs │ ├── ILootGenerator.cs │ ├── INpcTemplate.cs │ ├── ITradeWindow.cs │ ├── InventoryLogging.cs │ ├── LootGeneratorAtlanteanGlass.cs │ ├── LootGeneratorAurulite.cs │ ├── LootGeneratorBase.cs │ ├── LootGeneratorChest.cs │ ├── LootGeneratorDragonscales.cs │ ├── LootGeneratorDreadedSeals.cs │ ├── LootGeneratorMobTemplate.cs │ ├── LootGeneratorMoney.cs │ ├── LootGeneratorOneTimeDrop.cs │ ├── LootGeneratorRandom.cs │ ├── LootGeneratorTemplate.cs │ ├── LootList.cs │ ├── LootMgr.cs │ ├── LosCheckHandler.cs │ ├── MailMgr.cs │ ├── MarketCache.cs │ ├── MarketSearch.cs │ ├── MarketSearchEngine.cs │ ├── MerchantTradeItems.cs │ ├── Message.cs │ ├── Money.cs │ ├── MovementMgr.cs │ ├── NPCGuildScriptAttribute.cs │ ├── NewsMgr.cs │ ├── NpcTemplate.cs │ ├── NpcTemplateMgr.cs │ ├── Params │ │ ├── CustomParamsExtensions.cs │ │ └── ICustomParamsValuable.cs │ ├── PathPoint.cs │ ├── PathVisualization.cs │ ├── PlayerMovementMonitor.cs │ ├── PlayerStatistics.cs │ ├── PlayerTradeWindow.cs │ ├── PropertyCollection.cs │ ├── RandomDeck.cs │ ├── RealmTimer │ │ └── RealmTimer.cs │ ├── ScriptMgr.cs │ ├── SelfCraftWindow.cs │ ├── ServerListUpdate.cs │ ├── SinglePermission.cs │ ├── Skill │ │ ├── ISpellCastingAbilityHandler.cs │ │ ├── Skill.cs │ │ ├── SkillHandlerAttribute.cs │ │ ├── SpellLineAbstractAbility.cs │ │ ├── SpellLineActiveAbility.cs │ │ └── SpellLinePassiveAbility.cs │ ├── SkillBase.cs │ ├── SkillConstants.cs │ ├── Specialization.cs │ ├── Specializations │ │ ├── LiveAbilitySpecialization.cs │ │ ├── LiveCareerSpecialization.cs │ │ ├── LiveChampionsLineSpec.cs │ │ ├── LiveChampionsSpecialization.cs │ │ ├── LiveMasterLevelsSpecialization.cs │ │ ├── LiveRealmAbilitiesSpecialization.cs │ │ ├── LiveSpellHybridSpecialization.cs │ │ ├── LiveSpellLineSpecialization.cs │ │ └── LiveWeaponSpecialization.cs │ ├── StatPrint.cs │ ├── StatSave.cs │ ├── TempPropertiesManager.cs │ ├── Util.cs │ ├── WarMapMgr.cs │ ├── XFireSupport.cs │ └── ZoneBonusRotator.cs ├── housing │ ├── House.cs │ ├── HouseMgr.cs │ ├── HouseTemplateMgr.cs │ ├── HousingConstants.cs │ ├── IHouseHookpointItem.cs │ ├── IndoorItem.cs │ ├── LotMarker.cs │ └── OutdoorItem.cs ├── keeps │ ├── AbstractGameKeep.cs │ ├── GameKeep.cs │ ├── GameKeepComponent.cs │ ├── GameTower.cs │ ├── Gameobjects │ │ ├── FrontiersPortalStone.cs │ │ ├── GameKeepBanner.cs │ │ ├── GameKeepDoor.cs │ │ ├── GameRelicDoor.cs │ │ ├── Guards │ │ │ ├── Archer.cs │ │ │ ├── Commander.cs │ │ │ ├── CorspeSummoner.cs │ │ │ ├── Fighter.cs │ │ │ ├── FighterRK.cs │ │ │ ├── GameGuardMerchant.cs │ │ │ ├── GameKeepGuard.cs │ │ │ ├── GateKeeper.cs │ │ │ ├── GuardCaster.cs │ │ │ ├── GuardMerchant.cs │ │ │ ├── GuardStaticCaster.cs │ │ │ ├── Hastener.cs │ │ │ ├── Healer.cs │ │ │ ├── Lord.cs │ │ │ ├── MissionMaster.cs │ │ │ ├── Patrol.cs │ │ │ ├── Static Archer.cs │ │ │ └── Stealther.cs │ │ └── IKeepItem.cs │ ├── HookPointInventory.cs │ ├── IGameKeep.cs │ ├── IGameKeepComponent.cs │ ├── IKeepManager.cs │ ├── KeepArea.cs │ ├── KeepBonusManager.cs │ ├── KeepHookPoint.cs │ ├── KeepManager.cs │ ├── Managers │ │ ├── Clothing Manager.cs │ │ ├── GuardSpellManager.cs │ │ ├── GuardTemplateManager.cs │ │ ├── Guild Manager.cs │ │ ├── Player Manager.cs │ │ ├── Position Manager.cs │ │ ├── RelicGateMgr.cs │ │ └── RelicMgr.cs │ ├── RelicGameKeep.cs │ └── Relics │ │ ├── GameInventoryRelic.cs │ │ ├── GameRelic.cs │ │ └── GameRelicPad.cs ├── language │ ├── CZ │ │ ├── CZ - General.txt │ │ └── GameObjects │ │ │ └── CommanderPet.txt │ ├── DE │ │ ├── AI.txt │ │ ├── Ability.txt │ │ ├── Atlantis.txt │ │ ├── Behaviour.txt │ │ ├── Commands │ │ │ └── PlayerCommands.txt │ │ ├── Crafting.txt │ │ ├── Effects.txt │ │ ├── GameObjects │ │ │ ├── CommanderPet.txt │ │ │ ├── CustomNPC │ │ │ │ ├── Blacksmith.txt │ │ │ │ ├── CraftNPC.txt │ │ │ │ ├── Enchanter.txt │ │ │ │ ├── GameBoatStableMaster.txt │ │ │ │ ├── GameHastener.txt │ │ │ │ ├── GameStableMaster.txt │ │ │ │ ├── Healer.txt │ │ │ │ ├── NameRegistrar.txt │ │ │ │ ├── Recharger.txt │ │ │ │ └── VaultKeeper.txt │ │ │ ├── GameDoor.txt │ │ │ ├── GameGuard.txt │ │ │ ├── GameLiving.txt │ │ │ ├── GameMerchant.txt │ │ │ ├── GameNPC.txt │ │ │ ├── GameObject.txt │ │ │ ├── GamePlayer.txt │ │ │ ├── GameTrainer.txt │ │ │ └── Other.txt │ │ ├── GameUtils.txt │ │ ├── GameUtils │ │ │ └── money.txt │ │ ├── Housing.txt │ │ ├── Keeps.txt │ │ ├── Keeps │ │ │ ├── Guards.txt │ │ │ └── Managers.txt │ │ ├── OtherSentences.txt │ │ ├── Packets.txt │ │ ├── PlayerClasses.txt │ │ ├── PlayerRaces.txt │ │ ├── PlayerRealmTitles.txt │ │ ├── PlayerTitles.txt │ │ ├── Quests │ │ │ ├── Albion │ │ │ │ ├── ANewHeroesWelcome.txt │ │ │ │ ├── AfterTheAccident.txt │ │ │ │ ├── CemmethsOrders.txt │ │ │ │ ├── DredgeUpAPledge.txt │ │ │ │ ├── NoHopeForTheHopeful.txt │ │ │ │ ├── RecruitingNothingButTrouble.txt │ │ │ │ ├── ToReachTheBreach.txt │ │ │ │ ├── TombWithAView.txt │ │ │ │ ├── WhenBloodSpeaks.txt │ │ │ │ └── WhenGoodBrowniesGoBad.txt │ │ │ ├── AtlantisQuest.txt │ │ │ ├── BaseQuest.txt │ │ │ ├── ChildsPlay.txt │ │ │ ├── Hibernia │ │ │ │ ├── ImportantDelivery.txt │ │ │ │ ├── MagicalBacklash.txt │ │ │ │ ├── SearchForKnowledge.txt │ │ │ │ ├── ToReachTheBreach.txt │ │ │ │ └── WingsOfTheIsle.txt │ │ │ └── Midgard │ │ │ │ ├── ABearyBadProblem.txt │ │ │ │ ├── Frontiers.txt │ │ │ │ ├── MaulerInvasion.txt │ │ │ │ ├── StolenEggs.txt │ │ │ │ └── TheBirthdayGift.txt │ │ ├── RealmAbilities.txt │ │ ├── ServerRules.txt │ │ ├── SkillHandler.txt │ │ ├── Spells.txt │ │ ├── Styles.txt │ │ ├── Trainer.txt │ │ ├── World.txt │ │ └── Zones.txt │ ├── EN │ │ ├── AI.txt │ │ ├── Ability.txt │ │ ├── Behaviour.txt │ │ ├── Commands │ │ │ ├── AdminCommands.txt │ │ │ ├── GMCommands.txt │ │ │ └── PlayerCommands.txt │ │ ├── Crafting.txt │ │ ├── Effects.txt │ │ ├── Expansions │ │ │ ├── Atlantis.txt │ │ │ ├── MasterLevel.txt │ │ │ └── Other.txt │ │ ├── GameObjects │ │ │ ├── CommanderPet.txt │ │ │ ├── CustomNPC │ │ │ │ ├── Blacksmith.txt │ │ │ │ ├── CraftNPC.txt │ │ │ │ ├── Enchanter.txt │ │ │ │ ├── GameBoatStableMaster.txt │ │ │ │ ├── GameHastener.txt │ │ │ │ ├── GameStableMaster.txt │ │ │ │ ├── Healer.txt │ │ │ │ ├── NameRegistrar.txt │ │ │ │ ├── Other.txt │ │ │ │ ├── Recharger.txt │ │ │ │ └── VaultKeeper.txt │ │ │ ├── GameDoor.txt │ │ │ ├── GameGuard.txt │ │ │ ├── GameLiving.txt │ │ │ ├── GameMerchant.txt │ │ │ ├── GameNPC.txt │ │ │ ├── GameObject.txt │ │ │ ├── GamePlayer.txt │ │ │ └── GameTrainer.txt │ │ ├── GameUtils.txt │ │ ├── GameUtils │ │ │ ├── Guild.txt │ │ │ └── money.txt │ │ ├── Housing.txt │ │ ├── Keeps │ │ │ ├── Guards.txt │ │ │ ├── Keeps.txt │ │ │ └── Managers.txt │ │ ├── Language-EN.txt │ │ ├── OtherSentences.txt │ │ ├── PlayerClasses.txt │ │ ├── PlayerRaces.txt │ │ ├── PlayerRealmTitles.txt │ │ ├── PlayerStatistics.txt │ │ ├── PlayerTitles.txt │ │ ├── Quests │ │ │ ├── Albion │ │ │ │ ├── A Few Repairs.txt │ │ │ │ ├── ANewHeroesWelcome.txt │ │ │ │ ├── AfterTheAccident.txt │ │ │ │ ├── CemmethsOrders.txt │ │ │ │ ├── DredgeUpAPledge.txt │ │ │ │ ├── NoHopeForTheHopeful.txt │ │ │ │ ├── RecruitingNothingButTrouble.txt │ │ │ │ ├── ToReachTheBreach.txt │ │ │ │ ├── TombWithAView.txt │ │ │ │ ├── WhenBloodSpeaks.txt │ │ │ │ └── WhenGoodBrowniesGoBad.txt │ │ │ ├── AtlantisQuest.txt │ │ │ ├── BaseQuest.txt │ │ │ ├── ChildsPlay.txt │ │ │ ├── Hibernia │ │ │ │ ├── ImportantDelivery.txt │ │ │ │ ├── MagicalBacklash.txt │ │ │ │ ├── SearchForKnowledge.txt │ │ │ │ ├── ToReachTheBreach.txt │ │ │ │ └── WingsOfTheIsle.txt │ │ │ └── Midgard │ │ │ │ ├── ABearyBadProblem.txt │ │ │ │ ├── Frontiers.txt │ │ │ │ ├── MaulerInvasion.txt │ │ │ │ ├── StolenEggs.txt │ │ │ │ └── TheBirthdayGift.txt │ │ ├── RealmAbilities.txt │ │ ├── SkillHandler.txt │ │ ├── Spells.txt │ │ ├── Unused.txt │ │ ├── World.txt │ │ └── Zones.txt │ ├── ES │ │ ├── ES - General.txt │ │ └── GameObjects │ │ │ └── CommanderPet.txt │ ├── FR │ │ ├── AI.txt │ │ ├── Ability.txt │ │ ├── Atlantis.txt │ │ ├── Commands │ │ │ ├── AdminCommands.txt │ │ │ ├── GMcommand.txt │ │ │ └── Player │ │ │ │ ├── Battlegroup.txt │ │ │ │ ├── Chatgroup.txt │ │ │ │ ├── Guild.txt │ │ │ │ ├── PlayerCommands.txt │ │ │ │ ├── horseemote.txt │ │ │ │ └── other.txt │ │ ├── Crafting.txt │ │ ├── Effects.txt │ │ ├── GameObjects │ │ │ ├── CommanderPet.txt │ │ │ ├── CustomNPC │ │ │ │ ├── Blacksmith.txt │ │ │ │ ├── CraftNPC.txt │ │ │ │ ├── Enchanter.txt │ │ │ │ ├── GameBoatStableMaster.txt │ │ │ │ ├── GameStableMaster.txt │ │ │ │ ├── Healer.txt │ │ │ │ ├── KING.txt │ │ │ │ ├── NameRegistrar.txt │ │ │ │ ├── Other.txt │ │ │ │ ├── Recharger.txt │ │ │ │ └── VaultKeeper.txt │ │ │ ├── GameDoor.txt │ │ │ ├── GameGuard.txt │ │ │ ├── GameLiving.txt │ │ │ ├── GameMerchant.txt │ │ │ ├── GameNPC.txt │ │ │ ├── GameObject.txt │ │ │ └── GamePlayer.txt │ │ ├── GameUtils.txt │ │ ├── GameUtils │ │ │ └── money.txt │ │ ├── Housing.txt │ │ ├── Keeps.txt │ │ ├── Keeps │ │ │ ├── Guards.txt │ │ │ └── Managers.txt │ │ ├── Language-FR.txt │ │ ├── OtherSentences.txt │ │ ├── Packets.txt │ │ ├── PlayerClasses.txt │ │ ├── PlayerRaces.txt │ │ ├── PlayerRealmTitles.txt │ │ ├── PlayerStats.txt │ │ ├── PlayerTitles.txt │ │ ├── Quests │ │ │ ├── Albion │ │ │ │ ├── A Few Repairs.txt │ │ │ │ ├── ANewHeroesWelcome.txt │ │ │ │ ├── AfterTheAccident.txt │ │ │ │ ├── DredgeUpAPledge.txt │ │ │ │ ├── NoHopeForTheHopeful.txt │ │ │ │ ├── ToReachTheBreach.txt │ │ │ │ ├── TombWithAView.txt │ │ │ │ └── WhenBloodSpeaks.txt │ │ │ ├── Artifact.txt │ │ │ ├── Atlantis.txt │ │ │ ├── BaseQuest.txt │ │ │ ├── Behaviour.txt │ │ │ ├── Hibernia │ │ │ │ ├── ImportantDelivery.txt │ │ │ │ └── WingsOfTheIsle.txt │ │ │ ├── ML.txt │ │ │ └── Quest.txt │ │ ├── RealmAbilities.txt │ │ ├── Relic.txt │ │ ├── SkillHandler.txt │ │ ├── Spells.txt │ │ ├── StyleProcessor.txt │ │ ├── Trainer.txt │ │ ├── Zones.txt │ │ └── world │ │ │ ├── AbstractArea.txt │ │ │ └── Events.txt │ ├── IT │ │ ├── AI.txt │ │ ├── Behaviour.txt │ │ ├── Commands │ │ │ ├── AdminCommands.txt │ │ │ └── GMCommands.txt │ │ ├── Effects.txt │ │ ├── GameObject │ │ │ ├── CommanderPet.txt │ │ │ ├── GameDoor.txt │ │ │ └── GameGuard.txt │ │ ├── Language-IT.txt │ │ ├── NameRegistrar.txt │ │ ├── RealmAbilities.txt │ │ └── VaultKeeper.txt │ ├── ITranslatableObject.cs │ ├── LanguageMgr.cs │ └── NL │ │ ├── GameObjects │ │ └── CommanderPet.txt │ │ └── NL - AdminCommands.txt ├── minotaurrelics │ ├── MinotaurRelic.cs │ ├── MinotaurRelicManager.cs │ └── Protectors │ │ ├── ArrektosProtector.cs │ │ └── BaseProtector.cs ├── packets │ ├── Client │ │ ├── 168 │ │ │ ├── BadNameCheckRequestHandler.cs │ │ │ ├── BuyHookPointHandler.cs │ │ │ ├── CharacterCreateRequestHandler.cs │ │ │ ├── CharacterDeleteRequestHandler.cs │ │ │ ├── CharacterOverviewRequestHandler.cs │ │ │ ├── CharacterSelectRequestHandler.cs │ │ │ ├── CheckLosResponseHandler.cs │ │ │ ├── ClientCrashPacketHandler.cs │ │ │ ├── CreateObjectRequestHandler.cs │ │ │ ├── CryptKeyRequestHandler.cs │ │ │ ├── DestroyItemRequestHandler.cs │ │ │ ├── DetailDisplayHandler.cs │ │ │ ├── DialogResponseHandler.cs │ │ │ ├── DisbandFromGroupHandler.cs │ │ │ ├── DoorRequestHandler.cs │ │ │ ├── DuplicateNameCheckRequestHandler.cs │ │ │ ├── EmblemDialogReponseHandler.cs │ │ │ ├── GameOpenRequestHandler.cs │ │ │ ├── HouseEditHandler.cs │ │ │ ├── HouseEnterLeaveRequestHandler.cs │ │ │ ├── HousePermissionsRequestHandler.cs │ │ │ ├── HousePermissionsSetHandler.cs │ │ │ ├── HouseUsersPermissionsRequestHandler.cs │ │ │ ├── HouseUsersPermissionsSetHandler.cs │ │ │ ├── HousingDecorationRotate.cs │ │ │ ├── HousingDecorationRotateRequestHandler.cs │ │ │ ├── HousingMenuRequestHandler.cs │ │ │ ├── HousingPickupItemHandler.cs │ │ │ ├── HousingPlaceItemHandler.cs │ │ │ ├── InviteToGroupHandler.cs │ │ │ ├── KeepComponentInteractHandler.cs │ │ │ ├── LoginRequestHandler.cs │ │ │ ├── LookingForAGroupFlagHandler.cs │ │ │ ├── LookingForAGroupHandler.cs │ │ │ ├── MakeProductHandler.cs │ │ │ ├── MinotaurRelicWindowHandler.cs │ │ │ ├── ObjectInteractRequestHandler.cs │ │ │ ├── ObjectUpdateRequestHandler.cs │ │ │ ├── PetWindowHandler.cs │ │ │ ├── PingRequestHandler.cs │ │ │ ├── PlayerAppraiseItemRequestHandler.cs │ │ │ ├── PlayerAttackRequestHandler.cs │ │ │ ├── PlayerBonusesListRequestHandler.cs │ │ │ ├── PlayerBuyRequestHandler.cs │ │ │ ├── PlayerCancelsEffectHandler.cs │ │ │ ├── PlayerCommandHandler.cs │ │ │ ├── PlayerCreationRequestHandler.cs │ │ │ ├── PlayerDismountRequestHandler.cs │ │ │ ├── PlayerGroundTargetHandler.cs │ │ │ ├── PlayerHeadingUpdateHandler.cs │ │ │ ├── PlayerInitRequestHandler.cs │ │ │ ├── PlayerMarketSearchRequestHandler.cs │ │ │ ├── PlayerModifyTradeHandler.cs │ │ │ ├── PlayerMoveItemRequestHandler.cs │ │ │ ├── PlayerPickUpRequestHandler.cs │ │ │ ├── PlayerPositionUpdateHandler.cs │ │ │ ├── PlayerSellRequestHandler.cs │ │ │ ├── PlayerSetMarketPrice.cs │ │ │ ├── PlayerSitRequest.cs │ │ │ ├── PlayerTargetHandler.cs │ │ │ ├── PlayerTrainRequestHandler.cs │ │ │ ├── PlayerWithdrawMerchantMoney.cs │ │ │ ├── QuestRemoveRequestHandler.cs │ │ │ ├── QuestRewardChosenHandler.cs │ │ │ ├── RegionChangeRequestHandler.cs │ │ │ ├── RegionListRequestHandler.cs │ │ │ ├── RemoveConcentrationEffectHandler.cs │ │ │ ├── ShipHookpointInteract.cs │ │ │ ├── SiegeWeaponActionHandler.cs │ │ │ ├── UDPInitRequestHandler.cs │ │ │ ├── UDPPingRequestHandler.cs │ │ │ ├── UseSkillHandler.cs │ │ │ ├── UseSlotHandler.cs │ │ │ ├── UseSpellHandler.cs │ │ │ ├── WorldInitRequestHandler.cs │ │ │ ├── warmapbonusesrequesthandler.cs │ │ │ └── warmapshowrequesthandler.cs │ │ └── GSPacketIn.cs │ ├── Server │ │ ├── AbstractPacketLib.cs │ │ ├── CryptLib168.cs │ │ ├── GSTCPPacketOut.cs │ │ ├── GSUDPPacketOut.cs │ │ ├── IPacketEncoding.cs │ │ ├── IPacketHandler.cs │ │ ├── IPacketLib.cs │ │ ├── PacketEncoding1110.cs │ │ ├── PacketEncoding168.cs │ │ ├── PacketHandlerAttribute.cs │ │ ├── PacketLib1100.cs │ │ ├── PacketLib1101.cs │ │ ├── PacketLib1102.cs │ │ ├── PacketLib1103.cs │ │ ├── PacketLib1104.cs │ │ ├── PacketLib1105.cs │ │ ├── PacketLib1106.cs │ │ ├── PacketLib1107.cs │ │ ├── PacketLib1108.cs │ │ ├── PacketLib1109.cs │ │ ├── PacketLib1110.cs │ │ ├── PacketLib1111.cs │ │ ├── PacketLib1112.cs │ │ ├── PacketLib1113.cs │ │ ├── PacketLib1114.cs │ │ ├── PacketLib1115.cs │ │ ├── PacketLib1116.cs │ │ ├── PacketLib1117.cs │ │ ├── PacketLib1118.cs │ │ ├── PacketLib1119.cs │ │ ├── PacketLib1120.cs │ │ ├── PacketLib1121.cs │ │ ├── PacketLib1122.cs │ │ ├── PacketLib1123.cs │ │ ├── PacketLib1124.cs │ │ ├── PacketLib1125.cs │ │ ├── PacketLib1126.cs │ │ ├── PacketLib1127.cs │ │ ├── PacketLib1128.cs │ │ ├── PacketLib1129.cs │ │ ├── PacketLib168.cs │ │ ├── PacketLib169.cs │ │ ├── PacketLib170.cs │ │ ├── PacketLib171.cs │ │ ├── PacketLib172.cs │ │ ├── PacketLib173.cs │ │ ├── PacketLib174.cs │ │ ├── PacketLib175.cs │ │ ├── PacketLib176.cs │ │ ├── PacketLib177.cs │ │ ├── PacketLib178.cs │ │ ├── PacketLib179.cs │ │ ├── PacketLib180.cs │ │ ├── PacketLib181.cs │ │ ├── PacketLib182.cs │ │ ├── PacketLib183.cs │ │ ├── PacketLib184.cs │ │ ├── PacketLib185.cs │ │ ├── PacketLib186.cs │ │ ├── PacketLib187.cs │ │ ├── PacketLib188.cs │ │ ├── PacketLib189.cs │ │ ├── PacketLib190.cs │ │ ├── PacketLib191.cs │ │ ├── PacketLib192.cs │ │ ├── PacketLib193.cs │ │ ├── PacketLib194.cs │ │ ├── PacketLib195.cs │ │ ├── PacketLib196.cs │ │ ├── PacketLib197.cs │ │ ├── PacketLib198.cs │ │ ├── PacketLib199.cs │ │ ├── PacketLibAttribute.cs │ │ ├── PacketPreprocessing.cs │ │ └── PacketProcessor.cs │ └── Utils │ │ ├── ClientDelve.cs │ │ └── MiniDelveWriter.cs ├── playerclasses │ ├── albion │ │ ├── ClassArmsman.cs │ │ ├── ClassCabalist.cs │ │ ├── ClassCleric.cs │ │ ├── ClassFriar.cs │ │ ├── ClassHeretic.cs │ │ ├── ClassInfiltrator.cs │ │ ├── ClassMaulerAlb.cs │ │ ├── ClassMercenary.cs │ │ ├── ClassMinstrel.cs │ │ ├── ClassNecromancer.cs │ │ ├── ClassPaladin.cs │ │ ├── ClassReaver.cs │ │ ├── ClassScout.cs │ │ ├── ClassSorcerer.cs │ │ ├── ClassTheurgist.cs │ │ └── ClassWizard.cs │ ├── base │ │ ├── ClassAcolyte.cs │ │ ├── ClassAlbionRogue.cs │ │ ├── ClassDisciple.cs │ │ ├── ClassElementalist.cs │ │ ├── ClassFighter.cs │ │ ├── ClassForester.cs │ │ ├── ClassGuardian.cs │ │ ├── ClassMage.cs │ │ ├── ClassMagician.cs │ │ ├── ClassMidgardRogue.cs │ │ ├── ClassMystic.cs │ │ ├── ClassNaturalist.cs │ │ ├── ClassSeer.cs │ │ ├── ClassStalker.cs │ │ └── ClassViking.cs │ ├── hibernia │ │ ├── ClassAnimist.cs │ │ ├── ClassBainshee.cs │ │ ├── ClassBard.cs │ │ ├── ClassBlademaster.cs │ │ ├── ClassChampion.cs │ │ ├── ClassDruid.cs │ │ ├── ClassEldritch.cs │ │ ├── ClassEnchanter.cs │ │ ├── ClassHero.cs │ │ ├── ClassMaulerHib.cs │ │ ├── ClassMentalist.cs │ │ ├── ClassNightshade.cs │ │ ├── ClassRanger.cs │ │ ├── ClassValewalker.cs │ │ ├── ClassVampiir.cs │ │ └── ClassWarden.cs │ └── midgard │ │ ├── ClassBerserker.cs │ │ ├── ClassBonedancer.cs │ │ ├── ClassHealer.cs │ │ ├── ClassHunter.cs │ │ ├── ClassMaulerMid.cs │ │ ├── ClassRunemaster.cs │ │ ├── ClassSavage.cs │ │ ├── ClassShadowblade.cs │ │ ├── ClassShaman.cs │ │ ├── ClassSkald.cs │ │ ├── ClassSpiritmaster.cs │ │ ├── ClassThane.cs │ │ ├── ClassValkyrie.cs │ │ ├── ClassWarlock.cs │ │ └── ClassWarrior.cs ├── playertitles │ ├── ClearTitle.cs │ ├── EventPlayerTitle.cs │ ├── IPlayerTitle.cs │ ├── PlayerTitleMgr.cs │ ├── SimplePlayerTitle.cs │ └── titles │ │ ├── level │ │ ├── ChampionTitle.cs │ │ ├── Level20Title.cs │ │ └── MasterlevelTitle.cs │ │ └── rank │ │ └── CraftTitle.cs ├── propertycalc │ ├── ArcaneSyphonCalculator.cs │ ├── ArcheryRangePercentCalculator.cs │ ├── ArcherySpeedPercentCalculator.cs │ ├── ArmorAbsorbtionCalculator.cs │ ├── ArmorFactorCalculator.cs │ ├── ArrowSalvagePercentCalculator.cs │ ├── BlockChanceCalculator.cs │ ├── BountyPointsCalculator.cs │ ├── ConversionPercentCalculator.cs │ ├── CriticalArcheryHitChanceCalculator.cs │ ├── CriticalDebuffHitChanceCalculator.cs │ ├── CriticalMeleeHitChanceCalculator.cs │ ├── CriticalSpellHitChanceCalculator.cs │ ├── DPSCalculator.cs │ ├── EnduranceRegenerationAmountCalculator.cs │ ├── EvadeChanceCalculator.cs │ ├── ExtraHPPercentCalculator.cs │ ├── FatigueCalculator.cs │ ├── FatigueConsumptionPercentCalculator.cs │ ├── FocusLevelCalculator.cs │ ├── FumbleChanceCalculator.cs │ ├── HealthRegenerationAmountCalculator.cs │ ├── IMultiplicativeProperties.cs │ ├── IPropertyCalculator.cs │ ├── IPropertyIndexer.cs │ ├── LivingEffectiveLevelCalculator.cs │ ├── MaxConcentrationCalculator.cs │ ├── MaxHealthCalculator.cs │ ├── MaxManaCalculator.cs │ ├── MaxSpeedCalculator.cs │ ├── MeleeDamagePercentCalculator.cs │ ├── MeleeSpeedPercentCalculator.cs │ ├── MesmerizeDurationPercentCalculator.cs │ ├── MultiplicativePropertiesHybrid.cs │ ├── MythicalCoinCalculator.cs │ ├── MythicalDiscumberingCalculator.cs │ ├── MythicalSafeFallCalculator.cs │ ├── OffhandDamageCalculator.cs │ ├── ParryChanceCalculator.cs │ ├── PowerRegenerationAmountCalculator.cs │ ├── PropertyCalculator.cs │ ├── PropertyCalculatorAttribute.cs │ ├── PropertyIndexer.cs │ ├── RangedDamagePercentCalculator.cs │ ├── RealmPointsCalculator.cs │ ├── ResSickPercentCalculator.cs │ ├── ResistCalculator.cs │ ├── ResistPiercePropertyCalculator.cs │ ├── SkillLevelCalculator.cs │ ├── SpeedDecreaseDurationPercentCalculator.cs │ ├── SpellLevelCalculator.cs │ ├── SpellRangePercentCalculator.cs │ ├── StatCalculator.cs │ ├── StunDurationPercentCalculator.cs │ ├── StyleAbsorbPercentCalculator.cs │ ├── StyleDamagePercentCalculator.cs │ ├── TOABonusCalculator.cs │ ├── ToHitCalculator.cs │ ├── WaterSpeedCalculator.cs │ ├── WeaponSkillCalculator.cs │ └── XPPointsCalculator.cs ├── quests │ ├── Albion │ │ └── SI │ │ │ └── WildWilderness.cs │ ├── Missions │ │ ├── AbstractMission.cs │ │ ├── CaptureMission.cs │ │ ├── KillMission.cs │ │ ├── RaizeMission.cs │ │ ├── ScoutMission.cs │ │ └── TaskDungeonMission.cs │ ├── QuestsMgr │ │ ├── AbstractQuest.cs │ │ ├── Actions │ │ │ ├── AbortQuestAction.cs │ │ │ ├── FinishQuestAction.cs │ │ │ ├── GiveQuestAction.cs │ │ │ ├── IncreaseQuestStepAction.cs │ │ │ ├── OfferQuestAbortAction.cs │ │ │ ├── OfferQuestAction.cs │ │ │ └── SetQuestStepAction.cs │ │ ├── BaseQuest.cs │ │ ├── DailyQuest.cs │ │ ├── DataQuest.cs │ │ ├── IDataQuestStep.cs │ │ ├── MonthlyQuest.cs │ │ ├── QuestBehaviour.cs │ │ ├── QuestBuilder.cs │ │ ├── QuestMgr.cs │ │ ├── Requirements │ │ │ ├── QuestCompletedRequirement.cs │ │ │ ├── QuestGivableRequirement.cs │ │ │ ├── QuestPendingRequirement.cs │ │ │ └── QuestStepRequirement.cs │ │ ├── RewardQuest.cs │ │ ├── Triggers │ │ │ ├── AbortQuestTrigger.cs │ │ │ ├── AcceptQuestTrigger.cs │ │ │ ├── ContinueQuestTrigger.cs │ │ │ └── DeclineQuestTrigger.cs │ │ ├── Utility │ │ │ └── QuestSearchArea.cs │ │ └── WeeklyQuest.cs │ └── Tasks │ │ ├── AbstractTask.cs │ │ ├── CraftTask.cs │ │ ├── KillTask.cs │ │ └── MoneyTask.cs ├── realmabilities │ ├── Statics │ │ ├── GenericBase.cs │ │ ├── NegativeMaelstromBase.cs │ │ ├── StaticTempestBase.cs │ │ ├── ThornweedFieldBase.cs │ │ ├── TrapBase.cs │ │ ├── VolleyBase.cs │ │ └── WallOfFlameBase.cs │ ├── effects │ │ ├── AdrenalineRushEffect.cs │ │ ├── BarrierOfFortitudeEffect.cs │ │ ├── BedazzlingAuraEffect.cs │ │ ├── ChargeEffect.cs │ │ ├── DashingDefenseEffect.cs │ │ ├── DivineInterventionEffect.cs │ │ ├── JuggernautEffect.cs │ │ ├── MasteryOfConcentrationEffect.cs │ │ ├── RezDmgImmunity.cs │ │ ├── SpeedOfSoundEffect.cs │ │ ├── StrikePredictionEffect.cs │ │ ├── TheEmptyMindEffect.cs │ │ ├── TrueshotEffect.cs │ │ ├── VanishEffect.cs │ │ ├── XAmelioratingMelodiesEffect.cs │ │ ├── XSoldiersBarricadeEffect.cs │ │ └── rr5 │ │ │ ├── AllureofDeadEffect.cs │ │ │ ├── ArmsLengthEffect.cs │ │ │ ├── BadgeOfValorEffect.cs │ │ │ ├── BladeBarrierEffect.cs │ │ │ ├── BlindingDustEffect.cs │ │ │ ├── BlissfulIgnoranceEffect.cs │ │ │ ├── BlooddrinkingEffects.cs │ │ │ ├── BoilingCauldronEffect.cs │ │ │ ├── CallOfDarknessEffect.cs │ │ │ ├── CombatAwarenessEffect.cs │ │ │ ├── DesperateBowmanEffect.cs │ │ │ ├── DreamWeaverEffect.cs │ │ │ ├── EntwiningSnakesEffect.cs │ │ │ ├── FanatacismEffect.cs │ │ │ ├── FerociousWillEffect.cs │ │ │ ├── FungalUnionEffect.cs │ │ │ ├── FuryOfNatureEffect.cs │ │ │ ├── GiftOfPerizorEffect.cs │ │ │ ├── MarkofPreyEffect.cs │ │ │ ├── MinionRescueEffect.cs │ │ │ ├── NaturesWombEffect.cs │ │ │ ├── OverwhelmEffect.cs │ │ │ ├── RemedyEffect.cs │ │ │ ├── RestorativeMindEffect.cs │ │ │ ├── RetributionOfTheFaithfulEffect.cs │ │ │ ├── RuneOfUtterAgilityEffect.cs │ │ │ ├── SearingPetEffect.cs │ │ │ ├── SelectiveBlindnessEffect.cs │ │ │ ├── SelflessDevotionEffect.cs │ │ │ ├── ShadowShroudEffect.cs │ │ │ ├── ShieldOfImmunityEffect.cs │ │ │ ├── ShieldTripEffect.cs │ │ │ ├── SoldiersCitadelEffect.cs │ │ │ ├── SonicBarrierAbility.cs │ │ │ ├── SputinsLegacyEffect.cs │ │ │ ├── TestudoEffect.cs │ │ │ ├── ValhallasBlessingEffect.cs │ │ │ └── WhirlingStaffEffect.cs │ └── handlers │ │ ├── AdrenalineRushAbility.cs │ │ ├── AmelioratingMelodiesAbility.cs │ │ ├── AngerOfTheGodsAbility.cs │ │ ├── ArrowSummoningAbility.cs │ │ ├── AvoidanceOfMagicAbility.cs │ │ ├── BarrierOfFortitudeAbility.cs │ │ ├── BedazzlingAuraAbility.cs │ │ ├── ChargeAbility.cs │ │ ├── ConcentrationAbility.cs │ │ ├── DashingDefenseAbility.cs │ │ ├── DecimationTrap.cs │ │ ├── DeterminationAbility.cs │ │ ├── DivineInterventionAbility.cs │ │ ├── FalconsEyeAbility.cs │ │ ├── IchorOfTheDeepAbility.cs │ │ ├── JuggernautAbility.cs │ │ ├── L3RAPropertyEnhancerAbilities.cs │ │ ├── MasteryOfPain.cs │ │ ├── MasteryOfStealthAbility.cs │ │ ├── MysticCrystalLoreAbility.cs │ │ ├── NegativeMaelstromAbility.cs │ │ ├── PerfectRecoveryAbility.cs │ │ ├── PurgeAbility.cs │ │ ├── RAPropertyEnhancer.cs │ │ ├── RAStatEnhancer.cs │ │ ├── RagingPowerAbility.cs │ │ ├── RealmAbility.cs │ │ ├── SoldiersBarricadeAbility.cs │ │ ├── StaticTempestAbility.cs │ │ ├── StrikePredictionAbility.cs │ │ ├── TheEmptyMindAbility.cs │ │ ├── ThornweedFieldAbility.cs │ │ ├── TrueshotAbility.cs │ │ ├── VanishAbility.cs │ │ ├── VehementRenewalHandler.cs │ │ ├── VeilRecoveryAbility.cs │ │ ├── WildPowerAbility.cs │ │ ├── WrathOfChampionsAbility.cs │ │ ├── XEtherealBondAbility.cs │ │ ├── XFirstAidAbility.cs │ │ ├── XIgnorePainAbility.cs │ │ ├── XLifterAbility.cs │ │ ├── XLongWindAbility.cs │ │ ├── XMasteryOfConcentrationAbility.cs │ │ ├── XSecondWindAbility.cs │ │ ├── XSerenityAbility.cs │ │ ├── XSpeedOfSoundAbility.cs │ │ ├── XToughnessAbility.cs │ │ ├── XVolcanicPillarAbility.cs │ │ ├── XWildMinionAbility.cs │ │ └── rr5 │ │ ├── AllureofDeadAbility.cs │ │ ├── ArmsLengthAbility.cs │ │ ├── BadgeOfValorAbilityHandler.cs │ │ ├── BladeBarrierAbility.cs │ │ ├── BlindingDustAbility.cs │ │ ├── BlissfulIgnoranceAbility.cs │ │ ├── BlooddrinkingAbility.cs │ │ ├── BoilingCauldronAbility.cs │ │ ├── CallOfDarknessAbility.cs │ │ ├── CalmingNotesAbility.cs │ │ ├── ChainBoltSpellHandler.cs │ │ ├── ChainLightningAbilityHandler.cs │ │ ├── CombatAwarenessAbility.cs │ │ ├── DesperateBowmanAbility.cs │ │ ├── DreamWeaverAbility.cs │ │ ├── EntwiningSnakesAbility.cs │ │ ├── EpiphanyAbility.cs │ │ ├── FanatacismAbility.cs │ │ ├── FerociousWillAbility.cs │ │ ├── FungalUnionAbility.cs │ │ ├── FuryOfNatureAbility.cs │ │ ├── GiftOfPerizorAbility.cs │ │ ├── MarkofPreyAbility.cs │ │ ├── MinionRescueAbility.cs │ │ ├── NaturesWombAbility.cs │ │ ├── OverwhelmAbility.cs │ │ ├── RemedyAbility.cs │ │ ├── ResoluteMinion.cs │ │ ├── RestorativeMindAbility.cs │ │ ├── RetributionOfTheFaithfulAbility.cs │ │ ├── RuneOfUtterAgilityAbility.cs │ │ ├── SearingPetAbility.cs │ │ ├── SelectiveBlindnessAbility.cs │ │ ├── SelflessDevotionAbility.cs │ │ ├── ShadowShroudAbility.cs │ │ ├── ShieldOfImmunityAbility.cs │ │ ├── ShieldTripAbility.cs │ │ ├── SoldiersCitadelAbility.cs │ │ ├── SoulQuenchAbility.cs │ │ ├── SpiritMartyrAbility.cs │ │ ├── SputinsLegacyAbility.cs │ │ ├── TestudoAbilty.cs │ │ ├── ValeDefenseAbility.cs │ │ ├── ValhallasBlessingAbility.cs │ │ ├── WallOfFlameAbility.cs │ │ └── WhirlingStaffAbility.cs ├── realmabilities_atlasOF │ ├── AtlasOF_RAHelpers.cs │ ├── Styles │ │ ├── AtlasOF_StyleDoombringer.cs │ │ ├── AtlasOF_StyleRavager.cs │ │ ├── AtlasOF_StyleRazorback.cs │ │ ├── AtlasOF_StyleTundra.cs │ │ ├── AtlasOF_StyleVoid.cs │ │ └── AtlasOF_StyleWinterMoon.cs │ ├── dbhelper │ │ ├── DB_RealmAbilities_Albion.xlsx │ │ ├── DB_RealmAbilities_Hibernia.xlsx │ │ ├── DB_RealmAbilities_Midgard.xlsx │ │ └── DB_RealmAbilities_Scripts.cs │ ├── effects │ │ ├── AtlasOF_AmelioratingMelodiesECSEffect.cs │ │ ├── AtlasOF_BatteryOfLifeECSEffect.cs │ │ ├── AtlasOF_BunkerOfFaithECSEffect.cs │ │ ├── AtlasOF_ForestheartAmbusherECSEffect.cs │ │ ├── AtlasOF_FuryOfTheGodsECSEffect.cs │ │ ├── AtlasOF_HailOfBlowsECSEffect.cs │ │ ├── AtlasOF_IchorECSEffect.cs │ │ ├── AtlasOF_JuggernautECSEffect.cs │ │ ├── AtlasOF_LongshotECSEffect.cs │ │ ├── AtlasOF_MajesticWillECSEffect.cs │ │ ├── AtlasOF_MasteryOfConcentrationECSEffect.cs │ │ ├── AtlasOF_RainOfBaseECSEffect.cs │ │ ├── AtlasOF_ReflexAttackECSEffect.cs │ │ ├── AtlasOF_RuneOfDecimationECSEffect.cs │ │ ├── AtlasOF_ShadowRunECSEffect.cs │ │ ├── AtlasOF_SoldiersBarricadeECSEffect.cs │ │ ├── AtlasOF_SpeedOfSoundECSEffect.cs │ │ ├── AtlasOF_StrikingTheSoulECSEffect.cs │ │ ├── AtlasOF_TrueSightECSEffect.cs │ │ ├── AtlasOF_VanishECSEffect.cs │ │ ├── AtlasOF_ViperECSEffect.cs │ │ ├── AtlasOF_VolleyECSEffect.cs │ │ └── AtlasOF_WhirlingDervishECSEffect.cs │ └── handlers │ │ ├── AtlasOF_AmelioratingMelodies.cs │ │ ├── AtlasOF_ArmorOfFaith.cs │ │ ├── AtlasOF_AvoidPain.cs │ │ ├── AtlasOF_AvoidanceOfMagicAbility.cs │ │ ├── AtlasOF_BatteryOfLife.cs │ │ ├── AtlasOF_BattleYell.cs │ │ ├── AtlasOF_Bladedance.cs │ │ ├── AtlasOF_BrilliantAura.cs │ │ ├── AtlasOF_BunkerOfFaith.cs │ │ ├── AtlasOF_Concentration.cs │ │ ├── AtlasOF_CorporealDisintegration.cs │ │ ├── AtlasOF_DefenderOfTheVale.cs │ │ ├── AtlasOF_DeterminationAbility.cs │ │ ├── AtlasOF_EtherealBondAbility.cs │ │ ├── AtlasOF_ExcitedFrenzy.cs │ │ ├── AtlasOF_FaithHealing.cs │ │ ├── AtlasOF_FirstAid.cs │ │ ├── AtlasOF_ForestheartAmbusher.cs │ │ ├── AtlasOF_FuryOfTheGods.cs │ │ ├── AtlasOF_Grapple.cs │ │ ├── AtlasOF_HailOfBlowsAbility.cs │ │ ├── AtlasOF_Ichor.cs │ │ ├── AtlasOF_IgnorePain.cs │ │ ├── AtlasOF_Juggernaut.cs │ │ ├── AtlasOF_LifterAbility.cs │ │ ├── AtlasOF_LongWindAbility.cs │ │ ├── AtlasOF_Longshot.cs │ │ ├── AtlasOF_MajesticWill.cs │ │ ├── AtlasOF_Masteries.cs │ │ ├── AtlasOF_MasteryOfConcentration.cs │ │ ├── AtlasOF_MysticCrystalLoreAbility.cs │ │ ├── AtlasOF_NegativeMaelstrom.cs │ │ ├── AtlasOF_PerfectRecovery.cs │ │ ├── AtlasOF_PreventFlight.cs │ │ ├── AtlasOF_PurgeAbility.cs │ │ ├── AtlasOF_RACritEnhancer.cs │ │ ├── AtlasOF_RAStatEnhancer.cs │ │ ├── AtlasOF_RagingPower.cs │ │ ├── AtlasOF_RainOfAnnihilationAbility.cs │ │ ├── AtlasOF_RainOfBase.cs │ │ ├── AtlasOF_RainOfFireAbility.cs │ │ ├── AtlasOF_RainOfIceAbility.cs │ │ ├── AtlasOF_ReflexAttackAbility.cs │ │ ├── AtlasOF_Regeneration.cs │ │ ├── AtlasOF_ResilienceOfDeath.cs │ │ ├── AtlasOF_RuneOfDecimation.cs │ │ ├── AtlasOF_SecondWind.cs │ │ ├── AtlasOF_SeeHidden.cs │ │ ├── AtlasOF_SerenityAbility.cs │ │ ├── AtlasOF_ShadowRun.cs │ │ ├── AtlasOF_SiegeBolt.cs │ │ ├── AtlasOF_SoldiersBarricade.cs │ │ ├── AtlasOF_SpeedOfSound.cs │ │ ├── AtlasOF_StaticTempest.cs │ │ ├── AtlasOF_StrikingTheSoul.cs │ │ ├── AtlasOF_TheEmptyMindAbility.cs │ │ ├── AtlasOF_ThornweedField.cs │ │ ├── AtlasOF_ToughnessAbility.cs │ │ ├── AtlasOF_Trip.cs │ │ ├── AtlasOF_TrueSight.cs │ │ ├── AtlasOF_UnquenchableThirst.cs │ │ ├── AtlasOF_Vanish.cs │ │ ├── AtlasOF_VeilRecovery.cs │ │ ├── AtlasOF_Viper.cs │ │ ├── AtlasOF_VolcanicPillar.cs │ │ ├── AtlasOF_Volley.cs │ │ ├── AtlasOF_WhipOfEncouragement.cs │ │ ├── AtlasOF_WhirlingDervish.cs │ │ └── AtlasOF_WrathOfTheChampion.cs ├── relics │ ├── Relic.cs │ ├── RelicGate.cs │ ├── RelicMgr.cs │ ├── RelicPad.cs │ └── RelicPillar.cs ├── scripts │ ├── JumpPoints │ │ ├── DBJumpPoint.cs │ │ └── JPCommand.cs │ ├── commands │ │ ├── SameIP.cs │ │ ├── SetSalvage.cs │ │ ├── SwitchCommandHandler.cs │ │ ├── TransferCorpse.cs │ │ ├── ck.cs │ │ ├── dfowner.cs │ │ ├── dismisspet.cs │ │ ├── realmtask.cs │ │ ├── rent.cs │ │ ├── serverinfo.cs │ │ └── version.cs │ ├── customnpc │ │ ├── AccountVaultKeeper.cs │ │ ├── AtlasTrainer.cs │ │ ├── BuffMerchantEvent.cs │ │ ├── DPSDummy.cs │ │ ├── EffectNPC.cs │ │ ├── HealDummy.cs │ │ ├── HitbackDummy.cs │ │ ├── InstantLevelNPC.cs │ │ ├── InstantRRNPC.cs │ │ ├── ItemModel.cs │ │ ├── LordOfBattle.cs │ │ ├── LordOfBattleTP.cs │ │ ├── LordOfBoss.cs │ │ ├── LordOfBossTP.cs │ │ └── PotionMerchant.cs │ ├── dbupdater │ │ ├── AutoXMLDatabaseUpdate.cs │ │ ├── AutoXMLUpdateTable.cs │ │ ├── GuildAndAllianceUpdate.cs │ │ ├── LanguageSystemUpdate.cs │ │ ├── LoaderUnloaderXML.cs │ │ ├── SalvageYieldsUpdate.cs │ │ ├── ServerPropertiesUpdate.cs │ │ ├── UnloadXMLCommandHandler.cs │ │ └── insert │ │ │ ├── Regions.xml │ │ │ ├── StartupLocation.xml │ │ │ └── Zones.xml │ ├── discord │ │ └── WebhookMessage.cs │ ├── gameevents │ │ ├── PlayerEnterExit.cs │ │ ├── StartupGuilds.cs │ │ ├── StartupLocations.cs │ │ ├── TutorialJumpPointHandler.cs │ │ └── UniqueItemLootGenerator.cs │ ├── mobs │ │ ├── AlbionMobs │ │ │ ├── Alluvian.cs │ │ │ ├── AlluvianGlobule.cs │ │ │ ├── AmminusPilus.cs │ │ │ ├── Anilius.cs │ │ │ ├── Cronker.cs │ │ │ ├── CrusadersAntithesis.cs │ │ │ ├── Dooben.cs │ │ │ ├── Eques.cs │ │ │ ├── Erisus.cs │ │ │ ├── HighPriestAndania.cs │ │ │ ├── Jari.cs │ │ │ ├── PilusFury.cs │ │ │ ├── PygmyGoblinTangler.cs │ │ │ ├── SgtCosworth.cs │ │ │ ├── SgtGerenth.cs │ │ │ ├── Throatripper.cs │ │ │ ├── UnnaturalStorm.cs │ │ │ ├── UrchinAmbusher.cs │ │ │ ├── Vagdush.cs │ │ │ ├── VetustaAbbeyBell.cs │ │ │ └── WaterSpiderGleek.cs │ │ ├── Alina.cs │ │ ├── BotonidSeedling.cs │ │ ├── Changeling.cs │ │ ├── DaySpawn.cs │ │ ├── HiberniaMobs │ │ │ ├── Bertha.cs │ │ │ ├── Blacthorns.cs │ │ │ ├── Daewain.cs │ │ │ ├── DramacusAndYadda.cs │ │ │ ├── FallenOne.cs │ │ │ ├── Ick.cs │ │ │ ├── KoalinthCastellan.cs │ │ │ ├── KoalinthElder.cs │ │ │ ├── Morty.cs │ │ │ ├── ParthananFarm.cs │ │ │ ├── QuillanMuire.cs │ │ │ ├── RockyGolem.cs │ │ │ ├── Ruckus.cs │ │ │ ├── Spriggit.cs │ │ │ ├── Tabor.cs │ │ │ └── WatcherRylie.cs │ │ ├── MidgardMobs │ │ │ ├── GiantLemer.cs │ │ │ ├── HrimthursaIcetouch.cs │ │ │ ├── Njessi.cs │ │ │ ├── QueenMajor.cs │ │ │ ├── ScoutArgyle.cs │ │ │ ├── Snarls.cs │ │ │ ├── Steinolf.cs │ │ │ ├── Stripe.cs │ │ │ └── Zrit-Zrit.cs │ │ ├── Myling.cs │ │ ├── NightSpawn.cs │ │ ├── RainbowSprites.cs │ │ ├── SINeckBossNPC.cs │ │ ├── ShiveringPresence.cs │ │ ├── StealtherMob.cs │ │ ├── Strangler.cs │ │ └── custom │ │ │ ├── BPMob.cs │ │ │ ├── BPMobHigh.cs │ │ │ ├── BPPortMob.cs │ │ │ ├── HPMob.cs │ │ │ └── SplitMob.cs │ ├── namedmobs │ │ ├── Albion Named Mobs │ │ │ ├── Classic Zones │ │ │ │ ├── CailleachUragaig.cs │ │ │ │ ├── Fester.cs │ │ │ │ ├── KingOfTheBarfogHills.cs │ │ │ │ ├── LegendaryAfanc.cs │ │ │ │ ├── MorganaBechardSilcharde.cs │ │ │ │ ├── Mouth.cs │ │ │ │ ├── SisterBlythe.cs │ │ │ │ ├── Teazanodwc.cs │ │ │ │ └── WrathOfMordred.cs │ │ │ └── Shrouded Isles │ │ │ │ ├── Amphiptere.cs │ │ │ │ ├── Colialt.cs │ │ │ │ ├── Durval.cs │ │ │ │ ├── QanrisDuros.cs │ │ │ │ ├── RisnirCruss.cs │ │ │ │ ├── Sarcondina.cs │ │ │ │ ├── SpiritOfLordEmthoro.cs │ │ │ │ ├── ValnirMordeth.cs │ │ │ │ └── Vortanos.cs │ │ ├── Archilus.cs │ │ ├── AvalonCity │ │ │ ├── CrystalCave │ │ │ │ └── Xanxicar.cs │ │ │ ├── DraargusMighty.cs │ │ │ ├── DuraekEmpowered.cs │ │ │ ├── SyssroTheRuthless.cs │ │ │ ├── VeraeriusBrave.cs │ │ │ └── WenoiakEnlightened.cs │ │ ├── BrotherDon.cs │ │ ├── CaerSidi │ │ │ ├── ApocalypseAnd4Horsemans .cs │ │ │ ├── BaneOfHope.cs │ │ │ ├── CryptLord.cs │ │ │ ├── FateChosen.cs │ │ │ ├── Host.cs │ │ │ ├── LichLordIlron.cs │ │ │ ├── LordSanguis.cs │ │ │ ├── Silencer.cs │ │ │ ├── SkeletalSacristan.cs │ │ │ ├── SoulReckoner.cs │ │ │ ├── SpectralProvisioner.cs │ │ │ └── WarlordDorinakka.cs │ │ ├── DarknessFalls │ │ │ ├── Beliathan.cs │ │ │ ├── HighLordBaelerdoth.cs │ │ │ ├── HighLordBaln.cs │ │ │ ├── HighLordOro.cs │ │ │ ├── HighLordSaeor.cs │ │ │ ├── Legion.cs │ │ │ ├── PrinceAbdin.cs │ │ │ ├── PrinceAsmoien.cs │ │ │ ├── PrinceBaalorien.cs │ │ │ └── PrincessNahemah.cs │ │ ├── Dodens │ │ │ ├── AI │ │ │ │ └── ArosBrain │ │ │ │ │ ├── ArosBrain.cs │ │ │ │ │ └── ArosState.cs │ │ │ ├── ArosTheSpiritmaster.cs │ │ │ ├── GameEpicAros.cs │ │ │ ├── Gudlaugr.cs │ │ │ ├── Hamar.cs │ │ │ ├── JarlOrmarr.cs │ │ │ ├── MinstressofRunes.cs │ │ │ ├── MistressOfRunes.cs │ │ │ ├── SpiritmasterAros.cs │ │ │ └── ThaneDyggve.cs │ │ ├── Dragons │ │ │ ├── AlbGolestandt.cs │ │ │ ├── HibCuuldurach.cs │ │ │ └── MidGjalpinulva.cs │ │ ├── ElroTheAncient.cs │ │ ├── Evern.cs │ │ ├── Fomor │ │ │ ├── Anurigunda.cs │ │ │ ├── Krackenschtein.cs │ │ │ ├── Myrddraxis.cs │ │ │ └── Nogoribando.cs │ │ ├── Galladoria │ │ │ ├── Aroon.cs │ │ │ ├── Conservator.cs │ │ │ ├── Easmarach.cs │ │ │ ├── EyesWatchingYou.cs │ │ │ ├── GiantSporiteCluster.cs │ │ │ ├── Hurionthex.cs │ │ │ ├── Olcasar Geomancer.cs │ │ │ ├── OlcasgeanAndPrimals.cs │ │ │ ├── Organic-EnergyMechanism.cs │ │ │ ├── SpindlerBroodmother.cs │ │ │ ├── UaimhLairmaster.cs │ │ │ └── Xaga.cs │ │ ├── GlacierGiant.cs │ │ ├── Gnat.cs │ │ ├── HallOfTheCorrupt │ │ │ ├── AidonTheArchwizard.cs │ │ │ ├── CaptainAtwell.cs │ │ │ ├── CaptainBardalph.cs │ │ │ ├── CaptainHeathyr.cs │ │ │ ├── LadyDarra.cs │ │ │ ├── LieutenantElva.cs │ │ │ ├── LieutenantMeade.cs │ │ │ ├── LieutenantSaxe.cs │ │ │ ├── LordGildas.cs │ │ │ ├── SergeantDarryn.cs │ │ │ ├── SergeantEddison.cs │ │ │ └── SergeantReede.cs │ │ ├── Hibernia Named Mobs │ │ │ ├── Classic Zones │ │ │ │ ├── Badb.cs │ │ │ │ ├── Blight.cs │ │ │ │ ├── Cailean.cs │ │ │ │ ├── Caithor.cs │ │ │ │ ├── Develin.cs │ │ │ │ ├── Flame.cs │ │ │ │ ├── GreenMaw.cs │ │ │ │ ├── Juggernaut.cs │ │ │ │ ├── MelancholicFairyQueen.cs │ │ │ │ ├── Orey-eyedOghamist.cs │ │ │ │ ├── QueenCliodna.cs │ │ │ │ ├── Skeaghshee.cs │ │ │ │ ├── UafasCapall.cs │ │ │ │ └── WyvernicWraith.cs │ │ │ └── Shrouded Isles │ │ │ │ ├── Balere.cs │ │ │ │ ├── Cronwort.cs │ │ │ │ ├── Curengkur.cs │ │ │ │ ├── DremcisFuiloltair.cs │ │ │ │ ├── Gneiss.cs │ │ │ │ ├── KontarCorrupt.cs │ │ │ │ ├── Marfoirwort.cs │ │ │ │ ├── Mollunero.cs │ │ │ │ └── Zytka.cs │ │ ├── IarnvidiurLair │ │ │ ├── AncientSyver.cs │ │ │ ├── Delegalt.cs │ │ │ ├── Droom.cs │ │ │ ├── Dyranapur.cs │ │ │ ├── Hati.cs │ │ │ ├── Hurjavelen.cs │ │ │ ├── Iarnvidiur.cs │ │ │ ├── Lydsyg.cs │ │ │ ├── Mahattava.cs │ │ │ ├── Skoll.cs │ │ │ └── Stanga.cs │ │ ├── Krondon │ │ │ ├── BeranSupplyMaster.cs │ │ │ ├── DebenSeGecynde.cs │ │ │ ├── DrihtenElreden.cs │ │ │ ├── Fuladl.cs │ │ │ ├── Fulafeallan.cs │ │ │ ├── KrevoRicik .cs │ │ │ ├── LurfosHerald.cs │ │ │ ├── MorgusUrgalorg .cs │ │ │ ├── OrylleAndOrshom.cs │ │ │ ├── ScurceolHyrde.cs │ │ │ └── UlorAndJehrogSeBysen.cs │ │ ├── MaldaharTheGlimmerPrince.cs │ │ ├── MarfachCaverns │ │ │ ├── AncientBlackOak.cs │ │ │ ├── AvartackTheChampion.cs │ │ │ ├── BlackLady.cs │ │ │ ├── BlueLady.cs │ │ │ ├── ChieftainCaimheul.cs │ │ │ └── RedLady.cs │ │ ├── Midgard Named Mobs │ │ │ ├── Classic Zones │ │ │ │ ├── Hugi.cs │ │ │ │ ├── Kelic.cs │ │ │ │ ├── Loken.cs │ │ │ │ ├── Mokkurvalve.cs │ │ │ │ ├── Oona.cs │ │ │ │ ├── RaumarikRevenant.cs │ │ │ │ ├── Runil.cs │ │ │ │ ├── Ulfketill.cs │ │ │ │ ├── WretchOfWinter.cs │ │ │ │ └── Ydenia.cs │ │ │ └── Shrouded Isles │ │ │ │ ├── Basilius.cs │ │ │ │ ├── Boligar.cs │ │ │ │ ├── ChiefTarek.cs │ │ │ │ ├── Cronk.cs │ │ │ │ ├── Dalgo.cs │ │ │ │ ├── Goretooth.cs │ │ │ │ ├── Mortufoghus.cs │ │ │ │ ├── Shredclaw.cs │ │ │ │ ├── Valmak.cs │ │ │ │ └── Vasrem.cs │ │ ├── MoranTheMighty.cs │ │ ├── OFGreenKnight.cs │ │ ├── SummonersHall │ │ │ ├── GrandSummonerGovannon.cs │ │ │ ├── SummonerCunovinda.cs │ │ │ ├── SummonerLossren.cs │ │ │ └── SummonerRoesia.cs │ │ ├── Trollheim │ │ │ ├── Dagar.cs │ │ │ ├── FostraOrm.cs │ │ │ ├── Nosdoden.cs │ │ │ ├── Rift.cs │ │ │ └── Rotoddjur.cs │ │ ├── TurSuil │ │ │ ├── AbomosSoultrapper.cs │ │ │ ├── Balor.cs │ │ │ ├── KieracDestroyerAndMasterOfPain.cs │ │ │ ├── NorsobAndSargan.cs │ │ │ └── QueenQunilaria.cs │ │ ├── TuscarianGlacier │ │ │ ├── CouncilOtrygg.cs │ │ │ ├── CouncilVagnAndNokkvi.cs │ │ │ ├── ElderCouncilBirghirAndGuthlac.cs │ │ │ ├── ElderIcelordHjalmarAndSuttung.cs │ │ │ ├── FallingIce.cs │ │ │ ├── Fornfrusonen.cs │ │ │ ├── Hord.cs │ │ │ ├── IcelordAgmundr.cs │ │ │ ├── IcelordHakr.cs │ │ │ ├── IcelordKvasir.cs │ │ │ ├── IcelordSteinvorAndSkuf .cs │ │ │ ├── Issorden.cs │ │ │ ├── JailerVifil.cs │ │ │ ├── KingTuscarAndQueenKula.cs │ │ │ ├── Ozur.cs │ │ │ └── TorstAndHurika.cs │ │ └── Yar.cs │ ├── quests │ │ ├── Albion │ │ │ ├── ImmediateResolutionVB.cs │ │ │ ├── WolfPeltCloak.cs │ │ │ ├── epic │ │ │ │ ├── Academy50.cs │ │ │ │ ├── Church50.cs │ │ │ │ ├── Defenders50.cs │ │ │ │ └── Shadows50.cs │ │ │ └── shrouded isles │ │ │ │ └── LostStoneOfArawn.cs │ │ ├── AtlasQuests │ │ │ ├── DailyQuests │ │ │ │ ├── Albion │ │ │ │ │ ├── Frontier │ │ │ │ │ │ ├── Daily │ │ │ │ │ │ │ ├── CaptureKeepQuestAlb.cs │ │ │ │ │ │ │ └── KillNPCInFrontiersAlb.cs │ │ │ │ │ │ ├── Monthly │ │ │ │ │ │ │ ├── CaptureRelicQuestAlb.cs │ │ │ │ │ │ │ └── FrontiersMonthlyQuestAlb.cs │ │ │ │ │ │ └── Weekly │ │ │ │ │ │ │ ├── DFMobKillQuestAlb.cs │ │ │ │ │ │ │ └── EpicRvRMobsWeeklyQuestAlb.cs │ │ │ │ │ ├── Hardcore │ │ │ │ │ │ ├── HardcoreKillAPlayerAlb.cs │ │ │ │ │ │ ├── HardcoreKillNPCInFrontiersAlb.cs │ │ │ │ │ │ └── HardcoreKillOrangesAlb.cs │ │ │ │ │ ├── PvE │ │ │ │ │ │ ├── Daily │ │ │ │ │ │ │ ├── DanaoinKillQuestAlb.cs │ │ │ │ │ │ │ ├── SidiMobQuestAlb.cs │ │ │ │ │ │ │ └── TeamBuildingAlb.cs │ │ │ │ │ │ ├── Monthly │ │ │ │ │ │ │ └── MonthlyEpicPvEQuestAlb.cs │ │ │ │ │ │ └── Weekly │ │ │ │ │ │ │ ├── DragonWeeklyQuestAlb.cs │ │ │ │ │ │ │ └── SidiBossQuestAlb.cs │ │ │ │ │ └── RvR │ │ │ │ │ │ ├── Daily │ │ │ │ │ │ ├── EveryLittleBitHelpsQuestAlb.cs │ │ │ │ │ │ └── PlayerKillQuestAlb.cs │ │ │ │ │ │ └── Weekly │ │ │ │ │ │ ├── DFWeeklyKillQuestAlb.cs │ │ │ │ │ │ ├── ForTheRealmQuestAlb.cs │ │ │ │ │ │ └── PlayerKillWeeklyQuestAlb.cs │ │ │ │ ├── Hibernia │ │ │ │ │ ├── Frontier │ │ │ │ │ │ ├── Daily │ │ │ │ │ │ │ ├── CaptureKeepQuestHib.cs │ │ │ │ │ │ │ └── KillNPCInFrontiersHib.cs │ │ │ │ │ │ ├── Monthly │ │ │ │ │ │ │ ├── CaptureRelicQuestHib.cs │ │ │ │ │ │ │ └── FrontiersMonthlyQuestHib.cs │ │ │ │ │ │ └── Weekly │ │ │ │ │ │ │ ├── DFMobKillQuestHib.cs │ │ │ │ │ │ │ └── EpicRvRMobsWeeklyQuestHib.cs │ │ │ │ │ ├── Hardcore │ │ │ │ │ │ └── Daily │ │ │ │ │ │ │ ├── HardcoreKillAPlayerHib.cs │ │ │ │ │ │ │ ├── HardcoreKillNPCInFrontiersHib.cs │ │ │ │ │ │ │ └── HardcoreKillOrangesHib.cs │ │ │ │ │ ├── PvE │ │ │ │ │ │ ├── Daily │ │ │ │ │ │ │ ├── GallaMobQuestHib.cs │ │ │ │ │ │ │ ├── OctonidKillQuestHib.cs │ │ │ │ │ │ │ └── TeamBuildingHib.cs │ │ │ │ │ │ ├── Monthly │ │ │ │ │ │ │ └── MonthlyEpicPvEQuestHib.cs │ │ │ │ │ │ └── Weekly │ │ │ │ │ │ │ ├── DragonWeeklyQuestHib.cs │ │ │ │ │ │ │ └── GalladoriaBossQuestHib.cs │ │ │ │ │ └── RvR │ │ │ │ │ │ ├── Daily │ │ │ │ │ │ ├── EveryLittleBitHelpsQuestHib.cs │ │ │ │ │ │ └── PlayerKillQuestHib.cs │ │ │ │ │ │ └── Weekly │ │ │ │ │ │ ├── DFWeeklyKillQuestHib.cs │ │ │ │ │ │ ├── ForTheRealmQuestHib.cs │ │ │ │ │ │ └── PlayerKillWeeklyQuestHib.cs │ │ │ │ └── Midgard │ │ │ │ │ ├── Frontier │ │ │ │ │ ├── Daily │ │ │ │ │ │ ├── CaptureKeepQuestMid.cs │ │ │ │ │ │ └── KillNPCInFrontiersMid.cs │ │ │ │ │ ├── Monthly │ │ │ │ │ │ ├── CaptureRelicQuestMid.cs │ │ │ │ │ │ └── FrontiersMonthlyQuestMid.cs │ │ │ │ │ └── Weekly │ │ │ │ │ │ ├── DFMobKillQuestMid.cs │ │ │ │ │ │ └── EpicRvRMobsWeeklyQuestMid.cs │ │ │ │ │ ├── Hardcore │ │ │ │ │ ├── HardcoreKillAPlayerMid.cs │ │ │ │ │ ├── HardcoreKillNPCInFrontiersMid.cs │ │ │ │ │ └── HardcoreKillOrangesMid.cs │ │ │ │ │ ├── PvE │ │ │ │ │ ├── Daily │ │ │ │ │ │ ├── MegalocerosKillQuestMid.cs │ │ │ │ │ │ ├── TeamBuildingMid.cs │ │ │ │ │ │ └── TuscarianMobQuestMid.cs │ │ │ │ │ ├── Monthly │ │ │ │ │ │ └── MonthlyEpicPvEQuestMid.cs │ │ │ │ │ └── Weekly │ │ │ │ │ │ ├── DragonWeeklyQuestMid.cs │ │ │ │ │ │ └── TuscarianBossQuestMid.cs │ │ │ │ │ └── RvR │ │ │ │ │ ├── Daily │ │ │ │ │ ├── EveryLittleBitHelpsQuestMid.cs │ │ │ │ │ └── PlayerKillQuestMid.cs │ │ │ │ │ └── Weekly │ │ │ │ │ ├── DFWeeklyKillQuestMid.cs │ │ │ │ │ ├── ForTheRealmQuestMid.cs │ │ │ │ │ └── PlayerKillWeeklyQuestMid.cs │ │ │ ├── HelpSirLukas.cs │ │ │ ├── PlayTheLastSong.cs │ │ │ └── PowerOfNature.cs │ │ ├── BattlegroundQuests │ │ │ ├── Caledonia │ │ │ │ ├── CaleKeepCaptureAlb.cs │ │ │ │ ├── CaleKeepCaptureHib.cs │ │ │ │ ├── CaleKeepCaptureMid.cs │ │ │ │ ├── CaleKillQuestAlb.cs │ │ │ │ ├── CaleKillQuestHib.cs │ │ │ │ └── CaleKillQuestMid.cs │ │ │ └── Thidranki │ │ │ │ ├── ThidKeepCaptureAlb.cs │ │ │ │ ├── ThidKeepCaptureHib.cs │ │ │ │ ├── ThidKeepCaptureMid.cs │ │ │ │ ├── ThidKillQuestAlb.cs │ │ │ │ ├── ThidKillQuestHib.cs │ │ │ │ └── ThidKillQuestMid.cs │ │ ├── Hibernia │ │ │ ├── epic │ │ │ │ ├── Essence50.cs │ │ │ │ ├── Focus50.cs │ │ │ │ └── Harmony50.cs │ │ │ └── shrouded isles │ │ │ │ └── TheLostSeed.cs │ │ └── Midgard │ │ │ ├── epic │ │ │ ├── MidgardRogue50.cs │ │ │ ├── Mystic50.cs │ │ │ ├── Seer50.cs │ │ │ └── Viking50.cs │ │ │ └── shrouded isles │ │ │ └── AncestralSecrets.cs │ ├── siege │ │ ├── SummonSiegeBallista.cs │ │ ├── SummonSiegeCatapult.cs │ │ ├── SummonSiegeRam.cs │ │ └── SummonSiegeTrebuchet.cs │ ├── spells │ │ └── CureNearsightCustom.cs │ ├── startup │ │ ├── dataobject │ │ │ ├── StarterEquipment.cs │ │ │ └── StartupLocation.cs │ │ └── script │ │ │ ├── CharacterCreationCraft.cs │ │ │ ├── CharacterCreationSettings.cs │ │ │ ├── LevelUpRespec.cs │ │ │ ├── StartAsBaseClass.cs │ │ │ └── StartupEquipment.cs │ ├── system │ │ ├── Online.cs │ │ ├── Vote.cs │ │ ├── ngg.cs │ │ ├── servernews.cs │ │ ├── stats.php │ │ └── xmob.cs │ ├── teleporters │ │ ├── BGTeleporter.cs │ │ ├── EpicTeleporter.cs │ │ ├── InlandTeleporter.cs │ │ ├── LiveTeleporter.cs │ │ ├── OFMerchant.cs │ │ └── OFTeleporters.cs │ ├── titles │ │ ├── GenericEventPlayerTitle.cs │ │ ├── PrivilegedTitle.cs │ │ ├── PvEKillsTitle.cs │ │ ├── PvPKillsTitle.cs │ │ ├── RealmKeepTitle.cs │ │ ├── RealmRanksTitle.cs │ │ └── TimeBasedTitle.cs │ └── web │ │ ├── OnlineStatusUpdate.cs │ │ ├── WebUIGenerator.cs │ │ └── XMLWebUIGenerator.cs ├── serverproperty │ ├── ServerProperties.cs │ └── ServerPropertyAttribute.cs ├── serverrules │ ├── AbstractServerRules.cs │ ├── AdventureWingJumpPoint.cs │ ├── DFEnterJumpPoint.cs │ ├── DemonsBreachJumpPoint.cs │ ├── IJumpPointHandler.cs │ ├── IServerRules.cs │ ├── InstanceDoorJumpPoint.cs │ ├── NormalServerRules.cs │ ├── PvEServerRules.cs │ ├── PvPServerRules.cs │ ├── ServerRulesAttribute.cs │ └── TaskDungeonJumpPoint.cs ├── skillhandler │ ├── BerserkAbilityHandler.cs │ ├── BodyguardAbilityHandler.cs │ ├── BolsteringRoarAbilityHandler.cs │ ├── CamouflageSpecHandler.cs │ ├── Climbing.cs │ ├── CriticalShotAbilityHandler.cs │ ├── DirtyTricksAbilityHandler.cs │ ├── DistractionAbilityHandler.cs │ ├── EngageAbilityHandler.cs │ ├── FlurryAbilityHandler.cs │ ├── FuryAbilityHandler.cs │ ├── GuardAbilityHandler.cs │ ├── InterceptAbilityHandler.cs │ ├── LevelBasedStatChangingAbility.cs │ ├── MemoriesOfWar.cs │ ├── MetalGuardAbilityHandler.cs │ ├── PropertyChangingAbility.cs │ ├── ProtectAbilityHandler.cs │ ├── QuickCastAbilityHandler.cs │ ├── RampageAbilityHandler.cs │ ├── RapidFireAbilityHandler.cs │ ├── ScarsOfBattle.cs │ ├── SpellCastingAbilityHandler.cs │ ├── SprintAbilityHandler.cs │ ├── StagAbilityHandler.cs │ ├── StatChangingAbility.cs │ ├── StealthSpecHandler.cs │ ├── StealthersAbilitiesHandler.cs │ ├── SureShotAbilityHandler.cs │ ├── TauntingShoutAbilityHandler.cs │ ├── TripleWieldAbilityHandler.cs │ ├── VampiirAbilities.cs │ └── VampiirBoltAbilityHandler.cs ├── spells │ ├── AblativeArmorSpellHandler.cs │ ├── AfHitsBuff.cs │ ├── AllRegenBuff.cs │ ├── AllStatsBuff.cs │ ├── AmnesiaSpellHandler.cs │ ├── Animist │ │ ├── BomberSpellHandler.cs │ │ ├── PetPBAoE.cs │ │ ├── SummonAnimistAmbusher.cs │ │ ├── SummonAnimistFnF.cs │ │ ├── SummonAnimistMainPet.cs │ │ ├── SummonAnimistPet.cs │ │ └── TurretSpellHandler.cs │ ├── Archery │ │ ├── Archery.cs │ │ ├── ArcheryDoT.cs │ │ ├── Arrow.cs │ │ ├── ArrowDamageTypes.cs │ │ └── SiegeShot.cs │ ├── Artifacts │ │ ├── AllStatsDebuff.cs │ │ ├── AllStatsPercentDebuff.cs │ │ ├── AlvarusLeggings.cs │ │ ├── Arrogance.cs │ │ ├── AtensShield.cs │ │ ├── AtlantisTablet.cs │ │ ├── BandofStars.cs │ │ ├── Belt of Moon.cs │ │ ├── Belt of Sun.cs │ │ ├── CeremonialBracer.cs │ │ ├── Cloudsong.cs │ │ ├── CommonArtifactSpells.cs │ │ ├── CrownOfZahur.cs │ │ ├── DreamSphere.cs │ │ ├── Ereine.cs │ │ ├── Eternal Plant.cs │ │ ├── Flask.cs │ │ ├── GoldenSpearJavelin.cs │ │ ├── HarpyFeatherCloak.cs │ │ ├── HpPwrEndRegen.cs │ │ ├── MaddeningScalars.cs │ │ ├── RealmLore.cs │ │ ├── ScarabVest.cs │ │ ├── ShadesOfMist.cs │ │ ├── SnakeCharmersWeapon.cs │ │ ├── StyleDmgAbs.cs │ │ ├── TartarosGift.cs │ │ ├── TraitorsDagger.cs │ │ ├── Traldor.cs │ │ └── bracerofzo.cs │ ├── AstralPetSummon.cs │ ├── Bainshee │ │ ├── BainsheePulseDmgSpellHandler.cs │ │ └── RangeShield.cs │ ├── BladeturnSpellHandler.cs │ ├── BolsteringRoarSpellHandler.cs │ ├── BoltSpellHandler.cs │ ├── Bonedancer │ │ ├── SummonCommanderPet.cs │ │ └── SummonMinionHandler.cs │ ├── BuffShear.cs │ ├── CCSpellHandler.cs │ ├── Cabalist │ │ ├── SummonJuggernaut.cs │ │ └── SummonSimulacrum.cs │ ├── CharmSpellHandler.cs │ ├── Climbing.cs │ ├── CombatHealSpellHandler.cs │ ├── CommonAstralSpells.cs │ ├── ConcentrationList.cs │ ├── ConfusionSpellHandler.cs │ ├── Conversion.cs │ ├── ConvertPet.cs │ ├── CostumeSpellHandler.cs │ ├── CureAllSpellHandler.cs │ ├── CureDiseaseSpellHandler.cs │ ├── CureNearsight.cs │ ├── CurePoisonSpellHandler.cs │ ├── Curemezz.cs │ ├── DamageAddAndShield.cs │ ├── DamageReductionPowerReturn.cs │ ├── DamageSpeedDecrease.cs │ ├── DamageToPowerSpellHandler.cs │ ├── DirectDamageDebuffSpellHandler.cs │ ├── DirectDamageSpellHandler.cs │ ├── DisarmSpellHandler.cs │ ├── DiseaseSpellHandler.cs │ ├── DoTSpellHandler.cs │ ├── DoomHammer.cs │ ├── Druid │ │ └── SummonDruidPet.cs │ ├── DualStatBuff.cs │ ├── DualStatDebuff.cs │ ├── Enchanter │ │ └── SummonUnderhill.cs │ ├── EnduranceDrainSpellHandler.cs │ ├── EnduranceHealSpellHandler.cs │ ├── FacilisSpellHandler.cs │ ├── FocusShellHandler.cs │ ├── Fury.cs │ ├── HealSpellHandler.cs │ ├── HealthToFatigue.cs │ ├── Heretic │ │ ├── HereticDamageSpeedDecrease.cs │ │ ├── HereticDoTSpellHandler.cs │ │ ├── HereticPiercingMagic.cs │ │ ├── HereticSpeedDecrease.cs │ │ └── MonsterRez.cs │ ├── HoTSpellHandler.cs │ ├── Hunter │ │ └── SummonHunterPet.cs │ ├── ISpellHandler.cs │ ├── IllnessSpellHandler.cs │ ├── ImmunityEffectSpellHandler.cs │ ├── LifeTransferSpellHandler.cs │ ├── LifedrainSpellHandler.cs │ ├── LongRange.cs │ ├── Masterlevel │ │ ├── Banelord.cs │ │ ├── Battlemaster.cs │ │ ├── Convoker.cs │ │ ├── MasterLevelBase.cs │ │ ├── Perfecter.cs │ │ ├── Sojourner.cs │ │ ├── Spymaster.cs │ │ ├── Stormlord.cs │ │ └── Warlord.cs │ ├── MetalGuardSpellHandler.cs │ ├── NaturesShield.cs │ ├── NearsightSpellHandler.cs │ ├── Necromancer │ │ ├── FacilitatePainworking.cs │ │ ├── PetSpellHandler.cs │ │ ├── PowerDrain.cs │ │ ├── PowerTransfer.cs │ │ └── SummonNecromancerPet.cs │ ├── NightShade │ │ └── NightshadeNukeSpellhandler.cs │ ├── NoVarianceSpells.cs │ ├── OmniLifedrainSpellHandler.cs │ ├── PetLifedrainSpellHandler.cs │ ├── PetMesmerizeSpellHandler.cs │ ├── PiercingMagicSpellHandler.cs │ ├── PowerDrain.cs │ ├── PowerHealSpellHandler.cs │ ├── PowerTransfer.cs │ ├── PreventFlight.cs │ ├── ProcSpellHandler.cs │ ├── PropertyChangingSpell.cs │ ├── RampageSpellHandler.cs │ ├── RampingDamageFocus.cs │ ├── RegenBuff.cs │ ├── RemoveSpellEffectHandler.cs │ ├── ResistBuff.cs │ ├── ResistDebuff.cs │ ├── ResurrectSpellHandler.cs │ ├── RvRSicknessSpellHandler.cs │ ├── Savage │ │ ├── MultiTarget.cs │ │ ├── SavageBuff.cs │ │ └── SavageEnduranceHeal.cs │ ├── SiegeDirectDamageSpellHandler.cs │ ├── SilenceSpellHandler.cs │ ├── SingleStatBuff.cs │ ├── SingleStatDebuff.cs │ ├── SpeedDecreaseSpellHandler.cs │ ├── SpeedEnhancementSpellHandler.cs │ ├── SpeedOfTheRealmHandler.cs │ ├── Spell.cs │ ├── SpellDelve.cs │ ├── SpellHandler.cs │ ├── SpellHandlerAttribute.cs │ ├── Spiritmaster │ │ └── SummonSpiritFighter.cs │ ├── SpreadhealSpellHandler.cs │ ├── Stealthers │ │ └── StealthersHandlers.cs │ ├── StyleBleeding.cs │ ├── StyleCombatSpeedDebuff.cs │ ├── StyleHandler.cs │ ├── StylePowerDrain.cs │ ├── StyleSpeedDecrease.cs │ ├── StyleStun.cs │ ├── StyleTaunt.cs │ ├── SummonIllusionBlade.cs │ ├── SummonNoveltyPet.cs │ ├── SummonSpellHandler.cs │ ├── TauntSpellHandler.cs │ ├── Teleport │ │ ├── GatewayPersonalBind.cs │ │ └── UniPortal.cs │ ├── Theurgist │ │ └── SummonTheurgistPet.cs │ ├── UnbreakableSpeedDecreaseSpellHandler.cs │ ├── Valkyrie │ │ ├── FrontalAOEConeHandler.cs │ │ ├── PowerRendSpellHandler.cs │ │ └── ValkyrieProc.cs │ ├── Vampiir │ │ ├── VampArmorDebuff.cs │ │ ├── VampMagicalStrike.cs │ │ ├── VampMaintainedSpeedDecrease.cs │ │ ├── VampiirEffectivenessDeBuff.cs │ │ ├── VampiirPowerBolt.cs │ │ ├── VampiirResistBuff.cs │ │ ├── VampiirSkillBonusDeBuff.cs │ │ └── VampiirStealthDetection.cs │ ├── Warlock │ │ ├── ChamberSpellHandler.cs │ │ ├── PowerlessSpellHandler.cs │ │ ├── PrimerSpellHandler.cs │ │ ├── RangeSpellHandler.cs │ │ ├── UninterruptableSpellHandler.cs │ │ └── WarlockSpeedDecreaseSpellHandler.cs │ ├── WaterBreathingSpellHandler.cs │ └── negative │ │ ├── BeFriendSpellHandler.cs │ │ ├── FearBrain.cs │ │ ├── FearSpellHandler.cs │ │ └── FriendBrain.cs ├── styles │ ├── Style.cs │ └── StyleProcessor.cs ├── trainer │ ├── albion │ │ ├── AcolyteTrainer.cs │ │ ├── AlbionMaulerTrainer.cs │ │ ├── AlbionRogueTrainer.cs │ │ ├── ArmsmanTrainer.cs │ │ ├── CabalistTrainer.cs │ │ ├── ClericTrainer.cs │ │ ├── DiscipleTrainer.cs │ │ ├── ElementalistTrainer.cs │ │ ├── FighterTrainer.cs │ │ ├── FriarTrainer.cs │ │ ├── HereticTrainer.cs │ │ ├── InfiltratorTrainer.cs │ │ ├── MageTrainer.cs │ │ ├── MercenaryTrainer.cs │ │ ├── MinstrelTrainer.cs │ │ ├── NecromancerTrainer.cs │ │ ├── PaladinTrainer.cs │ │ ├── ReaverTrainer.cs │ │ ├── ScoutTrainer.cs │ │ ├── SorcererTrainer.cs │ │ ├── TheurgistTrainer.cs │ │ └── WizardTrainer.cs │ ├── hibernia │ │ ├── AnimistTrainer.cs │ │ ├── BainsheeTrainer.cs │ │ ├── BardTrainer.cs │ │ ├── BlademasterTrainer.cs │ │ ├── ChampionTrainer.cs │ │ ├── DruidTrainer.cs │ │ ├── EldritchTrainer.cs │ │ ├── EnchanterTrainer.cs │ │ ├── ForesterTrainer.cs │ │ ├── GuardianTrainer.cs │ │ ├── HeroTrainer.cs │ │ ├── HiberniaMaulerTrainer.cs │ │ ├── MagicianTrainer.cs │ │ ├── MentalistTrainer.cs │ │ ├── NaturalistTrainer.cs │ │ ├── NightshadeTrainer.cs │ │ ├── RangerTrainer.cs │ │ ├── StalkerTrainer.cs │ │ ├── ValewalkerTrainer.cs │ │ ├── VampiirrTrainer.cs │ │ └── WardenTrainer.cs │ └── midgard │ │ ├── BerserkerTrainer.cs │ │ ├── BonedancerTrainer.cs │ │ ├── HealerTrainer.cs │ │ ├── HunterTrainer.cs │ │ ├── MidgardMaulerTrainer.cs │ │ ├── MidgardRogueTrainer.cs │ │ ├── MysticTrainer.cs │ │ ├── RunemasterTrainer.cs │ │ ├── SavageTrainer.cs │ │ ├── SeerTrainer.cs │ │ ├── ShadowbladeTrainer.cs │ │ ├── ShamanTrainer.cs │ │ ├── SkaldTrainer.cs │ │ ├── SpiritmasterTrainer.cs │ │ ├── ThaneTrainer.cs │ │ ├── ValkyrieTrainer.cs │ │ ├── VikingTrainer.cs │ │ ├── WarlockTrainer.cs │ │ └── WarriorTrainer.cs ├── webui │ └── template │ │ ├── contact.htm │ │ ├── images │ │ ├── dol_banner_small.gif │ │ ├── dol_title.gif │ │ ├── empty.gif │ │ ├── empty2.gif │ │ ├── tborder_lb.gif │ │ ├── tborder_lb2.gif │ │ ├── tborder_lt.gif │ │ ├── tborder_lt2.gif │ │ ├── tborder_rb.gif │ │ ├── tborder_rb2.gif │ │ ├── tborder_rt.gif │ │ └── tborder_rt2.gif │ │ ├── index.htm │ │ ├── leftframe.htm │ │ ├── plrlist.htm │ │ ├── srvrinfo.htm │ │ ├── staff.htm │ │ └── topframe.htm └── world │ ├── AbstractArea.cs │ ├── Area.cs │ ├── AreaMgr.cs │ ├── DayNightCycleTimer.cs │ ├── GameLocation.cs │ ├── IArea.cs │ ├── IGameLocation.cs │ ├── IPoint2D.cs │ ├── IPoint3D.cs │ ├── Instance │ ├── AdventureWingInstance.cs │ ├── BaseInstance.cs │ ├── Instance.cs │ └── RegionInstance.cs │ ├── Pathing │ ├── IPathingMgr.cs │ ├── LocalPathingMgr.cs │ ├── NoPathToTargetException.cs │ ├── NullPathingMgr.cs │ ├── PathCalculator.cs │ ├── PathingMgr.cs │ └── Structs.cs │ ├── Point2D.cs │ ├── Point3D.cs │ ├── Region.cs │ ├── RegionData.cs │ ├── SubZone.cs │ ├── TeleportArea.cs │ ├── WorldMgr.cs │ ├── Zone.cs │ ├── ZoneBonus.cs │ ├── ZoneData.cs │ └── ZonePointEffects.cs ├── LICENSE ├── Pathing └── Detour │ ├── CMakeLists.txt │ ├── Include │ ├── DetourAlloc.h │ ├── DetourAssert.h │ ├── DetourCommon.h │ ├── DetourInterface.hpp │ ├── DetourMath.h │ ├── DetourNavMesh.h │ ├── DetourNavMeshBuilder.h │ ├── DetourNavMeshQuery.h │ ├── DetourNode.h │ └── DetourStatus.h │ ├── README.md │ ├── Source │ ├── DetourAlloc.cpp │ ├── DetourAssert.cpp │ ├── DetourCommon.cpp │ ├── DetourInterface.cpp │ ├── DetourNavMesh.cpp │ ├── DetourNavMeshBuilder.cpp │ ├── DetourNavMeshQuery.cpp │ └── DetourNode.cpp │ └── Test │ ├── main.cpp │ └── zone078.nav ├── README.md ├── Tests ├── .gitignore ├── Integration.playlist ├── IntegrationTests │ ├── DOLBase │ │ └── Test_MPK.cs │ ├── Database │ │ ├── CustomParamsTest.cs │ │ ├── DatabaseSetUp.cs │ │ ├── DatabaseTests.cs │ │ ├── DatabaseTypeTests.cs │ │ ├── InterfaceTests.cs │ │ ├── MYSQLDBRegisterTableTests.cs │ │ ├── MySQLDBCustomParamsTest.cs │ │ ├── MySQLDBInterfaceTests.cs │ │ ├── MySQLDBSetUp.cs │ │ ├── MySQLDBTests.cs │ │ ├── MySQLDBTypeTests.cs │ │ ├── RegisterTableTests.cs │ │ ├── TestDataObjectType.cs │ │ ├── TestDataObjects.cs │ │ └── TestTableObjects.cs │ ├── Factory.cs │ ├── GameServer │ │ ├── InvalidNamesStartupTest.cs │ │ ├── Test_Keeps.cs │ │ ├── gameutils │ │ │ ├── DatabaseTest.cs │ │ │ ├── GameLivingInventoryTest.cs │ │ │ ├── InventoryTest.cs │ │ │ ├── LanguageTest.cs │ │ │ ├── LootMgrTest.cs │ │ │ ├── RegionTest.cs │ │ │ ├── ServerTest.cs │ │ │ ├── Train1105.cs │ │ │ └── ZoneTest.cs │ │ ├── quests │ │ │ ├── KillTaskTest.cs │ │ │ ├── MoneyTaskTest.cs │ │ │ └── Test_DataQuest.cs │ │ └── world │ │ │ └── RegionOidAllocation.cs │ ├── Managers │ │ ├── FriendsManagerTest.cs │ │ ├── InvalidNamesManagerTest.cs │ │ └── WeatherManagerTest.cs │ ├── Performance │ │ └── Test_GamePlayerCraftItem.cs │ ├── SchedulerTest.cs │ ├── Server.cs │ ├── SetUpTests.cs │ ├── TestPacketLib.cs │ └── UPnP.cs ├── Tests.csproj ├── UnitTest.playlist └── UnitTests │ ├── FakeGameObjects.cs │ ├── FakeServer.cs │ ├── GameObject │ ├── UT_GameNPC.cs │ └── UT_GamePlayer.cs │ ├── PropertyCalculator │ ├── UT_MeleeDamagePercentCalculator.cs │ ├── UT_ResistCalculator.cs │ └── UT_StatCalculator.cs │ ├── UT_ControlledMobBrain.cs │ ├── UT_DataQuest.cs │ ├── UT_DrainArray.cs │ ├── UT_GameEffectList.cs │ ├── UT_HereticFocusSpells.cs │ ├── UT_PropertyChangingSpell.cs │ ├── UT_Recipe.cs │ ├── UT_SessionIdAllocator.cs │ ├── UT_SpellHandler.cs │ └── UT_WhereClause.cs ├── appveyor.yml ├── docker-compose.yml ├── entrypoint.sh ├── gpl.txt ├── gplheader.txt └── sharedModules └── SQLite └── managedOnly └── System.Data.SQLite.dll /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CoreBase/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /DOLBase.xml 3 | /obj 4 | -------------------------------------------------------------------------------- /CoreBase/CompiledConstructorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/CompiledConstructorFactory.cs -------------------------------------------------------------------------------- /CoreBase/Configs/BaseServerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Configs/BaseServerConfig.cs -------------------------------------------------------------------------------- /CoreBase/Configs/ConfigElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Configs/ConfigElement.cs -------------------------------------------------------------------------------- /CoreBase/Configs/XmlConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Configs/XmlConfigFile.cs -------------------------------------------------------------------------------- /CoreBase/CoreBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/CoreBase.csproj -------------------------------------------------------------------------------- /CoreBase/Enums/EFtpFileTransferType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Enums/EFtpFileTransferType.cs -------------------------------------------------------------------------------- /CoreBase/Enums/EFtpMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Enums/EFtpMode.cs -------------------------------------------------------------------------------- /CoreBase/Enums/EGameServerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Enums/EGameServerStatus.cs -------------------------------------------------------------------------------- /CoreBase/Enums/EGameServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Enums/EGameServerType.cs -------------------------------------------------------------------------------- /CoreBase/FTP/FtpAsyncConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/FTP/FtpAsyncConnection.cs -------------------------------------------------------------------------------- /CoreBase/FTP/FtpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/FTP/FtpConnection.cs -------------------------------------------------------------------------------- /CoreBase/FTP/FtpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/FTP/FtpFile.cs -------------------------------------------------------------------------------- /CoreBase/Logging/Enums/ELogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Logging/Enums/ELogLevel.cs -------------------------------------------------------------------------------- /CoreBase/Logging/Enums/LogLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Logging/Enums/LogLibrary.cs -------------------------------------------------------------------------------- /CoreBase/Logging/LogEntry/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Logging/LogEntry/LogEntry.cs -------------------------------------------------------------------------------- /CoreBase/Logging/Logger/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Logging/Logger/Logger.cs -------------------------------------------------------------------------------- /CoreBase/Logging/Logger/LoggerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Logging/Logger/LoggerManager.cs -------------------------------------------------------------------------------- /CoreBase/MPK/MpkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/MPK/MpkFile.cs -------------------------------------------------------------------------------- /CoreBase/MPK/MpkFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/MPK/MpkFileHeader.cs -------------------------------------------------------------------------------- /CoreBase/MPK/MpkHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/MPK/MpkHandler.cs -------------------------------------------------------------------------------- /CoreBase/Marshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Marshal.cs -------------------------------------------------------------------------------- /CoreBase/Network/BaseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/BaseClient.cs -------------------------------------------------------------------------------- /CoreBase/Network/BaseServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/BaseServer.cs -------------------------------------------------------------------------------- /CoreBase/Network/IPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/IPacket.cs -------------------------------------------------------------------------------- /CoreBase/Network/PacketIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/PacketIn.cs -------------------------------------------------------------------------------- /CoreBase/Network/PacketOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/PacketOut.cs -------------------------------------------------------------------------------- /CoreBase/Network/SessionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/SessionId.cs -------------------------------------------------------------------------------- /CoreBase/Network/SessionIdAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/SessionIdAllocator.cs -------------------------------------------------------------------------------- /CoreBase/Network/UpnpNat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Network/UpnpNat.cs -------------------------------------------------------------------------------- /CoreBase/Threading/SimpleDisposableLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Threading/SimpleDisposableLock.cs -------------------------------------------------------------------------------- /CoreBase/Threading/SpinWaitLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/Threading/SpinWaitLock.cs -------------------------------------------------------------------------------- /CoreBase/WeakMulticastDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/WeakMulticastDelegate.cs -------------------------------------------------------------------------------- /CoreBase/WeakRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreBase/WeakRef.cs -------------------------------------------------------------------------------- /CoreDatabase/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /DOLDatabase.xml 3 | /obj 4 | -------------------------------------------------------------------------------- /CoreDatabase/Attributes/AttributeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Attributes/AttributeUtil.cs -------------------------------------------------------------------------------- /CoreDatabase/Attributes/DataElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Attributes/DataElement.cs -------------------------------------------------------------------------------- /CoreDatabase/Attributes/DataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Attributes/DataTable.cs -------------------------------------------------------------------------------- /CoreDatabase/Attributes/PrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Attributes/PrimaryKey.cs -------------------------------------------------------------------------------- /CoreDatabase/Attributes/ReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Attributes/ReadOnly.cs -------------------------------------------------------------------------------- /CoreDatabase/Attributes/Relation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Attributes/Relation.cs -------------------------------------------------------------------------------- /CoreDatabase/Connection/TableRowBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Connection/TableRowBinding.cs -------------------------------------------------------------------------------- /CoreDatabase/CoreDatabase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/CoreDatabase.csproj -------------------------------------------------------------------------------- /CoreDatabase/CustomParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/CustomParam.cs -------------------------------------------------------------------------------- /CoreDatabase/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/DataObject.cs -------------------------------------------------------------------------------- /CoreDatabase/DataTableHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/DataTableHandler.cs -------------------------------------------------------------------------------- /CoreDatabase/DatabaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/DatabaseException.cs -------------------------------------------------------------------------------- /CoreDatabase/DatabaseParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/DatabaseParameter.cs -------------------------------------------------------------------------------- /CoreDatabase/DatabaseUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/DatabaseUtil.cs -------------------------------------------------------------------------------- /CoreDatabase/ElementBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/ElementBinding.cs -------------------------------------------------------------------------------- /CoreDatabase/Enums/EConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Enums/EConnectionType.cs -------------------------------------------------------------------------------- /CoreDatabase/Enums/EIsolationLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Enums/EIsolationLevel.cs -------------------------------------------------------------------------------- /CoreDatabase/Enums/EKeepSkinType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Enums/EKeepSkinType.cs -------------------------------------------------------------------------------- /CoreDatabase/Enums/EPathType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Enums/EPathType.cs -------------------------------------------------------------------------------- /CoreDatabase/IObjectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/IObjectDatabase.cs -------------------------------------------------------------------------------- /CoreDatabase/LanguageDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/LanguageDataObject.cs -------------------------------------------------------------------------------- /CoreDatabase/ObjectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/ObjectDatabase.cs -------------------------------------------------------------------------------- /CoreDatabase/SqlObjectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/SqlObjectDatabase.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbAbility.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbAccount.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbAccountXCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbAccountXCrafting.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbAccountXMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbAccountXMoney.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbAppeal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbAppeal.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbArea.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbArtifact.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbArtifactBonus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbArtifactBonus.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbArtifactXItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbArtifactXItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbAuditEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbAuditEntry.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbBans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbBans.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbBattleground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbBattleground.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbBindPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbBindPoint.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbBugReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbBugReport.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbCoreCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbCoreCharacter.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbCraftedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbCraftedItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbCraftedXItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbCraftedXItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbDataQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbDataQuest.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbDoor.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbFaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbFaction.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbFactionAggroLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbFactionAggroLevel.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbFactionLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbFactionLinks.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbGuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbGuild.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbGuildAlliance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbGuildAlliance.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbGuildRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbGuildRank.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbHouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbHouse.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbHouseCharsXPerms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbHouseCharsXPerms.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbHouseIndoorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbHouseIndoorItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbHouseOutdoorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbHouseOutdoorItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbHousePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbHousePermissions.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbInstanceXElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbInstanceXElement.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbInventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbInventoryItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbItemTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbItemTemplate.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbItemUnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbItemUnique.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeep.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeepCaptureLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeepCaptureLog.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeepComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeepComponent.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeepDoorTeleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeepDoorTeleport.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeepHookPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeepHookPoint.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeepHookPointItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeepHookPointItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbKeepPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbKeepPosition.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLanguageArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLanguageArea.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLanguageGameDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLanguageGameDoor.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLanguageGameItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLanguageGameItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLanguageGameNpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLanguageGameNpc.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLanguageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLanguageSystem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLanguageZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLanguageZone.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLineXSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLineXSpell.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLootGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLootGenerator.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLootOtd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLootOtd.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbLootTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbLootTemplate.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbMerchantItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbMerchantItem.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbMinotaurRelic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbMinotaurRelic.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbMob.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbMobDropTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbMobDropTemplate.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbMobXLootTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbMobXLootTemplate.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbNews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbNews.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbNpcEquipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbNpcEquipment.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbNpcTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbNpcTemplate.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbPath.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbPathPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbPathPoint.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbPlayerBoat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbPlayerBoat.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbPlayerXEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbPlayerXEffect.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbQuest.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbRace.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbRegion.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbRelic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbRelic.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSalvage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSalvage.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSalvageYield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSalvageYield.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbServerProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbServerProperty.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbServerStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbServerStat.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSinglePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSinglePermission.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSpecXAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSpecXAbility.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSpecialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSpecialization.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSpell.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbSpellLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbSpellLine.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbStyle.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbStyleXSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbStyleXSpell.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbTask.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbTeleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbTeleport.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbTimeXLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbTimeXLevel.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbWorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbWorldObject.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbZone.cs -------------------------------------------------------------------------------- /CoreDatabase/Tables/DbZonePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/Tables/DbZonePoint.cs -------------------------------------------------------------------------------- /CoreDatabase/UniqueID/IdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/UniqueID/IdGenerator.cs -------------------------------------------------------------------------------- /CoreDatabase/WhereClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreDatabase/WhereClause.cs -------------------------------------------------------------------------------- /CoreServer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/.DS_Store -------------------------------------------------------------------------------- /CoreServer/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /DOLServer.xml 3 | /obj 4 | /*.user -------------------------------------------------------------------------------- /CoreServer/Actions/ConsoleStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/Actions/ConsoleStart.cs -------------------------------------------------------------------------------- /CoreServer/Actions/ServiceInstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/Actions/ServiceInstall.cs -------------------------------------------------------------------------------- /CoreServer/Actions/ServiceRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/Actions/ServiceRun.cs -------------------------------------------------------------------------------- /CoreServer/Actions/ServiceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/Actions/ServiceStart.cs -------------------------------------------------------------------------------- /CoreServer/Actions/ServiceStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/Actions/ServiceStop.cs -------------------------------------------------------------------------------- /CoreServer/Actions/ServiceUninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/Actions/ServiceUninstall.cs -------------------------------------------------------------------------------- /CoreServer/ConsolePacketLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/ConsolePacketLib.cs -------------------------------------------------------------------------------- /CoreServer/CoreServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/CoreServer.csproj -------------------------------------------------------------------------------- /CoreServer/DOLServer.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/DOLServer.exe.config -------------------------------------------------------------------------------- /CoreServer/GameServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/GameServerService.cs -------------------------------------------------------------------------------- /CoreServer/GameServerService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/GameServerService.resx -------------------------------------------------------------------------------- /CoreServer/GameServerServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/GameServerServiceInstaller.cs -------------------------------------------------------------------------------- /CoreServer/GameServerServiceInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/GameServerServiceInstaller.resx -------------------------------------------------------------------------------- /CoreServer/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/IAction.cs -------------------------------------------------------------------------------- /CoreServer/MainClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/MainClass.cs -------------------------------------------------------------------------------- /CoreServer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/app.config -------------------------------------------------------------------------------- /CoreServer/config/.gitignore: -------------------------------------------------------------------------------- 1 | serverconfig.xml -------------------------------------------------------------------------------- /CoreServer/config/serverconfig.example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/config/serverconfig.example.xml -------------------------------------------------------------------------------- /CoreServer/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/CoreServer/icon.ico -------------------------------------------------------------------------------- /DOLLinux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/DOLLinux.sln -------------------------------------------------------------------------------- /Dawn of Light.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Dawn of Light.sln -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Dockerfile -------------------------------------------------------------------------------- /GameServer/.gitignore: -------------------------------------------------------------------------------- 1 | /GameServer.xml 2 | /ProfilingSessions 3 | /obj 4 | -------------------------------------------------------------------------------- /GameServer/API/ApiHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/ApiHost.cs -------------------------------------------------------------------------------- /GameServer/API/Guild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/Guild.cs -------------------------------------------------------------------------------- /GameServer/API/News.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/News.cs -------------------------------------------------------------------------------- /GameServer/API/PasswordVerification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/PasswordVerification.cs -------------------------------------------------------------------------------- /GameServer/API/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/Player.cs -------------------------------------------------------------------------------- /GameServer/API/Realm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/Realm.cs -------------------------------------------------------------------------------- /GameServer/API/Shutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/Shutdown.cs -------------------------------------------------------------------------------- /GameServer/API/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/Utils.cs -------------------------------------------------------------------------------- /GameServer/API/docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/favicon-16x16.png -------------------------------------------------------------------------------- /GameServer/API/docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/favicon-32x32.png -------------------------------------------------------------------------------- /GameServer/API/docs/index.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/index.bck -------------------------------------------------------------------------------- /GameServer/API/docs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/index.css -------------------------------------------------------------------------------- /GameServer/API/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/index.html -------------------------------------------------------------------------------- /GameServer/API/docs/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/oauth2-redirect.html -------------------------------------------------------------------------------- /GameServer/API/docs/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger-initializer.js -------------------------------------------------------------------------------- /GameServer/API/docs/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger-ui-bundle.js -------------------------------------------------------------------------------- /GameServer/API/docs/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger-ui.css -------------------------------------------------------------------------------- /GameServer/API/docs/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger-ui.css.map -------------------------------------------------------------------------------- /GameServer/API/docs/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger-ui.js -------------------------------------------------------------------------------- /GameServer/API/docs/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger-ui.js.map -------------------------------------------------------------------------------- /GameServer/API/docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger.json -------------------------------------------------------------------------------- /GameServer/API/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/API/docs/swagger.yaml -------------------------------------------------------------------------------- /GameServer/ECS-Debug/ECSDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Debug/ECSDebug.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/AmnesiaECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/AmnesiaECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/BerserkECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/BerserkECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/BleedECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/BleedECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/ChargeECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/ChargeECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/CharmECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/CharmECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/DiseaseECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/DiseaseECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/ECSGameEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/ECSGameEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/ECSPulseEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/ECSPulseEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/EngageECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/EngageECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/FocusECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/FocusECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/GuardECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/GuardECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/PetECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/PetECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/ProcECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/ProcECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/ProtectECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/ProtectECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/ShadeECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/ShadeECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/SprintECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/SprintECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/StagECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/StagECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Effects/StealthECSEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Effects/StealthECSEffect.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/AttackService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/AttackService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/CastingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/CastingService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/ClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/ClientService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/CraftingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/CraftingService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/EffectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/EffectService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/GameLoopService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/GameLoopService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/GameServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/GameServiceBase.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/MovementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/MovementService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/NpcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/NpcService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/ReaperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/ReaperService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/TimerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/TimerService.cs -------------------------------------------------------------------------------- /GameServer/ECS-Services/ZoneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ECS-Services/ZoneService.cs -------------------------------------------------------------------------------- /GameServer/Enums/SpellCostType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/SpellCostType.cs -------------------------------------------------------------------------------- /GameServer/Enums/SpellNegatedReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/SpellNegatedReason.cs -------------------------------------------------------------------------------- /GameServer/Enums/eActiveQuiverSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eActiveQuiverSlot.cs -------------------------------------------------------------------------------- /GameServer/Enums/eActiveWeaponSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eActiveWeaponSlot.cs -------------------------------------------------------------------------------- /GameServer/Enums/eArmorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eArmorSlot.cs -------------------------------------------------------------------------------- /GameServer/Enums/eAttackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eAttackResult.cs -------------------------------------------------------------------------------- /GameServer/Enums/eBuffBonusCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eBuffBonusCategory.cs -------------------------------------------------------------------------------- /GameServer/Enums/eCastState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eCastState.cs -------------------------------------------------------------------------------- /GameServer/Enums/eCharFacePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eCharFacePart.cs -------------------------------------------------------------------------------- /GameServer/Enums/eCharacterClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eCharacterClass.cs -------------------------------------------------------------------------------- /GameServer/Enums/eClientExpansion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eClientExpansion.cs -------------------------------------------------------------------------------- /GameServer/Enums/eColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eColor.cs -------------------------------------------------------------------------------- /GameServer/Enums/eDamageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eDamageType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eDeathType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eDeathType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eEffect.cs -------------------------------------------------------------------------------- /GameServer/Enums/eEnduranceChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eEnduranceChangeType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eEquipmentItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eEquipmentItems.cs -------------------------------------------------------------------------------- /GameServer/Enums/eFSMStateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eFSMStateType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eGameObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eGameObjectType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eGender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eGender.cs -------------------------------------------------------------------------------- /GameServer/Enums/eHealthChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eHealthChangeType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eHorseSaddleBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eHorseSaddleBag.cs -------------------------------------------------------------------------------- /GameServer/Enums/eInstrumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eInstrumentType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eItemFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eItemFlags.cs -------------------------------------------------------------------------------- /GameServer/Enums/eLivingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eLivingModel.cs -------------------------------------------------------------------------------- /GameServer/Enums/eManaChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eManaChangeType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eMaterial.cs -------------------------------------------------------------------------------- /GameServer/Enums/eObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eObjectType.cs -------------------------------------------------------------------------------- /GameServer/Enums/ePrivLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/ePrivLevel.cs -------------------------------------------------------------------------------- /GameServer/Enums/eProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eProperty.cs -------------------------------------------------------------------------------- /GameServer/Enums/ePropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/ePropertyType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eQuestIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eQuestIndicator.cs -------------------------------------------------------------------------------- /GameServer/Enums/eRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eRace.cs -------------------------------------------------------------------------------- /GameServer/Enums/eRangedAttackState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eRangedAttackState.cs -------------------------------------------------------------------------------- /GameServer/Enums/eRangedAttackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eRangedAttackType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eRealm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eRealm.cs -------------------------------------------------------------------------------- /GameServer/Enums/eReleaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eReleaseType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eResist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eResist.cs -------------------------------------------------------------------------------- /GameServer/Enums/eSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eSize.cs -------------------------------------------------------------------------------- /GameServer/Enums/eSpellEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eSpellEffect.cs -------------------------------------------------------------------------------- /GameServer/Enums/eSpellTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eSpellTarget.cs -------------------------------------------------------------------------------- /GameServer/Enums/eSpellType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eSpellType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eStat.cs -------------------------------------------------------------------------------- /GameServer/Enums/eWaterBreath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eWaterBreath.cs -------------------------------------------------------------------------------- /GameServer/Enums/eWeaponDamageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eWeaponDamageType.cs -------------------------------------------------------------------------------- /GameServer/Enums/eXPLogState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eXPLogState.cs -------------------------------------------------------------------------------- /GameServer/Enums/eXPSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Enums/eXPSource.cs -------------------------------------------------------------------------------- /GameServer/GameClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/GameClient.cs -------------------------------------------------------------------------------- /GameServer/GameServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/GameServer.cs -------------------------------------------------------------------------------- /GameServer/GameServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/GameServer.csproj -------------------------------------------------------------------------------- /GameServer/GameServerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/GameServerConfiguration.cs -------------------------------------------------------------------------------- /GameServer/GlobalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/GlobalConstants.cs -------------------------------------------------------------------------------- /GameServer/Managers/GameLoop/GameLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Managers/GameLoop/GameLoop.cs -------------------------------------------------------------------------------- /GameServer/Managers/GameLoop/TickPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Managers/GameLoop/TickPool.cs -------------------------------------------------------------------------------- /GameServer/Metrics/MeterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/Metrics/MeterRegistry.cs -------------------------------------------------------------------------------- /GameServer/ResourceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ResourceUtil.cs -------------------------------------------------------------------------------- /GameServer/SimpleScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/SimpleScheduler.cs -------------------------------------------------------------------------------- /GameServer/ai/ABrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/ABrain.cs -------------------------------------------------------------------------------- /GameServer/ai/APlayerVicinityBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/APlayerVicinityBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/FSM/FSM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/FSM/FSM.cs -------------------------------------------------------------------------------- /GameServer/ai/FSM/FSMState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/FSM/FSMState.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Animist/BomberBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Animist/BomberBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Animist/TurretBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Animist/TurretBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/BlankBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/BlankBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/FollowOwnerBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/FollowOwnerBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Guards/Caster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Guards/Caster.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Guards/GuardBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Guards/GuardBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Guards/GuardState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Guards/GuardState.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Guards/Healer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Guards/Healer.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Guards/Lord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Guards/Lord.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/IControlledBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/IControlledBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/IOldAggressiveBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/IOldAggressiveBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/NoveltyPetBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/NoveltyPetBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/ProcPetBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/ProcPetBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/RoundsBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/RoundsBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/Scout/ScoutMobBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/Scout/ScoutMobBrain.cs -------------------------------------------------------------------------------- /GameServer/ai/brain/ZephyrBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/ai/brain/ZephyrBrain.cs -------------------------------------------------------------------------------- /GameServer/behaviour/AbstractAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/AbstractAction.cs -------------------------------------------------------------------------------- /GameServer/behaviour/AbstractTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/AbstractTrigger.cs -------------------------------------------------------------------------------- /GameServer/behaviour/Actions/TalkAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/Actions/TalkAction.cs -------------------------------------------------------------------------------- /GameServer/behaviour/BaseBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/BaseBehaviour.cs -------------------------------------------------------------------------------- /GameServer/behaviour/BehaviourBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/BehaviourBuilder.cs -------------------------------------------------------------------------------- /GameServer/behaviour/BehaviourMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/BehaviourMgr.cs -------------------------------------------------------------------------------- /GameServer/behaviour/BehaviourUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/BehaviourUtils.cs -------------------------------------------------------------------------------- /GameServer/behaviour/IBehaviourAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/IBehaviourAction.cs -------------------------------------------------------------------------------- /GameServer/behaviour/IBehaviourTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/behaviour/IBehaviourTrigger.cs -------------------------------------------------------------------------------- /GameServer/commands/CmdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/CmdAttribute.cs -------------------------------------------------------------------------------- /GameServer/commands/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/ICommandHandler.cs -------------------------------------------------------------------------------- /GameServer/commands/admincommands/code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/admincommands/code.cs -------------------------------------------------------------------------------- /GameServer/commands/admincommands/plvl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/admincommands/plvl.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Announce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Announce.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Ban.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Ban.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Faction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Faction.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/GMinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/GMinfo.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Instance.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Player.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/SpamMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/SpamMob.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Team.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/Teleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/Teleport.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/addbind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/addbind.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/area.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/blink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/blink.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/cast.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/crafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/crafting.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/debug.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/door.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/door.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/gmappeal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/gmappeal.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/gmrelic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/gmrelic.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/harm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/harm.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/heal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/heal.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/item.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/jump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/jump.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/keep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/keep.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/kick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/kick.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/merchant.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/mob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/mob.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/morph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/morph.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/mountgm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/mountgm.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/mute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/mute.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/npc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/npc.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/object.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/path.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/specLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/specLock.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/speed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/speed.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/titlegm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/titlegm.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/walk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/walk.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/weather.cs -------------------------------------------------------------------------------- /GameServer/commands/gmcommands/zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/gmcommands/zone.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/Boat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/Boat.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/LFG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/LFG.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/afk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/afk.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/api.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/bind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/bind.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/boot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/boot.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/buff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/buff.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/deal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/deal.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/duel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/duel.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/gloc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/gloc.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/held.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/held.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/helm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/helm.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/hood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/hood.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/news.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/news.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/pray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/pray.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/quit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/quit.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/roll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/roll.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/rp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/rp.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/say.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/say.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/sell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/sell.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/send.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/show.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/show.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/task.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/time.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/who.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/who.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/xp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/xp.cs -------------------------------------------------------------------------------- /GameServer/commands/playercommands/yell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/commands/playercommands/yell.cs -------------------------------------------------------------------------------- /GameServer/config/invalidnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/config/invalidnames.txt -------------------------------------------------------------------------------- /GameServer/config/logconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/config/logconfig.xml -------------------------------------------------------------------------------- /GameServer/craft/AbstractCraftingSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/AbstractCraftingSkill.cs -------------------------------------------------------------------------------- /GameServer/craft/AbstractProfession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/AbstractProfession.cs -------------------------------------------------------------------------------- /GameServer/craft/Alchemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/Alchemy.cs -------------------------------------------------------------------------------- /GameServer/craft/ArmorCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/ArmorCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/BasicCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/BasicCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/ClothWorking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/ClothWorking.cs -------------------------------------------------------------------------------- /GameServer/craft/CraftingMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/CraftingMgr.cs -------------------------------------------------------------------------------- /GameServer/craft/Fletching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/Fletching.cs -------------------------------------------------------------------------------- /GameServer/craft/GemCutting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/GemCutting.cs -------------------------------------------------------------------------------- /GameServer/craft/HerbalCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/HerbalCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/LeatherCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/LeatherCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/MetalWorking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/MetalWorking.cs -------------------------------------------------------------------------------- /GameServer/craft/Recipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/Recipe.cs -------------------------------------------------------------------------------- /GameServer/craft/Repair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/Repair.cs -------------------------------------------------------------------------------- /GameServer/craft/Salvage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/Salvage.cs -------------------------------------------------------------------------------- /GameServer/craft/SalvageCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/SalvageCalculator.cs -------------------------------------------------------------------------------- /GameServer/craft/SiegeCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/SiegeCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/SpellCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/SpellCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/Tailoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/Tailoring.cs -------------------------------------------------------------------------------- /GameServer/craft/WeaponCrafting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/WeaponCrafting.cs -------------------------------------------------------------------------------- /GameServer/craft/WoodWorking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/craft/WoodWorking.cs -------------------------------------------------------------------------------- /GameServer/database/DOLDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/database/DOLDB.cs -------------------------------------------------------------------------------- /GameServer/effects/BerserkEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/BerserkEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/BodyguardEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/BodyguardEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/CamouflageEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/CamouflageEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/DummyEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/DummyEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/EngageEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/EngageEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/GameEffectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/GameEffectList.cs -------------------------------------------------------------------------------- /GameServer/effects/GameSpellEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/GameSpellEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/GuildBannerEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/GuildBannerEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/IGameEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/IGameEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/ProtectEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/ProtectEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/PulsingSpellEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/PulsingSpellEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/QuickCastEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/QuickCastEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/RapidFireEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/RapidFireEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/ShadeEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/ShadeEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/SprintEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/SprintEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/StagEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/StagEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/StaticEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/StaticEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/SureShotEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/SureShotEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/TimedEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/TimedEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/TripleWieldEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/TripleWieldEffect.cs -------------------------------------------------------------------------------- /GameServer/effects/UniPortalEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/effects/UniPortalEffect.cs -------------------------------------------------------------------------------- /GameServer/events/DOLEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/DOLEvent.cs -------------------------------------------------------------------------------- /GameServer/events/GameEventMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/GameEventMgr.cs -------------------------------------------------------------------------------- /GameServer/events/IDOLEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/IDOLEventHandler.cs -------------------------------------------------------------------------------- /GameServer/events/World/AreaEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/World/AreaEvent.cs -------------------------------------------------------------------------------- /GameServer/events/World/AreaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/World/AreaEventArgs.cs -------------------------------------------------------------------------------- /GameServer/events/World/RegionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/World/RegionEvent.cs -------------------------------------------------------------------------------- /GameServer/events/keep/KeepEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/keep/KeepEvent.cs -------------------------------------------------------------------------------- /GameServer/events/keep/KeepEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/keep/KeepEventArgs.cs -------------------------------------------------------------------------------- /GameServer/events/keep/RelicPadEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/keep/RelicPadEvent.cs -------------------------------------------------------------------------------- /GameServer/events/scripts/ScriptEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/events/scripts/ScriptEvent.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameBoat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameBoat.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameDoor.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameDoorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameDoorBase.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameEpicBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameEpicBoss.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameEpicNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameEpicNPC.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameGravestone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameGravestone.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameGuard.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameHouseVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameHouseVault.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameLiving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameLiving.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameMerchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameMerchant.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameMoney.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameMythirian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameMythirian.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameNPC.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameNPChelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameNPChelper.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameObject.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GamePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GamePlayer.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameSiegeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameSiegeItem.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameStaticItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameStaticItem.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameTaxi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameTaxi.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameTaxiBoat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameTaxiBoat.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameTeleporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameTeleporter.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/GameVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/GameVault.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/IGameEpicNpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/IGameEpicNpc.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/PlayerRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/PlayerRace.cs -------------------------------------------------------------------------------- /GameServer/gameobjects/RaceStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameobjects/RaceStats.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Ability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Ability.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Alliance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Alliance.cs -------------------------------------------------------------------------------- /GameServer/gameutils/AppealMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/AppealMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/AttackData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/AttackData.cs -------------------------------------------------------------------------------- /GameServer/gameutils/AttackerTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/AttackerTracker.cs -------------------------------------------------------------------------------- /GameServer/gameutils/AuditMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/AuditMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/BattleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/BattleGroup.cs -------------------------------------------------------------------------------- /GameServer/gameutils/BoatMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/BoatMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/CardMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/CardMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ChatGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ChatGroup.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ChatUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ChatUtil.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ClientExtensions.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Collections/Trie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Collections/Trie.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ConLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ConLevels.cs -------------------------------------------------------------------------------- /GameServer/gameutils/DoorMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/DoorMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/EffectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/EffectHelper.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Faction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Faction.cs -------------------------------------------------------------------------------- /GameServer/gameutils/FactionMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/FactionMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GameDuel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GameDuel.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GameNPCInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GameNPCInventory.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GamePlayerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GamePlayerUtils.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Group.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GroupMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GroupMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Guild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Guild.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GuildBanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GuildBanner.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GuildEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GuildEvents.cs -------------------------------------------------------------------------------- /GameServer/gameutils/GuildMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/GuildMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/IGameInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/IGameInventory.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ILootGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ILootGenerator.cs -------------------------------------------------------------------------------- /GameServer/gameutils/INpcTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/INpcTemplate.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ITradeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ITradeWindow.cs -------------------------------------------------------------------------------- /GameServer/gameutils/InventoryLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/InventoryLogging.cs -------------------------------------------------------------------------------- /GameServer/gameutils/LootList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/LootList.cs -------------------------------------------------------------------------------- /GameServer/gameutils/LootMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/LootMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/LosCheckHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/LosCheckHandler.cs -------------------------------------------------------------------------------- /GameServer/gameutils/MailMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/MailMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/MarketCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/MarketCache.cs -------------------------------------------------------------------------------- /GameServer/gameutils/MarketSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/MarketSearch.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Message.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Money.cs -------------------------------------------------------------------------------- /GameServer/gameutils/MovementMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/MovementMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/NewsMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/NewsMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/NpcTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/NpcTemplate.cs -------------------------------------------------------------------------------- /GameServer/gameutils/NpcTemplateMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/NpcTemplateMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/PathPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/PathPoint.cs -------------------------------------------------------------------------------- /GameServer/gameutils/PlayerStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/PlayerStatistics.cs -------------------------------------------------------------------------------- /GameServer/gameutils/RandomDeck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/RandomDeck.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ScriptMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ScriptMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/SelfCraftWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/SelfCraftWindow.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ServerListUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ServerListUpdate.cs -------------------------------------------------------------------------------- /GameServer/gameutils/SinglePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/SinglePermission.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Skill/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Skill/Skill.cs -------------------------------------------------------------------------------- /GameServer/gameutils/SkillBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/SkillBase.cs -------------------------------------------------------------------------------- /GameServer/gameutils/SkillConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/SkillConstants.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Specialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Specialization.cs -------------------------------------------------------------------------------- /GameServer/gameutils/StatPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/StatPrint.cs -------------------------------------------------------------------------------- /GameServer/gameutils/StatSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/StatSave.cs -------------------------------------------------------------------------------- /GameServer/gameutils/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/Util.cs -------------------------------------------------------------------------------- /GameServer/gameutils/WarMapMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/WarMapMgr.cs -------------------------------------------------------------------------------- /GameServer/gameutils/XFireSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/XFireSupport.cs -------------------------------------------------------------------------------- /GameServer/gameutils/ZoneBonusRotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/gameutils/ZoneBonusRotator.cs -------------------------------------------------------------------------------- /GameServer/housing/House.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/House.cs -------------------------------------------------------------------------------- /GameServer/housing/HouseMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/HouseMgr.cs -------------------------------------------------------------------------------- /GameServer/housing/HouseTemplateMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/HouseTemplateMgr.cs -------------------------------------------------------------------------------- /GameServer/housing/HousingConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/HousingConstants.cs -------------------------------------------------------------------------------- /GameServer/housing/IndoorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/IndoorItem.cs -------------------------------------------------------------------------------- /GameServer/housing/LotMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/LotMarker.cs -------------------------------------------------------------------------------- /GameServer/housing/OutdoorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/housing/OutdoorItem.cs -------------------------------------------------------------------------------- /GameServer/keeps/AbstractGameKeep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/AbstractGameKeep.cs -------------------------------------------------------------------------------- /GameServer/keeps/GameKeep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/GameKeep.cs -------------------------------------------------------------------------------- /GameServer/keeps/GameKeepComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/GameKeepComponent.cs -------------------------------------------------------------------------------- /GameServer/keeps/GameTower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/GameTower.cs -------------------------------------------------------------------------------- /GameServer/keeps/HookPointInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/HookPointInventory.cs -------------------------------------------------------------------------------- /GameServer/keeps/IGameKeep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/IGameKeep.cs -------------------------------------------------------------------------------- /GameServer/keeps/IGameKeepComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/IGameKeepComponent.cs -------------------------------------------------------------------------------- /GameServer/keeps/IKeepManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/IKeepManager.cs -------------------------------------------------------------------------------- /GameServer/keeps/KeepArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/KeepArea.cs -------------------------------------------------------------------------------- /GameServer/keeps/KeepBonusManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/KeepBonusManager.cs -------------------------------------------------------------------------------- /GameServer/keeps/KeepHookPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/KeepHookPoint.cs -------------------------------------------------------------------------------- /GameServer/keeps/KeepManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/KeepManager.cs -------------------------------------------------------------------------------- /GameServer/keeps/Managers/RelicMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/Managers/RelicMgr.cs -------------------------------------------------------------------------------- /GameServer/keeps/RelicGameKeep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/RelicGameKeep.cs -------------------------------------------------------------------------------- /GameServer/keeps/Relics/GameRelic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/Relics/GameRelic.cs -------------------------------------------------------------------------------- /GameServer/keeps/Relics/GameRelicPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/keeps/Relics/GameRelicPad.cs -------------------------------------------------------------------------------- /GameServer/language/CZ/CZ - General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/CZ/CZ - General.txt -------------------------------------------------------------------------------- /GameServer/language/DE/AI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/AI.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Ability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Ability.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Atlantis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Atlantis.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Behaviour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Behaviour.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Crafting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Crafting.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Effects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Effects.txt -------------------------------------------------------------------------------- /GameServer/language/DE/GameUtils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/GameUtils.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Housing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Housing.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Keeps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Keeps.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Keeps/Guards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Keeps/Guards.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Packets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Packets.txt -------------------------------------------------------------------------------- /GameServer/language/DE/PlayerClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/PlayerClasses.txt -------------------------------------------------------------------------------- /GameServer/language/DE/PlayerRaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/PlayerRaces.txt -------------------------------------------------------------------------------- /GameServer/language/DE/PlayerTitles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/PlayerTitles.txt -------------------------------------------------------------------------------- /GameServer/language/DE/ServerRules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/ServerRules.txt -------------------------------------------------------------------------------- /GameServer/language/DE/SkillHandler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/SkillHandler.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Spells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Spells.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Styles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Styles.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Trainer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Trainer.txt -------------------------------------------------------------------------------- /GameServer/language/DE/World.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/World.txt -------------------------------------------------------------------------------- /GameServer/language/DE/Zones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/DE/Zones.txt -------------------------------------------------------------------------------- /GameServer/language/EN/AI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/AI.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Ability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Ability.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Behaviour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Behaviour.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Crafting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Crafting.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Effects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Effects.txt -------------------------------------------------------------------------------- /GameServer/language/EN/GameObjects/CustomNPC/Other.txt: -------------------------------------------------------------------------------- 1 | # Other NPCs 2 | 3 | -------------------------------------------------------------------------------- /GameServer/language/EN/GameUtils.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameServer/language/EN/Housing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Housing.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Keeps/Guards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Keeps/Guards.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Keeps/Keeps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Keeps/Keeps.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Language-EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Language-EN.txt -------------------------------------------------------------------------------- /GameServer/language/EN/PlayerClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/PlayerClasses.txt -------------------------------------------------------------------------------- /GameServer/language/EN/PlayerRaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/PlayerRaces.txt -------------------------------------------------------------------------------- /GameServer/language/EN/PlayerTitles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/PlayerTitles.txt -------------------------------------------------------------------------------- /GameServer/language/EN/SkillHandler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/SkillHandler.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Spells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Spells.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Unused.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Unused.txt -------------------------------------------------------------------------------- /GameServer/language/EN/World.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/World.txt -------------------------------------------------------------------------------- /GameServer/language/EN/Zones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/EN/Zones.txt -------------------------------------------------------------------------------- /GameServer/language/ES/ES - General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/ES/ES - General.txt -------------------------------------------------------------------------------- /GameServer/language/FR/AI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/AI.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Ability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Ability.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Atlantis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Atlantis.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Crafting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Crafting.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Effects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Effects.txt -------------------------------------------------------------------------------- /GameServer/language/FR/GameUtils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/GameUtils.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Housing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Housing.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Keeps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Keeps.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Keeps/Guards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Keeps/Guards.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Language-FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Language-FR.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Packets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Packets.txt -------------------------------------------------------------------------------- /GameServer/language/FR/PlayerClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/PlayerClasses.txt -------------------------------------------------------------------------------- /GameServer/language/FR/PlayerRaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/PlayerRaces.txt -------------------------------------------------------------------------------- /GameServer/language/FR/PlayerStats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/PlayerStats.txt -------------------------------------------------------------------------------- /GameServer/language/FR/PlayerTitles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/PlayerTitles.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Quests/ML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Quests/ML.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Quests/Quest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Quests/Quest.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Relic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Relic.txt -------------------------------------------------------------------------------- /GameServer/language/FR/SkillHandler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/SkillHandler.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Spells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Spells.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Trainer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Trainer.txt -------------------------------------------------------------------------------- /GameServer/language/FR/Zones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/Zones.txt -------------------------------------------------------------------------------- /GameServer/language/FR/world/Events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/FR/world/Events.txt -------------------------------------------------------------------------------- /GameServer/language/IT/AI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/IT/AI.txt -------------------------------------------------------------------------------- /GameServer/language/IT/Behaviour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/IT/Behaviour.txt -------------------------------------------------------------------------------- /GameServer/language/IT/Effects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/IT/Effects.txt -------------------------------------------------------------------------------- /GameServer/language/IT/Language-IT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/IT/Language-IT.txt -------------------------------------------------------------------------------- /GameServer/language/IT/NameRegistrar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/IT/NameRegistrar.txt -------------------------------------------------------------------------------- /GameServer/language/IT/VaultKeeper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/IT/VaultKeeper.txt -------------------------------------------------------------------------------- /GameServer/language/LanguageMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/language/LanguageMgr.cs -------------------------------------------------------------------------------- /GameServer/packets/Client/GSPacketIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/packets/Client/GSPacketIn.cs -------------------------------------------------------------------------------- /GameServer/packets/Server/CryptLib168.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/packets/Server/CryptLib168.cs -------------------------------------------------------------------------------- /GameServer/packets/Server/IPacketLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/packets/Server/IPacketLib.cs -------------------------------------------------------------------------------- /GameServer/packets/Utils/ClientDelve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/packets/Utils/ClientDelve.cs -------------------------------------------------------------------------------- /GameServer/playertitles/ClearTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/playertitles/ClearTitle.cs -------------------------------------------------------------------------------- /GameServer/playertitles/IPlayerTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/playertitles/IPlayerTitle.cs -------------------------------------------------------------------------------- /GameServer/propertycalc/DPSCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/propertycalc/DPSCalculator.cs -------------------------------------------------------------------------------- /GameServer/quests/QuestsMgr/BaseQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/QuestsMgr/BaseQuest.cs -------------------------------------------------------------------------------- /GameServer/quests/QuestsMgr/DataQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/QuestsMgr/DataQuest.cs -------------------------------------------------------------------------------- /GameServer/quests/QuestsMgr/QuestMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/QuestsMgr/QuestMgr.cs -------------------------------------------------------------------------------- /GameServer/quests/Tasks/AbstractTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/Tasks/AbstractTask.cs -------------------------------------------------------------------------------- /GameServer/quests/Tasks/CraftTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/Tasks/CraftTask.cs -------------------------------------------------------------------------------- /GameServer/quests/Tasks/KillTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/Tasks/KillTask.cs -------------------------------------------------------------------------------- /GameServer/quests/Tasks/MoneyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/quests/Tasks/MoneyTask.cs -------------------------------------------------------------------------------- /GameServer/relics/Relic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/relics/Relic.cs -------------------------------------------------------------------------------- /GameServer/relics/RelicGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/relics/RelicGate.cs -------------------------------------------------------------------------------- /GameServer/relics/RelicMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/relics/RelicMgr.cs -------------------------------------------------------------------------------- /GameServer/relics/RelicPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/relics/RelicPad.cs -------------------------------------------------------------------------------- /GameServer/relics/RelicPillar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/relics/RelicPillar.cs -------------------------------------------------------------------------------- /GameServer/scripts/commands/SameIP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/commands/SameIP.cs -------------------------------------------------------------------------------- /GameServer/scripts/commands/ck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/commands/ck.cs -------------------------------------------------------------------------------- /GameServer/scripts/commands/dfowner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/commands/dfowner.cs -------------------------------------------------------------------------------- /GameServer/scripts/commands/realmtask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/commands/realmtask.cs -------------------------------------------------------------------------------- /GameServer/scripts/commands/rent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/commands/rent.cs -------------------------------------------------------------------------------- /GameServer/scripts/commands/version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/commands/version.cs -------------------------------------------------------------------------------- /GameServer/scripts/customnpc/DPSDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/customnpc/DPSDummy.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/Alina.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/Alina.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/Changeling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/Changeling.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/DaySpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/DaySpawn.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/Myling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/Myling.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/NightSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/NightSpawn.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/SINeckBossNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/SINeckBossNPC.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/StealtherMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/StealtherMob.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/Strangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/Strangler.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/custom/BPMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/custom/BPMob.cs -------------------------------------------------------------------------------- /GameServer/scripts/mobs/custom/HPMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/mobs/custom/HPMob.cs -------------------------------------------------------------------------------- /GameServer/scripts/namedmobs/Archilus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/namedmobs/Archilus.cs -------------------------------------------------------------------------------- /GameServer/scripts/namedmobs/Evern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/namedmobs/Evern.cs -------------------------------------------------------------------------------- /GameServer/scripts/namedmobs/Gnat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/namedmobs/Gnat.cs -------------------------------------------------------------------------------- /GameServer/scripts/namedmobs/Yar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/namedmobs/Yar.cs -------------------------------------------------------------------------------- /GameServer/scripts/system/Online.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/system/Online.cs -------------------------------------------------------------------------------- /GameServer/scripts/system/Vote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/system/Vote.cs -------------------------------------------------------------------------------- /GameServer/scripts/system/ngg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/system/ngg.cs -------------------------------------------------------------------------------- /GameServer/scripts/system/servernews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/system/servernews.cs -------------------------------------------------------------------------------- /GameServer/scripts/system/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/system/stats.php -------------------------------------------------------------------------------- /GameServer/scripts/system/xmob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/system/xmob.cs -------------------------------------------------------------------------------- /GameServer/scripts/web/WebUIGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/scripts/web/WebUIGenerator.cs -------------------------------------------------------------------------------- /GameServer/serverrules/IServerRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/serverrules/IServerRules.cs -------------------------------------------------------------------------------- /GameServer/serverrules/PvEServerRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/serverrules/PvEServerRules.cs -------------------------------------------------------------------------------- /GameServer/serverrules/PvPServerRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/serverrules/PvPServerRules.cs -------------------------------------------------------------------------------- /GameServer/skillhandler/Climbing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/skillhandler/Climbing.cs -------------------------------------------------------------------------------- /GameServer/skillhandler/MemoriesOfWar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/skillhandler/MemoriesOfWar.cs -------------------------------------------------------------------------------- /GameServer/skillhandler/ScarsOfBattle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/skillhandler/ScarsOfBattle.cs -------------------------------------------------------------------------------- /GameServer/spells/AfHitsBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/AfHitsBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/AllRegenBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/AllRegenBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/AllStatsBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/AllStatsBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/AmnesiaSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/AmnesiaSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/Animist/PetPBAoE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Animist/PetPBAoE.cs -------------------------------------------------------------------------------- /GameServer/spells/Archery/Archery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Archery/Archery.cs -------------------------------------------------------------------------------- /GameServer/spells/Archery/ArcheryDoT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Archery/ArcheryDoT.cs -------------------------------------------------------------------------------- /GameServer/spells/Archery/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Archery/Arrow.cs -------------------------------------------------------------------------------- /GameServer/spells/Archery/SiegeShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Archery/SiegeShot.cs -------------------------------------------------------------------------------- /GameServer/spells/Artifacts/Arrogance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Artifacts/Arrogance.cs -------------------------------------------------------------------------------- /GameServer/spells/Artifacts/Cloudsong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Artifacts/Cloudsong.cs -------------------------------------------------------------------------------- /GameServer/spells/Artifacts/Ereine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Artifacts/Ereine.cs -------------------------------------------------------------------------------- /GameServer/spells/Artifacts/Flask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Artifacts/Flask.cs -------------------------------------------------------------------------------- /GameServer/spells/Artifacts/RealmLore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Artifacts/RealmLore.cs -------------------------------------------------------------------------------- /GameServer/spells/Artifacts/Traldor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Artifacts/Traldor.cs -------------------------------------------------------------------------------- /GameServer/spells/AstralPetSummon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/AstralPetSummon.cs -------------------------------------------------------------------------------- /GameServer/spells/BoltSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/BoltSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/BuffShear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/BuffShear.cs -------------------------------------------------------------------------------- /GameServer/spells/CCSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/CCSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/CharmSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/CharmSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/Climbing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Climbing.cs -------------------------------------------------------------------------------- /GameServer/spells/CommonAstralSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/CommonAstralSpells.cs -------------------------------------------------------------------------------- /GameServer/spells/ConcentrationList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/ConcentrationList.cs -------------------------------------------------------------------------------- /GameServer/spells/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Conversion.cs -------------------------------------------------------------------------------- /GameServer/spells/ConvertPet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/ConvertPet.cs -------------------------------------------------------------------------------- /GameServer/spells/CostumeSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/CostumeSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/CureAllSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/CureAllSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/CureNearsight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/CureNearsight.cs -------------------------------------------------------------------------------- /GameServer/spells/Curemezz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Curemezz.cs -------------------------------------------------------------------------------- /GameServer/spells/DamageAddAndShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DamageAddAndShield.cs -------------------------------------------------------------------------------- /GameServer/spells/DamageSpeedDecrease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DamageSpeedDecrease.cs -------------------------------------------------------------------------------- /GameServer/spells/DisarmSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DisarmSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/DiseaseSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DiseaseSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/DoTSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DoTSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/DoomHammer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DoomHammer.cs -------------------------------------------------------------------------------- /GameServer/spells/DualStatBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DualStatBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/DualStatDebuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/DualStatDebuff.cs -------------------------------------------------------------------------------- /GameServer/spells/FacilisSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/FacilisSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/FocusShellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/FocusShellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/Fury.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Fury.cs -------------------------------------------------------------------------------- /GameServer/spells/HealSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/HealSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/HealthToFatigue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/HealthToFatigue.cs -------------------------------------------------------------------------------- /GameServer/spells/Heretic/MonsterRez.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Heretic/MonsterRez.cs -------------------------------------------------------------------------------- /GameServer/spells/HoTSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/HoTSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/ISpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/ISpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/IllnessSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/IllnessSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/LongRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/LongRange.cs -------------------------------------------------------------------------------- /GameServer/spells/Masterlevel/Warlord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Masterlevel/Warlord.cs -------------------------------------------------------------------------------- /GameServer/spells/NaturesShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/NaturesShield.cs -------------------------------------------------------------------------------- /GameServer/spells/NoVarianceSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/NoVarianceSpells.cs -------------------------------------------------------------------------------- /GameServer/spells/PowerDrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/PowerDrain.cs -------------------------------------------------------------------------------- /GameServer/spells/PowerTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/PowerTransfer.cs -------------------------------------------------------------------------------- /GameServer/spells/PreventFlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/PreventFlight.cs -------------------------------------------------------------------------------- /GameServer/spells/ProcSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/ProcSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/RampageSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/RampageSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/RampingDamageFocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/RampingDamageFocus.cs -------------------------------------------------------------------------------- /GameServer/spells/RegenBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/RegenBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/ResistBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/ResistBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/ResistDebuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/ResistDebuff.cs -------------------------------------------------------------------------------- /GameServer/spells/Savage/MultiTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Savage/MultiTarget.cs -------------------------------------------------------------------------------- /GameServer/spells/Savage/SavageBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Savage/SavageBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/SilenceSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SilenceSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/SingleStatBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SingleStatBuff.cs -------------------------------------------------------------------------------- /GameServer/spells/SingleStatDebuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SingleStatDebuff.cs -------------------------------------------------------------------------------- /GameServer/spells/Spell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Spell.cs -------------------------------------------------------------------------------- /GameServer/spells/SpellDelve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SpellDelve.cs -------------------------------------------------------------------------------- /GameServer/spells/SpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/StyleBleeding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/StyleBleeding.cs -------------------------------------------------------------------------------- /GameServer/spells/StyleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/StyleHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/StylePowerDrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/StylePowerDrain.cs -------------------------------------------------------------------------------- /GameServer/spells/StyleSpeedDecrease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/StyleSpeedDecrease.cs -------------------------------------------------------------------------------- /GameServer/spells/StyleStun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/StyleStun.cs -------------------------------------------------------------------------------- /GameServer/spells/StyleTaunt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/StyleTaunt.cs -------------------------------------------------------------------------------- /GameServer/spells/SummonIllusionBlade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SummonIllusionBlade.cs -------------------------------------------------------------------------------- /GameServer/spells/SummonNoveltyPet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SummonNoveltyPet.cs -------------------------------------------------------------------------------- /GameServer/spells/SummonSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/SummonSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/TauntSpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/TauntSpellHandler.cs -------------------------------------------------------------------------------- /GameServer/spells/Teleport/UniPortal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/Teleport/UniPortal.cs -------------------------------------------------------------------------------- /GameServer/spells/negative/FearBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/spells/negative/FearBrain.cs -------------------------------------------------------------------------------- /GameServer/styles/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/styles/Style.cs -------------------------------------------------------------------------------- /GameServer/styles/StyleProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/styles/StyleProcessor.cs -------------------------------------------------------------------------------- /GameServer/trainer/albion/MageTrainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/trainer/albion/MageTrainer.cs -------------------------------------------------------------------------------- /GameServer/webui/template/contact.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/contact.htm -------------------------------------------------------------------------------- /GameServer/webui/template/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/index.htm -------------------------------------------------------------------------------- /GameServer/webui/template/leftframe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/leftframe.htm -------------------------------------------------------------------------------- /GameServer/webui/template/plrlist.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/plrlist.htm -------------------------------------------------------------------------------- /GameServer/webui/template/srvrinfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/srvrinfo.htm -------------------------------------------------------------------------------- /GameServer/webui/template/staff.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/staff.htm -------------------------------------------------------------------------------- /GameServer/webui/template/topframe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/webui/template/topframe.htm -------------------------------------------------------------------------------- /GameServer/world/AbstractArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/AbstractArea.cs -------------------------------------------------------------------------------- /GameServer/world/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Area.cs -------------------------------------------------------------------------------- /GameServer/world/AreaMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/AreaMgr.cs -------------------------------------------------------------------------------- /GameServer/world/DayNightCycleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/DayNightCycleTimer.cs -------------------------------------------------------------------------------- /GameServer/world/GameLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/GameLocation.cs -------------------------------------------------------------------------------- /GameServer/world/IArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/IArea.cs -------------------------------------------------------------------------------- /GameServer/world/IGameLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/IGameLocation.cs -------------------------------------------------------------------------------- /GameServer/world/IPoint2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/IPoint2D.cs -------------------------------------------------------------------------------- /GameServer/world/IPoint3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/IPoint3D.cs -------------------------------------------------------------------------------- /GameServer/world/Instance/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Instance/Instance.cs -------------------------------------------------------------------------------- /GameServer/world/Pathing/IPathingMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Pathing/IPathingMgr.cs -------------------------------------------------------------------------------- /GameServer/world/Pathing/PathingMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Pathing/PathingMgr.cs -------------------------------------------------------------------------------- /GameServer/world/Pathing/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Pathing/Structs.cs -------------------------------------------------------------------------------- /GameServer/world/Point2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Point2D.cs -------------------------------------------------------------------------------- /GameServer/world/Point3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Point3D.cs -------------------------------------------------------------------------------- /GameServer/world/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Region.cs -------------------------------------------------------------------------------- /GameServer/world/RegionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/RegionData.cs -------------------------------------------------------------------------------- /GameServer/world/SubZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/SubZone.cs -------------------------------------------------------------------------------- /GameServer/world/TeleportArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/TeleportArea.cs -------------------------------------------------------------------------------- /GameServer/world/WorldMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/WorldMgr.cs -------------------------------------------------------------------------------- /GameServer/world/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/Zone.cs -------------------------------------------------------------------------------- /GameServer/world/ZoneBonus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/ZoneBonus.cs -------------------------------------------------------------------------------- /GameServer/world/ZoneData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/ZoneData.cs -------------------------------------------------------------------------------- /GameServer/world/ZonePointEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/GameServer/world/ZonePointEffects.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/LICENSE -------------------------------------------------------------------------------- /Pathing/Detour/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/CMakeLists.txt -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourAlloc.h -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourAssert.h -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourCommon.h -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourMath.h -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourNavMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourNavMesh.h -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourNode.h -------------------------------------------------------------------------------- /Pathing/Detour/Include/DetourStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Include/DetourStatus.h -------------------------------------------------------------------------------- /Pathing/Detour/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/README.md -------------------------------------------------------------------------------- /Pathing/Detour/Source/DetourAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Source/DetourAlloc.cpp -------------------------------------------------------------------------------- /Pathing/Detour/Source/DetourAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Source/DetourAssert.cpp -------------------------------------------------------------------------------- /Pathing/Detour/Source/DetourCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Source/DetourCommon.cpp -------------------------------------------------------------------------------- /Pathing/Detour/Source/DetourNavMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Source/DetourNavMesh.cpp -------------------------------------------------------------------------------- /Pathing/Detour/Source/DetourNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Source/DetourNode.cpp -------------------------------------------------------------------------------- /Pathing/Detour/Test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Test/main.cpp -------------------------------------------------------------------------------- /Pathing/Detour/Test/zone078.nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Pathing/Detour/Test/zone078.nav -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/README.md -------------------------------------------------------------------------------- /Tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | /IntegrationTests.xml 4 | -------------------------------------------------------------------------------- /Tests/Integration.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/Integration.playlist -------------------------------------------------------------------------------- /Tests/IntegrationTests/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/IntegrationTests/Factory.cs -------------------------------------------------------------------------------- /Tests/IntegrationTests/SchedulerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/IntegrationTests/SchedulerTest.cs -------------------------------------------------------------------------------- /Tests/IntegrationTests/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/IntegrationTests/Server.cs -------------------------------------------------------------------------------- /Tests/IntegrationTests/SetUpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/IntegrationTests/SetUpTests.cs -------------------------------------------------------------------------------- /Tests/IntegrationTests/TestPacketLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/IntegrationTests/TestPacketLib.cs -------------------------------------------------------------------------------- /Tests/IntegrationTests/UPnP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/IntegrationTests/UPnP.cs -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /Tests/UnitTest.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTest.playlist -------------------------------------------------------------------------------- /Tests/UnitTests/FakeGameObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/FakeGameObjects.cs -------------------------------------------------------------------------------- /Tests/UnitTests/FakeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/FakeServer.cs -------------------------------------------------------------------------------- /Tests/UnitTests/GameObject/UT_GameNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/GameObject/UT_GameNPC.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_ControlledMobBrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_ControlledMobBrain.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_DataQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_DataQuest.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_DrainArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_DrainArray.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_GameEffectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_GameEffectList.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_HereticFocusSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_HereticFocusSpells.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_Recipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_Recipe.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_SessionIdAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_SessionIdAllocator.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_SpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_SpellHandler.cs -------------------------------------------------------------------------------- /Tests/UnitTests/UT_WhereClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/Tests/UnitTests/UT_WhereClause.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/gpl.txt -------------------------------------------------------------------------------- /gplheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDAoC/OpenDAoC-Core/HEAD/gplheader.txt --------------------------------------------------------------------------------