├── .dockerignore ├── .env ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── general-bug-report.md │ └── todo.md ├── logo-small.png ├── logo.png └── workflows │ └── NamigatorBindings.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── database ├── __init__.py ├── auth │ ├── AuthDatabaseManager.py │ ├── AuthModels.py │ └── __init__.py ├── dbc │ ├── DbcDatabaseManager.py │ ├── DbcModels.py │ └── __init__.py ├── realm │ ├── RealmDatabaseManager.py │ ├── RealmModels.py │ └── __init__.py └── world │ ├── WorldDatabaseManager.py │ ├── WorldModels.py │ └── __init__.py ├── docker-compose.yml ├── docker-database-update.sh ├── etc ├── config │ └── config.yml.dist ├── databases │ ├── auth │ │ ├── auth.sql │ │ └── updates │ │ │ └── .nomedia │ ├── create_databases.sql │ ├── dbc │ │ ├── dbc.sql │ │ └── updates │ │ │ ├── .nomedia │ │ │ └── updates.sql │ ├── drop_databases.sql │ ├── realm │ │ ├── realm.sql │ │ └── updates │ │ │ ├── .nomedia │ │ │ └── updates.sql │ └── world │ │ ├── custom │ │ ├── darnassus_teleporter.sql │ │ ├── scarlet_monastery_teleporter.sql │ │ └── shaman_totems.sql │ │ ├── updates │ │ ├── .nomedia │ │ └── updates.sql │ │ └── world.sql ├── docker │ ├── inotify │ │ ├── Dockerfile │ │ └── init.sh │ ├── main │ │ └── Dockerfile │ ├── realm │ │ └── Dockerfile │ ├── sql │ │ ├── Dockerfile │ │ └── build_sql_patches.sh │ └── world │ │ └── Dockerfile ├── maps │ └── .nomedia └── navs │ └── .nomedia ├── game ├── __init__.py ├── login │ ├── LoginManager.py │ ├── LoginSessionStateHandler.py │ └── __init__.py ├── realm │ ├── AccountManager.py │ ├── RealmManager.py │ └── __init__.py ├── update │ ├── UpdateManager.py │ ├── UpdateSessionStateHandler.py │ └── __init__.py └── world │ ├── WorldLoader.py │ ├── WorldManager.py │ ├── WorldSessionStateHandler.py │ ├── __init__.py │ ├── managers │ ├── CommandManager.py │ ├── __init__.py │ ├── abstractions │ │ ├── Vector.py │ │ └── __init__.py │ ├── maps │ │ ├── Cell.py │ │ ├── DetectionManager.py │ │ ├── GridManager.py │ │ ├── InstancesManager.py │ │ ├── Map.py │ │ ├── MapEventManager.py │ │ ├── MapManager.py │ │ ├── MapTile.py │ │ ├── __init__.py │ │ └── helpers │ │ │ ├── AreaInformation.py │ │ │ ├── BoundingBox.py │ │ │ ├── CellUtils.py │ │ │ ├── Constants.py │ │ │ ├── InstanceToken.py │ │ │ ├── LiquidInformation.py │ │ │ ├── MapUtils.py │ │ │ ├── Mapbuild.py │ │ │ ├── Namigator.py │ │ │ ├── PendingTeleportDataHolder.py │ │ │ ├── QuadTree.py │ │ │ ├── QuadTreeNode.py │ │ │ ├── ResurrectionRequestDataHolder.py │ │ │ └── __init__.py │ └── objects │ │ ├── GuidManager.py │ │ ├── ObjectManager.py │ │ ├── __init__.py │ │ ├── ai │ │ ├── AIFactory.py │ │ ├── BasicCreatureAI.py │ │ ├── CreatureAI.py │ │ ├── CritterAI.py │ │ ├── EscortAI.py │ │ ├── GameObjectAI.py │ │ ├── GuardAI.py │ │ ├── GuardianAI.py │ │ ├── NullCreatureAI.py │ │ ├── PetAI.py │ │ ├── TotemAI.py │ │ └── __init__.py │ │ ├── corpse │ │ ├── CorpseManager.py │ │ └── __init__.py │ │ ├── dynamic │ │ ├── DynamicObjectManager.py │ │ └── __init__.py │ │ ├── farsight │ │ ├── Camera.py │ │ ├── FarSightManager.py │ │ └── __init__.py │ │ ├── gameobjects │ │ ├── GameObjectBuilder.py │ │ ├── GameObjectLootManager.py │ │ ├── GameObjectManager.py │ │ ├── GameObjectSpawn.py │ │ ├── __init__.py │ │ └── managers │ │ │ ├── ButtonManager.py │ │ │ ├── CameraManager.py │ │ │ ├── ChairManager.py │ │ │ ├── ChestMananger.py │ │ │ ├── DoorManager.py │ │ │ ├── DuelArbiterManager.py │ │ │ ├── FishingNodeManager.py │ │ │ ├── GooberManager.py │ │ │ ├── MiningNodeManager.py │ │ │ ├── QuestGiverManager.py │ │ │ ├── RitualManager.py │ │ │ ├── SpellFocusManager.py │ │ │ ├── TransportManager.py │ │ │ ├── TrapManager.py │ │ │ └── __init__.py │ │ ├── item │ │ ├── ContainerManager.py │ │ ├── ContainerSlots.py │ │ ├── EnchantmentHolder.py │ │ ├── ItemLootManager.py │ │ ├── ItemManager.py │ │ ├── Stats.py │ │ └── __init__.py │ │ ├── locks │ │ ├── LockHolder.py │ │ ├── LockManager.py │ │ └── __init__.py │ │ ├── loot │ │ ├── LootHolder.py │ │ ├── LootManager.py │ │ ├── LootSelection.py │ │ └── __init__.py │ │ ├── pools │ │ ├── PoolChancedEntry.py │ │ ├── PoolManager.py │ │ ├── PoolObject.py │ │ └── __init__.py │ │ ├── script │ │ ├── AIEventHandler.py │ │ ├── ConditionChecker.py │ │ ├── Script.py │ │ ├── ScriptAIEvent.py │ │ ├── ScriptCommand.py │ │ ├── ScriptHandler.py │ │ ├── ScriptHelpers.py │ │ ├── ScriptManager.py │ │ ├── ScriptedEvent.py │ │ ├── ScriptedEventTarget.py │ │ └── __init__.py │ │ ├── spell │ │ ├── CastingSpell.py │ │ ├── CooldownEntry.py │ │ ├── EffectTargets.py │ │ ├── EquipmentProcManager.py │ │ ├── ExtendedSpellData.py │ │ ├── SpellEffect.py │ │ ├── SpellEffectDummyHandler.py │ │ ├── SpellEffectHandler.py │ │ ├── SpellManager.py │ │ ├── __init__.py │ │ └── aura │ │ │ ├── AppliedAura.py │ │ │ ├── AreaAuraHolder.py │ │ │ ├── AuraEffectDummyHandler.py │ │ │ ├── AuraEffectHandler.py │ │ │ ├── AuraManager.py │ │ │ └── __init__.py │ │ ├── timers │ │ ├── MirrorTimer.py │ │ ├── MirrorTimersManager.py │ │ └── __init__.py │ │ └── units │ │ ├── ChatManager.py │ │ ├── DamageInfoHolder.py │ │ ├── UnitManager.py │ │ ├── __init__.py │ │ ├── creature │ │ ├── CreatureBuilder.py │ │ ├── CreatureLootManager.py │ │ ├── CreatureManager.py │ │ ├── CreaturePickPocketLootManager.py │ │ ├── CreatureSpawn.py │ │ ├── CreatureSpellsEntry.py │ │ ├── KnownObjects.py │ │ ├── ThreatManager.py │ │ ├── __init__.py │ │ ├── groups │ │ │ ├── CreatureGroupManager.py │ │ │ ├── CreatureGroupMember.py │ │ │ └── __init__.py │ │ ├── items │ │ │ ├── VirtualItemInfoHolder.py │ │ │ ├── VirtualItemUtils.py │ │ │ └── __init__.py │ │ ├── utils │ │ │ ├── CreatureUtils.py │ │ │ ├── TrainerUtils.py │ │ │ ├── VendorUtils.py │ │ │ └── __init__.py │ │ └── vendors │ │ │ ├── VendorData.py │ │ │ └── __init__.py │ │ ├── movement │ │ ├── MovementInfo.py │ │ ├── MovementManager.py │ │ ├── __init__.py │ │ ├── behaviors │ │ │ ├── BaseMovement.py │ │ │ ├── ChaseMovement.py │ │ │ ├── ConfusedMovement.py │ │ │ ├── DistractedMovement.py │ │ │ ├── EvadeMovement.py │ │ │ ├── FearMovement.py │ │ │ ├── FlightMovement.py │ │ │ ├── FollowMovement.py │ │ │ ├── GroupMovement.py │ │ │ ├── PetMovement.py │ │ │ ├── WanderingMovement.py │ │ │ └── WaypointMovement.py │ │ └── helpers │ │ │ ├── CommandMoveInfo.py │ │ │ ├── MovementWaypoint.py │ │ │ ├── PendingWaypoint.py │ │ │ ├── PetRangeMove.py │ │ │ ├── Spline.py │ │ │ ├── SplineBuilder.py │ │ │ ├── SplineEvent.py │ │ │ └── __init__.py │ │ ├── pet │ │ ├── ActivePet.py │ │ ├── PetData.py │ │ ├── PetManager.py │ │ └── __init__.py │ │ └── player │ │ ├── ChannelManager.py │ │ ├── EnchantmentManager.py │ │ ├── FriendsManager.py │ │ ├── GroupManager.py │ │ ├── InventoryManager.py │ │ ├── PlayerManager.py │ │ ├── ReputationManager.py │ │ ├── SkillManager.py │ │ ├── StatManager.py │ │ ├── TalentManager.py │ │ ├── __init__.py │ │ ├── guild │ │ ├── GuildManager.py │ │ ├── GuildPendingInvite.py │ │ ├── PetitionManager.py │ │ └── __init__.py │ │ ├── quest │ │ ├── ActiveQuest.py │ │ ├── QuestHelpers.py │ │ ├── QuestManager.py │ │ ├── QuestMenu.py │ │ └── __init__.py │ │ ├── taxi │ │ ├── TaxiManager.py │ │ ├── TaxiResumeInformation.py │ │ └── __init__.py │ │ └── trade │ │ ├── ChatAddonManager.py │ │ ├── ProposedEnchantment.py │ │ ├── TradeData.py │ │ ├── TradeManager.py │ │ └── __init__.py │ └── opcode_handling │ ├── Definitions.py │ ├── HandlerValidator.py │ ├── __init__.py │ └── handlers │ ├── NullHandler.py │ ├── __init__.py │ ├── channel │ ├── ChannelAnnounceHandler.py │ ├── ChannelBanHandler.py │ ├── ChannelInviteHandler.py │ ├── ChannelJoinHandler.py │ ├── ChannelKickHandler.py │ ├── ChannelLeaveHandler.py │ ├── ChannelListHandler.py │ ├── ChannelModeratorHandler.py │ ├── ChannelMuteHandler.py │ ├── ChannelOwnerHandler.py │ ├── ChannelPasswordHandler.py │ └── __init__.py │ ├── combat │ ├── AttackSwingHandler.py │ └── __init__.py │ ├── friends │ ├── FriendAddHandler.py │ ├── FriendDeleteHandler.py │ ├── FriendDeleteIgnoreHandler.py │ ├── FriendIgnoreHandler.py │ ├── FriendsListHandler.py │ └── __init__.py │ ├── gameobject │ ├── GameObjectQueryHandler.py │ ├── GameobjUseHandler.py │ └── __init__.py │ ├── group │ ├── GroupDisbandHandler.py │ ├── GroupInviteAcceptHandler.py │ ├── GroupInviteDeclineHandler.py │ ├── GroupInviteHandler.py │ ├── GroupLootMethodHandler.py │ ├── GroupSetLeaderHandler.py │ ├── GroupUnInviteGuidHandler.py │ ├── GroupUnInviteHandler.py │ ├── MinimapPingHandler.py │ └── __init__.py │ ├── guild │ ├── GuildCreateHandler.py │ ├── GuildDemoteHandler.py │ ├── GuildDisbandHandler.py │ ├── GuildInfoHandler.py │ ├── GuildInviteAcceptHandler.py │ ├── GuildInviteDeclineHandler.py │ ├── GuildInviteHandler.py │ ├── GuildLeaderHandler.py │ ├── GuildLeaveHandler.py │ ├── GuildMOTDHandler.py │ ├── GuildPromoteHandler.py │ ├── GuildQueryHandler.py │ ├── GuildRemoveMemberHandler.py │ ├── GuildRosterHandler.py │ ├── GuildSaveEmblemHandler.py │ └── __init__.py │ ├── interface │ ├── AuthSessionHandler.py │ ├── CharCreateHandler.py │ ├── CharDeleteHandler.py │ ├── CharEnumHandler.py │ └── __init__.py │ ├── inventory │ ├── AutoequipItemHandler.py │ ├── AutostoreBagItemHandler.py │ ├── DestroyItemHandler.py │ ├── ItemQueryMultipleHandler.py │ ├── ItemQuerySingleHandler.py │ ├── OpenItemHandler.py │ ├── PageTextQueryHandler.py │ ├── ReadItemHandler.py │ ├── SplitItemHandler.py │ ├── SwapInvItemHandler.py │ ├── SwapItemHandler.py │ ├── WrapItemHandler.py │ └── __init__.py │ ├── loot │ ├── AutostoreLootItemHandler.py │ ├── LootMoneyHandler.py │ ├── LootReleaseHandler.py │ ├── LootRequestHandler.py │ └── __init__.py │ ├── npc │ ├── ActivateTaxiHandler.py │ ├── BankerActivateHandler.py │ ├── BinderActivateHandler.py │ ├── BuyBankSlotHandler.py │ ├── BuyItemHandler.py │ ├── BuyItemInSlotHandler.py │ ├── CreatureQueryHandler.py │ ├── ListInventoryHandler.py │ ├── PetitionBuyHandler.py │ ├── PetitionOfferHandler.py │ ├── PetitionQueryHandler.py │ ├── PetitionShowSignaturesHandler.py │ ├── PetitionShowlistHandler.py │ ├── PetitionSignHandler.py │ ├── PetitionTurnInHandler.py │ ├── SellItemHandler.py │ ├── TabardVendorActivateHandler.py │ ├── TaxiNodeStatusQueryHandler.py │ ├── TaxiQueryNodesHandler.py │ ├── TrainerBuySpellHandler.py │ ├── TrainerListHandler.py │ └── __init__.py │ ├── pet │ ├── PetAbandonHandler.py │ ├── PetActionHandler.py │ ├── PetNameQueryHandler.py │ ├── PetRenameHandler.py │ ├── PetSetActionHandler.py │ └── __init__.py │ ├── player │ ├── BootMeHandler.py │ ├── DebugAIStateHandler.py │ ├── DuelAcceptHandler.py │ ├── DuelCanceledHandler.py │ ├── GetDeathBindPointHandler.py │ ├── InspectHandler.py │ ├── LogoutCancelHandler.py │ ├── LogoutRequestHandler.py │ ├── MountSpecialAnimHandler.py │ ├── MovementHandler.py │ ├── NameQueryHandler.py │ ├── NewSpellSlotHandler.py │ ├── PingHandler.py │ ├── PlayedTimeHandler.py │ ├── PlayerLoginHandler.py │ ├── PlayerLogoutHandler.py │ ├── PvPPortHandler.py │ ├── RandomRollHandler.py │ ├── RepopRequestHandler.py │ ├── ResurrectResponseHandler.py │ ├── SetActionButtonHandler.py │ ├── SetDeathBindPointHandler.py │ ├── SetWeaponModeHandler.py │ ├── StandStateChangeHandler.py │ ├── __init__.py │ └── cheats │ │ ├── BeastMasterHandler.py │ │ ├── CheatSetMoneyHandler.py │ │ ├── CooldownCheatHandler.py │ │ ├── CreateItemHandler.py │ │ ├── CreateMonsterHandler.py │ │ ├── DestroyMonsterHandler.py │ │ ├── GMSummonHandler.py │ │ ├── GodModeHandler.py │ │ ├── LearnSpellCheatHandler.py │ │ ├── LevelCheatHandler.py │ │ ├── LevelUpCheatHandler.py │ │ ├── MakeMonsterAttackMeHandler.py │ │ ├── PetLevelCheatHandler.py │ │ ├── RechargeHandler.py │ │ ├── SpeedCheatHandler.py │ │ ├── TaxiClearAllNodesHandler.py │ │ ├── TaxiEnableAllNodesHandlers.py │ │ ├── TeleportToPlayerHandler.py │ │ ├── TriggerCinematicCheatHandler.py │ │ └── __init__.py │ ├── quest │ ├── QuestConfirmAcceptHandler.py │ ├── QuestGiverAcceptQuestHandler.py │ ├── QuestGiverChooseRewardHandler.py │ ├── QuestGiverCompleteQuestHandler.py │ ├── QuestGiverHelloHandler.py │ ├── QuestGiverQueryQuestHandler.py │ ├── QuestGiverRemoveQuestHandler.py │ ├── QuestGiverRequestReward.py │ ├── QuestGiverStatusHandler.py │ ├── QuestQueryHandler.py │ └── __init__.py │ ├── social │ ├── BugHandler.py │ ├── ChatHandler.py │ ├── LookingForGroupHandler.py │ ├── PlayerMacroHandler.py │ ├── TextEmoteHandler.py │ ├── WhoHandler.py │ └── __init__.py │ ├── spell │ ├── CancelAuraHandler.py │ ├── CancelCastHandler.py │ ├── CancelChannellingHandler.py │ ├── CastSpellHandler.py │ ├── UseItemHandler.py │ └── __init__.py │ ├── trade │ ├── AcceptTradeHandler.py │ ├── BeginTradeHandler.py │ ├── CancelTradeHandler.py │ ├── ClearTradeItemHandler.py │ ├── InitiateTradeHandler.py │ ├── SetTradeGoldHandler.py │ ├── SetTradeItemHandler.py │ ├── UnacceptTradeHandler.py │ └── __init__.py │ ├── unit │ ├── SetSelectionHandler.py │ ├── SetTargetHandler.py │ └── __init__.py │ └── world │ ├── AreaTriggerHandler.py │ ├── TimeQueryHandler.py │ ├── WorldTeleportHandler.py │ ├── ZoneUpdateHandler.py │ └── __init__.py ├── main.py ├── namigator └── README.txt ├── network ├── __init__.py ├── packet │ ├── PacketReader.py │ ├── PacketWriter.py │ ├── __init__.py │ └── update │ │ ├── UpdateBuilder.py │ │ ├── UpdateData.py │ │ ├── UpdateManager.py │ │ ├── UpdateMask.py │ │ ├── UpdatePacketFactory.py │ │ └── __init__.py └── sockets │ ├── SocketBuilder.py │ └── __init__.py ├── requirements.txt ├── tools ├── ClassTrainersSkillsGenerator.py ├── CreatureCacheParser.py ├── ItemCacheParser.py ├── QuestCacheParser.py ├── __init__.py └── extractors │ ├── Extractor.py │ ├── MapExtractor.py │ ├── NavExtractor.py │ ├── __init__.py │ ├── definitions │ ├── Adt.py │ ├── Wdt.py │ ├── __init__.py │ ├── chunks │ │ ├── CLID.py │ │ ├── MCLQ.py │ │ ├── MCVT.py │ │ ├── MDDF.py │ │ ├── MDNM.py │ │ ├── MHDR.py │ │ ├── MLIQ.py │ │ ├── MODF.py │ │ ├── MOHD.py │ │ ├── MONM.py │ │ ├── MOPY.py │ │ ├── MOVI.py │ │ ├── MOVT.py │ │ ├── MPHD.py │ │ ├── TileHeader.py │ │ ├── TileInformation.py │ │ └── __init__.py │ ├── enums │ │ ├── LiquidFlags.py │ │ └── __init__.py │ ├── objects │ │ ├── CAaBox.py │ │ ├── Doodad.py │ │ ├── Index3.py │ │ ├── Vector3.py │ │ ├── Vertex.py │ │ ├── Wmo.py │ │ ├── WmoGroupFile.py │ │ └── __init__.py │ └── reader │ │ ├── StreamReader.py │ │ └── __init__.py │ ├── helpers │ ├── Constants.py │ ├── DataHolders.py │ ├── HeightField.py │ ├── LiquidAdtWriter.py │ ├── WmoLiquidParser.py │ ├── WmoLiquidWriter.py │ └── __init__.py │ ├── pydbclib │ ├── DbcReader.py │ ├── __init__.py │ ├── helpers │ │ └── VanillaAreaHelper.py │ └── structs │ │ ├── AreaTable.py │ │ ├── DbcHeader.py │ │ └── Map.py │ └── pympqlib │ ├── MpqArchive.py │ ├── MpqEntry.py │ ├── MpqFlags.py │ ├── MpqHash.py │ ├── MpqHeader.py │ ├── MpqReader.py │ └── __init__.py └── utils ├── ByteUtils.py ├── ChatLogManager.py ├── ConfigManager.py ├── Float16.py ├── Formulas.py ├── GitUtils.py ├── GuidUtils.py ├── Logger.py ├── Matrix.py ├── ObjectQueryUtils.py ├── PathManager.py ├── Srp6.py ├── SysUtils.py ├── TextUtils.py ├── __init__.py └── constants ├── AuthCodes.py ├── CharCodes.py ├── ConditionCodes.py ├── CustomCodes.py ├── DuelCodes.py ├── EnvVars.py ├── GroupCodes.py ├── ItemCodes.py ├── MiscCodes.py ├── MiscFlags.py ├── OpCodes.py ├── PetCodes.py ├── ScriptCodes.py ├── SpellCodes.py ├── UnitCodes.py ├── UpdateFields.py └── __init__.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.github/ISSUE_TEMPLATE/general-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.github/ISSUE_TEMPLATE/todo.md -------------------------------------------------------------------------------- /.github/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.github/logo-small.png -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.github/workflows/NamigatorBindings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.github/workflows/NamigatorBindings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/README.md -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/auth/AuthDatabaseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/auth/AuthDatabaseManager.py -------------------------------------------------------------------------------- /database/auth/AuthModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/auth/AuthModels.py -------------------------------------------------------------------------------- /database/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/dbc/DbcDatabaseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/dbc/DbcDatabaseManager.py -------------------------------------------------------------------------------- /database/dbc/DbcModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/dbc/DbcModels.py -------------------------------------------------------------------------------- /database/dbc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/realm/RealmDatabaseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/realm/RealmDatabaseManager.py -------------------------------------------------------------------------------- /database/realm/RealmModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/realm/RealmModels.py -------------------------------------------------------------------------------- /database/realm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/world/WorldDatabaseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/world/WorldDatabaseManager.py -------------------------------------------------------------------------------- /database/world/WorldModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/database/world/WorldModels.py -------------------------------------------------------------------------------- /database/world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-database-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/docker-database-update.sh -------------------------------------------------------------------------------- /etc/config/config.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/config/config.yml.dist -------------------------------------------------------------------------------- /etc/databases/auth/auth.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/auth/auth.sql -------------------------------------------------------------------------------- /etc/databases/auth/updates/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/databases/create_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/create_databases.sql -------------------------------------------------------------------------------- /etc/databases/dbc/dbc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/dbc/dbc.sql -------------------------------------------------------------------------------- /etc/databases/dbc/updates/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/databases/dbc/updates/updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/dbc/updates/updates.sql -------------------------------------------------------------------------------- /etc/databases/drop_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/drop_databases.sql -------------------------------------------------------------------------------- /etc/databases/realm/realm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/realm/realm.sql -------------------------------------------------------------------------------- /etc/databases/realm/updates/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/databases/realm/updates/updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/realm/updates/updates.sql -------------------------------------------------------------------------------- /etc/databases/world/custom/darnassus_teleporter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/world/custom/darnassus_teleporter.sql -------------------------------------------------------------------------------- /etc/databases/world/custom/scarlet_monastery_teleporter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/world/custom/scarlet_monastery_teleporter.sql -------------------------------------------------------------------------------- /etc/databases/world/custom/shaman_totems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/world/custom/shaman_totems.sql -------------------------------------------------------------------------------- /etc/databases/world/updates/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/databases/world/updates/updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/world/updates/updates.sql -------------------------------------------------------------------------------- /etc/databases/world/world.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/databases/world/world.sql -------------------------------------------------------------------------------- /etc/docker/inotify/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/inotify/Dockerfile -------------------------------------------------------------------------------- /etc/docker/inotify/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/inotify/init.sh -------------------------------------------------------------------------------- /etc/docker/main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/main/Dockerfile -------------------------------------------------------------------------------- /etc/docker/realm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/realm/Dockerfile -------------------------------------------------------------------------------- /etc/docker/sql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/sql/Dockerfile -------------------------------------------------------------------------------- /etc/docker/sql/build_sql_patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/sql/build_sql_patches.sh -------------------------------------------------------------------------------- /etc/docker/world/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/etc/docker/world/Dockerfile -------------------------------------------------------------------------------- /etc/maps/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/navs/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/login/LoginManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/login/LoginManager.py -------------------------------------------------------------------------------- /game/login/LoginSessionStateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/login/LoginSessionStateHandler.py -------------------------------------------------------------------------------- /game/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/realm/AccountManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/realm/AccountManager.py -------------------------------------------------------------------------------- /game/realm/RealmManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/realm/RealmManager.py -------------------------------------------------------------------------------- /game/realm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/update/UpdateManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/update/UpdateManager.py -------------------------------------------------------------------------------- /game/update/UpdateSessionStateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/update/UpdateSessionStateHandler.py -------------------------------------------------------------------------------- /game/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/WorldLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/WorldLoader.py -------------------------------------------------------------------------------- /game/world/WorldManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/WorldManager.py -------------------------------------------------------------------------------- /game/world/WorldSessionStateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/WorldSessionStateHandler.py -------------------------------------------------------------------------------- /game/world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/CommandManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/CommandManager.py -------------------------------------------------------------------------------- /game/world/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/abstractions/Vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/abstractions/Vector.py -------------------------------------------------------------------------------- /game/world/managers/abstractions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/maps/Cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/Cell.py -------------------------------------------------------------------------------- /game/world/managers/maps/DetectionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/DetectionManager.py -------------------------------------------------------------------------------- /game/world/managers/maps/GridManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/GridManager.py -------------------------------------------------------------------------------- /game/world/managers/maps/InstancesManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/InstancesManager.py -------------------------------------------------------------------------------- /game/world/managers/maps/Map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/Map.py -------------------------------------------------------------------------------- /game/world/managers/maps/MapEventManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/MapEventManager.py -------------------------------------------------------------------------------- /game/world/managers/maps/MapManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/MapManager.py -------------------------------------------------------------------------------- /game/world/managers/maps/MapTile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/MapTile.py -------------------------------------------------------------------------------- /game/world/managers/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/AreaInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/AreaInformation.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/BoundingBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/BoundingBox.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/CellUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/CellUtils.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/Constants.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/InstanceToken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/InstanceToken.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/LiquidInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/LiquidInformation.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/MapUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/MapUtils.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/Mapbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/Mapbuild.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/Namigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/Namigator.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/PendingTeleportDataHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/PendingTeleportDataHolder.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/QuadTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/QuadTree.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/QuadTreeNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/QuadTreeNode.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/ResurrectionRequestDataHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/maps/helpers/ResurrectionRequestDataHolder.py -------------------------------------------------------------------------------- /game/world/managers/maps/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/GuidManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/GuidManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/ObjectManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ObjectManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/ai/AIFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/AIFactory.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/BasicCreatureAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/BasicCreatureAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/CreatureAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/CreatureAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/CritterAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/CritterAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/EscortAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/EscortAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/GameObjectAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/GameObjectAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/GuardAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/GuardAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/GuardianAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/GuardianAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/NullCreatureAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/NullCreatureAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/PetAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/PetAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/TotemAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/ai/TotemAI.py -------------------------------------------------------------------------------- /game/world/managers/objects/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/corpse/CorpseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/corpse/CorpseManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/corpse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/dynamic/DynamicObjectManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/dynamic/DynamicObjectManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/dynamic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/farsight/Camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/farsight/Camera.py -------------------------------------------------------------------------------- /game/world/managers/objects/farsight/FarSightManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/farsight/FarSightManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/farsight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/GameObjectBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/GameObjectBuilder.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/GameObjectLootManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/GameObjectLootManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/GameObjectManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/GameObjectManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/GameObjectSpawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/GameObjectSpawn.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/ButtonManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/ButtonManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/CameraManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/CameraManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/ChairManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/ChairManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/ChestMananger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/ChestMananger.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/DoorManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/DoorManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/DuelArbiterManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/DuelArbiterManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/FishingNodeManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/FishingNodeManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/GooberManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/GooberManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/MiningNodeManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/MiningNodeManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/QuestGiverManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/QuestGiverManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/RitualManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/RitualManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/SpellFocusManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/SpellFocusManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/TransportManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/TransportManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/TrapManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/gameobjects/managers/TrapManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/gameobjects/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/item/ContainerManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/item/ContainerManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/item/ContainerSlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/item/ContainerSlots.py -------------------------------------------------------------------------------- /game/world/managers/objects/item/EnchantmentHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/item/EnchantmentHolder.py -------------------------------------------------------------------------------- /game/world/managers/objects/item/ItemLootManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/item/ItemLootManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/item/ItemManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/item/ItemManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/item/Stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/item/Stats.py -------------------------------------------------------------------------------- /game/world/managers/objects/item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/locks/LockHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/locks/LockHolder.py -------------------------------------------------------------------------------- /game/world/managers/objects/locks/LockManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/locks/LockManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/locks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/loot/LootHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/loot/LootHolder.py -------------------------------------------------------------------------------- /game/world/managers/objects/loot/LootManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/loot/LootManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/loot/LootSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/loot/LootSelection.py -------------------------------------------------------------------------------- /game/world/managers/objects/loot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/pools/PoolChancedEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/pools/PoolChancedEntry.py -------------------------------------------------------------------------------- /game/world/managers/objects/pools/PoolManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/pools/PoolManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/pools/PoolObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/pools/PoolObject.py -------------------------------------------------------------------------------- /game/world/managers/objects/pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/script/AIEventHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/AIEventHandler.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ConditionChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ConditionChecker.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/Script.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptAIEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptAIEvent.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptCommand.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptHandler.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptHelpers.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptedEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptedEvent.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/ScriptedEventTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/script/ScriptedEventTarget.py -------------------------------------------------------------------------------- /game/world/managers/objects/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/spell/CastingSpell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/CastingSpell.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/CooldownEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/CooldownEntry.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/EffectTargets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/EffectTargets.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/EquipmentProcManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/EquipmentProcManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/ExtendedSpellData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/ExtendedSpellData.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/SpellEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/SpellEffect.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/SpellEffectDummyHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/SpellEffectDummyHandler.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/SpellEffectHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/SpellEffectHandler.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/SpellManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/SpellManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/spell/aura/AppliedAura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/aura/AppliedAura.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/aura/AreaAuraHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/aura/AreaAuraHolder.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/aura/AuraEffectDummyHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/aura/AuraEffectDummyHandler.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/aura/AuraEffectHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/aura/AuraEffectHandler.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/aura/AuraManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/spell/aura/AuraManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/spell/aura/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/timers/MirrorTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/timers/MirrorTimer.py -------------------------------------------------------------------------------- /game/world/managers/objects/timers/MirrorTimersManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/timers/MirrorTimersManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/timers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/ChatManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/ChatManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/DamageInfoHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/DamageInfoHolder.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/UnitManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/UnitManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/CreatureBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/CreatureBuilder.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/CreatureLootManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/CreatureLootManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/CreatureManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/CreatureManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/CreaturePickPocketLootManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/CreaturePickPocketLootManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/CreatureSpawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/CreatureSpawn.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/CreatureSpellsEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/CreatureSpellsEntry.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/KnownObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/KnownObjects.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/ThreatManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/ThreatManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/groups/CreatureGroupManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/groups/CreatureGroupManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/groups/CreatureGroupMember.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/groups/CreatureGroupMember.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/items/VirtualItemInfoHolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/items/VirtualItemInfoHolder.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/items/VirtualItemUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/items/VirtualItemUtils.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/utils/CreatureUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/utils/CreatureUtils.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/utils/TrainerUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/utils/TrainerUtils.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/utils/VendorUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/utils/VendorUtils.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/vendors/VendorData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/creature/vendors/VendorData.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/creature/vendors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/MovementInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/MovementInfo.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/MovementManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/MovementManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/BaseMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/BaseMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/ChaseMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/ChaseMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/ConfusedMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/ConfusedMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/DistractedMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/DistractedMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/EvadeMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/EvadeMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/FearMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/FearMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/FlightMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/FlightMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/FollowMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/FollowMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/GroupMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/GroupMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/PetMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/PetMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/WanderingMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/WanderingMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/behaviors/WaypointMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/behaviors/WaypointMovement.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/CommandMoveInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/CommandMoveInfo.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/MovementWaypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/MovementWaypoint.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/PendingWaypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/PendingWaypoint.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/PetRangeMove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/PetRangeMove.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/Spline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/Spline.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/SplineBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/SplineBuilder.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/SplineEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/movement/helpers/SplineEvent.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/movement/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/pet/ActivePet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/pet/ActivePet.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/pet/PetData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/pet/PetData.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/pet/PetManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/pet/PetManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/pet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/ChannelManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/ChannelManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/EnchantmentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/EnchantmentManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/FriendsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/FriendsManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/GroupManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/GroupManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/InventoryManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/InventoryManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/PlayerManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/PlayerManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/ReputationManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/ReputationManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/SkillManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/SkillManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/StatManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/StatManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/TalentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/TalentManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/guild/GuildManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/guild/GuildManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/guild/GuildPendingInvite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/guild/GuildPendingInvite.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/guild/PetitionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/guild/PetitionManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/guild/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/quest/ActiveQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/quest/ActiveQuest.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/quest/QuestHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/quest/QuestHelpers.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/quest/QuestManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/quest/QuestManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/quest/QuestMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/quest/QuestMenu.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/quest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/taxi/TaxiManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/taxi/TaxiManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/taxi/TaxiResumeInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/taxi/TaxiResumeInformation.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/taxi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/trade/ChatAddonManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/trade/ChatAddonManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/trade/ProposedEnchantment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/trade/ProposedEnchantment.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/trade/TradeData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/trade/TradeData.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/trade/TradeManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/managers/objects/units/player/trade/TradeManager.py -------------------------------------------------------------------------------- /game/world/managers/objects/units/player/trade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/Definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/Definitions.py -------------------------------------------------------------------------------- /game/world/opcode_handling/HandlerValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/HandlerValidator.py -------------------------------------------------------------------------------- /game/world/opcode_handling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/NullHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/NullHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelAnnounceHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelAnnounceHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelBanHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelBanHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelInviteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelInviteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelJoinHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelJoinHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelKickHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelKickHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelLeaveHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelLeaveHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelListHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelListHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelModeratorHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelModeratorHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelMuteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelMuteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelOwnerHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelOwnerHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/ChannelPasswordHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/channel/ChannelPasswordHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/combat/AttackSwingHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/combat/AttackSwingHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/combat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/friends/FriendAddHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/friends/FriendAddHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/friends/FriendDeleteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/friends/FriendDeleteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/friends/FriendDeleteIgnoreHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/friends/FriendDeleteIgnoreHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/friends/FriendIgnoreHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/friends/FriendIgnoreHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/friends/FriendsListHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/friends/FriendsListHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/friends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/gameobject/GameObjectQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/gameobject/GameObjectQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/gameobject/GameobjUseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/gameobject/GameobjUseHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/gameobject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupDisbandHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupDisbandHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupInviteAcceptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupInviteAcceptHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupInviteDeclineHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupInviteDeclineHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupInviteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupInviteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupLootMethodHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupLootMethodHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupSetLeaderHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupSetLeaderHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupUnInviteGuidHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupUnInviteGuidHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/GroupUnInviteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/GroupUnInviteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/MinimapPingHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/group/MinimapPingHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/group/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildCreateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildCreateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildDemoteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildDemoteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildDisbandHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildDisbandHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildInfoHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildInfoHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildInviteAcceptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildInviteAcceptHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildInviteDeclineHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildInviteDeclineHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildInviteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildInviteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildLeaderHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildLeaderHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildLeaveHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildLeaveHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildMOTDHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildMOTDHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildPromoteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildPromoteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildRemoveMemberHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildRemoveMemberHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildRosterHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildRosterHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/GuildSaveEmblemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/guild/GuildSaveEmblemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/guild/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/interface/AuthSessionHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/interface/AuthSessionHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/interface/CharCreateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/interface/CharCreateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/interface/CharDeleteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/interface/CharDeleteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/interface/CharEnumHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/interface/CharEnumHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/AutoequipItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/AutoequipItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/AutostoreBagItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/AutostoreBagItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/DestroyItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/DestroyItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/ItemQueryMultipleHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/ItemQueryMultipleHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/ItemQuerySingleHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/ItemQuerySingleHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/OpenItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/OpenItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/PageTextQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/PageTextQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/ReadItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/ReadItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/SplitItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/SplitItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/SwapInvItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/SwapInvItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/SwapItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/SwapItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/WrapItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/inventory/WrapItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/loot/AutostoreLootItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/loot/AutostoreLootItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/loot/LootMoneyHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/loot/LootMoneyHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/loot/LootReleaseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/loot/LootReleaseHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/loot/LootRequestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/loot/LootRequestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/loot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/ActivateTaxiHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/ActivateTaxiHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/BankerActivateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/BankerActivateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/BinderActivateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/BinderActivateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/BuyBankSlotHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/BuyBankSlotHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/BuyItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/BuyItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/BuyItemInSlotHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/BuyItemInSlotHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/CreatureQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/CreatureQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/ListInventoryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/ListInventoryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionBuyHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionBuyHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionOfferHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionOfferHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionShowSignaturesHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionShowSignaturesHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionShowlistHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionShowlistHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionSignHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionSignHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/PetitionTurnInHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/PetitionTurnInHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/SellItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/SellItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/TabardVendorActivateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/TabardVendorActivateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/TaxiNodeStatusQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/TaxiNodeStatusQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/TaxiQueryNodesHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/TaxiQueryNodesHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/TrainerBuySpellHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/TrainerBuySpellHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/TrainerListHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/npc/TrainerListHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/npc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/pet/PetAbandonHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/pet/PetAbandonHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/pet/PetActionHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/pet/PetActionHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/pet/PetNameQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/pet/PetNameQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/pet/PetRenameHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/pet/PetRenameHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/pet/PetSetActionHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/pet/PetSetActionHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/pet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/BootMeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/BootMeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/DebugAIStateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/DebugAIStateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/DuelAcceptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/DuelAcceptHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/DuelCanceledHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/DuelCanceledHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/GetDeathBindPointHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/GetDeathBindPointHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/InspectHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/InspectHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/LogoutCancelHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/LogoutCancelHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/LogoutRequestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/LogoutRequestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/MountSpecialAnimHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/MountSpecialAnimHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/MovementHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/MovementHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/NameQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/NameQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/NewSpellSlotHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/NewSpellSlotHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/PingHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/PingHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/PlayedTimeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/PlayedTimeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/PlayerLoginHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/PlayerLoginHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/PlayerLogoutHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/PlayerLogoutHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/PvPPortHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/PvPPortHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/RandomRollHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/RandomRollHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/RepopRequestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/RepopRequestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/ResurrectResponseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/ResurrectResponseHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/SetActionButtonHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/SetActionButtonHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/SetDeathBindPointHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/SetDeathBindPointHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/SetWeaponModeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/SetWeaponModeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/StandStateChangeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/StandStateChangeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/BeastMasterHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/BeastMasterHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/CheatSetMoneyHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/CheatSetMoneyHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/CooldownCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/CooldownCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/CreateItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/CreateItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/CreateMonsterHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/CreateMonsterHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/DestroyMonsterHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/DestroyMonsterHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/GMSummonHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/GMSummonHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/GodModeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/GodModeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/LearnSpellCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/LearnSpellCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/LevelCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/LevelCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/LevelUpCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/LevelUpCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/MakeMonsterAttackMeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/MakeMonsterAttackMeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/PetLevelCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/PetLevelCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/RechargeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/RechargeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/SpeedCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/SpeedCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/TaxiClearAllNodesHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/TaxiClearAllNodesHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/TaxiEnableAllNodesHandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/TaxiEnableAllNodesHandlers.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/TeleportToPlayerHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/TeleportToPlayerHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/TriggerCinematicCheatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/player/cheats/TriggerCinematicCheatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/player/cheats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestConfirmAcceptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestConfirmAcceptHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverAcceptQuestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverAcceptQuestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverChooseRewardHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverChooseRewardHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverCompleteQuestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverCompleteQuestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverHelloHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverHelloHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverQueryQuestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverQueryQuestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverRemoveQuestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverRemoveQuestHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverRequestReward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverRequestReward.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestGiverStatusHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestGiverStatusHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/QuestQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/quest/QuestQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/quest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/BugHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/social/BugHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/ChatHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/social/ChatHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/LookingForGroupHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/social/LookingForGroupHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/PlayerMacroHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/social/PlayerMacroHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/TextEmoteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/social/TextEmoteHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/WhoHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/social/WhoHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/social/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/spell/CancelAuraHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/spell/CancelAuraHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/spell/CancelCastHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/spell/CancelCastHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/spell/CancelChannellingHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/spell/CancelChannellingHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/spell/CastSpellHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/spell/CastSpellHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/spell/UseItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/spell/UseItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/spell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/AcceptTradeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/AcceptTradeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/BeginTradeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/BeginTradeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/CancelTradeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/CancelTradeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/ClearTradeItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/ClearTradeItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/InitiateTradeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/InitiateTradeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/SetTradeGoldHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/SetTradeGoldHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/SetTradeItemHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/SetTradeItemHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/UnacceptTradeHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/trade/UnacceptTradeHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/trade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/unit/SetSelectionHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/unit/SetSelectionHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/unit/SetTargetHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/unit/SetTargetHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/world/AreaTriggerHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/world/AreaTriggerHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/world/TimeQueryHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/world/TimeQueryHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/world/WorldTeleportHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/world/WorldTeleportHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/world/ZoneUpdateHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/game/world/opcode_handling/handlers/world/ZoneUpdateHandler.py -------------------------------------------------------------------------------- /game/world/opcode_handling/handlers/world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/main.py -------------------------------------------------------------------------------- /namigator/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/namigator/README.txt -------------------------------------------------------------------------------- /network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/packet/PacketReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/PacketReader.py -------------------------------------------------------------------------------- /network/packet/PacketWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/PacketWriter.py -------------------------------------------------------------------------------- /network/packet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/packet/update/UpdateBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/update/UpdateBuilder.py -------------------------------------------------------------------------------- /network/packet/update/UpdateData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/update/UpdateData.py -------------------------------------------------------------------------------- /network/packet/update/UpdateManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/update/UpdateManager.py -------------------------------------------------------------------------------- /network/packet/update/UpdateMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/update/UpdateMask.py -------------------------------------------------------------------------------- /network/packet/update/UpdatePacketFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/packet/update/UpdatePacketFactory.py -------------------------------------------------------------------------------- /network/packet/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/sockets/SocketBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/network/sockets/SocketBuilder.py -------------------------------------------------------------------------------- /network/sockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bitarray 2 | PyYAML 3 | colorama 4 | SQLAlchemy 5 | pymysql 6 | apscheduler 7 | requests 8 | -------------------------------------------------------------------------------- /tools/ClassTrainersSkillsGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/ClassTrainersSkillsGenerator.py -------------------------------------------------------------------------------- /tools/CreatureCacheParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/CreatureCacheParser.py -------------------------------------------------------------------------------- /tools/ItemCacheParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/ItemCacheParser.py -------------------------------------------------------------------------------- /tools/QuestCacheParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/QuestCacheParser.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/Extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/Extractor.py -------------------------------------------------------------------------------- /tools/extractors/MapExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/MapExtractor.py -------------------------------------------------------------------------------- /tools/extractors/NavExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/NavExtractor.py -------------------------------------------------------------------------------- /tools/extractors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/definitions/Adt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/Adt.py -------------------------------------------------------------------------------- /tools/extractors/definitions/Wdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/Wdt.py -------------------------------------------------------------------------------- /tools/extractors/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/CLID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/CLID.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MCLQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MCLQ.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MCVT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MCVT.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MDDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MDDF.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MDNM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MDNM.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MHDR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MHDR.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MLIQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MLIQ.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MODF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MODF.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MOHD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MOHD.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MONM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MONM.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MOPY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MOPY.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MOVI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MOVI.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MOVT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MOVT.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/MPHD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/MPHD.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/TileHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/TileHeader.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/TileInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/chunks/TileInformation.py -------------------------------------------------------------------------------- /tools/extractors/definitions/chunks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/definitions/enums/LiquidFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/enums/LiquidFlags.py -------------------------------------------------------------------------------- /tools/extractors/definitions/enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/CAaBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/CAaBox.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/Doodad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/Doodad.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/Index3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/Index3.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/Vector3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/Vector3.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/Vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/Vertex.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/Wmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/Wmo.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/WmoGroupFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/objects/WmoGroupFile.py -------------------------------------------------------------------------------- /tools/extractors/definitions/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/definitions/reader/StreamReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/definitions/reader/StreamReader.py -------------------------------------------------------------------------------- /tools/extractors/definitions/reader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/helpers/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/helpers/Constants.py -------------------------------------------------------------------------------- /tools/extractors/helpers/DataHolders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/helpers/DataHolders.py -------------------------------------------------------------------------------- /tools/extractors/helpers/HeightField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/helpers/HeightField.py -------------------------------------------------------------------------------- /tools/extractors/helpers/LiquidAdtWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/helpers/LiquidAdtWriter.py -------------------------------------------------------------------------------- /tools/extractors/helpers/WmoLiquidParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/helpers/WmoLiquidParser.py -------------------------------------------------------------------------------- /tools/extractors/helpers/WmoLiquidWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/helpers/WmoLiquidWriter.py -------------------------------------------------------------------------------- /tools/extractors/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/pydbclib/DbcReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pydbclib/DbcReader.py -------------------------------------------------------------------------------- /tools/extractors/pydbclib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extractors/pydbclib/helpers/VanillaAreaHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pydbclib/helpers/VanillaAreaHelper.py -------------------------------------------------------------------------------- /tools/extractors/pydbclib/structs/AreaTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pydbclib/structs/AreaTable.py -------------------------------------------------------------------------------- /tools/extractors/pydbclib/structs/DbcHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pydbclib/structs/DbcHeader.py -------------------------------------------------------------------------------- /tools/extractors/pydbclib/structs/Map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pydbclib/structs/Map.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/MpqArchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pympqlib/MpqArchive.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/MpqEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pympqlib/MpqEntry.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/MpqFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pympqlib/MpqFlags.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/MpqHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pympqlib/MpqHash.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/MpqHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pympqlib/MpqHeader.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/MpqReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/tools/extractors/pympqlib/MpqReader.py -------------------------------------------------------------------------------- /tools/extractors/pympqlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ByteUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/ByteUtils.py -------------------------------------------------------------------------------- /utils/ChatLogManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/ChatLogManager.py -------------------------------------------------------------------------------- /utils/ConfigManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/ConfigManager.py -------------------------------------------------------------------------------- /utils/Float16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/Float16.py -------------------------------------------------------------------------------- /utils/Formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/Formulas.py -------------------------------------------------------------------------------- /utils/GitUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/GitUtils.py -------------------------------------------------------------------------------- /utils/GuidUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/GuidUtils.py -------------------------------------------------------------------------------- /utils/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/Logger.py -------------------------------------------------------------------------------- /utils/Matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/Matrix.py -------------------------------------------------------------------------------- /utils/ObjectQueryUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/ObjectQueryUtils.py -------------------------------------------------------------------------------- /utils/PathManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/PathManager.py -------------------------------------------------------------------------------- /utils/Srp6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/Srp6.py -------------------------------------------------------------------------------- /utils/SysUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/SysUtils.py -------------------------------------------------------------------------------- /utils/TextUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/TextUtils.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/constants/AuthCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/AuthCodes.py -------------------------------------------------------------------------------- /utils/constants/CharCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/CharCodes.py -------------------------------------------------------------------------------- /utils/constants/ConditionCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/ConditionCodes.py -------------------------------------------------------------------------------- /utils/constants/CustomCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/CustomCodes.py -------------------------------------------------------------------------------- /utils/constants/DuelCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/DuelCodes.py -------------------------------------------------------------------------------- /utils/constants/EnvVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/EnvVars.py -------------------------------------------------------------------------------- /utils/constants/GroupCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/GroupCodes.py -------------------------------------------------------------------------------- /utils/constants/ItemCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/ItemCodes.py -------------------------------------------------------------------------------- /utils/constants/MiscCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/MiscCodes.py -------------------------------------------------------------------------------- /utils/constants/MiscFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/MiscFlags.py -------------------------------------------------------------------------------- /utils/constants/OpCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/OpCodes.py -------------------------------------------------------------------------------- /utils/constants/PetCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/PetCodes.py -------------------------------------------------------------------------------- /utils/constants/ScriptCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/ScriptCodes.py -------------------------------------------------------------------------------- /utils/constants/SpellCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/SpellCodes.py -------------------------------------------------------------------------------- /utils/constants/UnitCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/UnitCodes.py -------------------------------------------------------------------------------- /utils/constants/UpdateFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-core/HEAD/utils/constants/UpdateFields.py -------------------------------------------------------------------------------- /utils/constants/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------