├── .gitattributes ├── .gitignore ├── Common ├── Common.csproj ├── Constants │ ├── AuthCodes.cs │ ├── Enums.cs │ ├── FormulaData.cs │ ├── Opcodes.cs │ ├── Structs.cs │ └── UpdateFields.cs ├── Cryptography │ └── Srp6.cs ├── Database │ ├── BaseContext.cs │ ├── DBC │ │ ├── CustomTypes │ │ │ └── Unused.cs │ │ ├── DBC.cs │ │ ├── Reader │ │ │ ├── BinaryReaderExtensions.cs │ │ │ ├── DBHeader.cs │ │ │ ├── DBReader.cs │ │ │ └── DBReaderExtensions.cs │ │ └── Structures │ │ │ ├── AreaTable.cs │ │ │ ├── BankBagSlotPrices.cs │ │ │ ├── CharBaseInfo.cs │ │ │ ├── CharStartOutfit.cs │ │ │ ├── ChrProficiency.cs │ │ │ ├── ChrRaces.cs │ │ │ ├── EmotesText.cs │ │ │ ├── FactionTemplate.cs │ │ │ ├── Lock.cs │ │ │ ├── LockType.cs │ │ │ ├── SkillLine.cs │ │ │ ├── SkillLineAbility.cs │ │ │ ├── Spell.cs │ │ │ ├── SpellCastTimes.cs │ │ │ ├── SpellDuration.cs │ │ │ ├── SpellRadius.cs │ │ │ ├── SpellRange.cs │ │ │ └── WorldSafeLocs.cs │ └── TableAttributes.cs ├── Helpers │ ├── Extensions.cs │ ├── Flag.cs │ ├── Quaternion.cs │ └── Vector.cs ├── Logging │ ├── Log.cs │ └── LogTypes.cs ├── Network │ ├── ByteConverter.cs │ └── Packets │ │ ├── PacketReader.cs │ │ ├── PacketWriter.cs │ │ └── UpdateClass.cs ├── Properties │ └── AssemblyInfo.cs ├── Singleton │ ├── Singleton.cs │ └── SingletonBase.cs ├── app.config └── packages.config ├── Database ├── OLD_original.zip ├── Updates │ ├── creature_spells.sql │ └── updates.sql └── alpha_world.sql ├── README.md ├── WorldServer ├── Game │ ├── Commands │ │ ├── CommandParser.cs │ │ ├── ConsoleManager.cs │ │ └── GameMasterCommands.cs │ ├── Globals.cs │ ├── Managers │ │ ├── ChatManager.cs │ │ ├── GridManager.cs │ │ ├── InventoryManager.cs │ │ ├── ScriptMgr.cs │ │ └── StatManager.cs │ ├── Objects │ │ ├── Account.cs │ │ ├── Container.cs │ │ ├── Creature.cs │ │ ├── GameObject.cs │ │ ├── Group.cs │ │ ├── Item.cs │ │ ├── Player.cs │ │ ├── PlayerExtensions │ │ │ ├── FriendExtension.cs │ │ │ ├── LootExtension.cs │ │ │ ├── QuestExtension.cs │ │ │ ├── SkillExtension.cs │ │ │ ├── TalentExtension.cs │ │ │ └── TradeExtension.cs │ │ ├── Quest.cs │ │ ├── SpellEffect.cs │ │ ├── Unit.cs │ │ ├── UnitExtensions │ │ │ ├── FactionExtension.cs │ │ │ ├── SpellExtension.cs │ │ │ └── TalentExtension.cs │ │ └── WorldObject.cs │ └── Structs │ │ ├── AreaTrigger.cs │ │ ├── CreatureStructs.cs │ │ ├── CreatureTemplate.cs │ │ ├── GameObjectStructs.cs │ │ ├── GameObjectTemplate.cs │ │ ├── ItemStructs.cs │ │ ├── ItemTemplate.cs │ │ ├── PlayerStructs.cs │ │ ├── QuestTemplate.cs │ │ ├── SpellStructs.cs │ │ ├── Ticket.cs │ │ ├── UnitStructs.cs │ │ └── Worldports.cs ├── Network │ ├── RealmManager.cs │ ├── RealmSocket.cs │ ├── WorldManager.cs │ └── WorldSocket.cs ├── Packets │ ├── HandlerDefinitions.cs │ ├── Handlers │ │ ├── AuthHandler.cs │ │ ├── CharHandler.cs │ │ ├── ChatHandler.cs │ │ ├── CreatureHandler.cs │ │ ├── FriendHandler.cs │ │ ├── GameObjectHandler.cs │ │ ├── GroupHandler.cs │ │ ├── ItemHandler.cs │ │ ├── LootHandler.cs │ │ ├── MiscHandler.cs │ │ ├── MovementHandler.cs │ │ ├── NPCHandler.cs │ │ ├── NetHandler.cs │ │ ├── QuestHandler.cs │ │ ├── SpellHandler.cs │ │ ├── TradeHandler.cs │ │ └── WorldHandler.cs │ └── PacketManager.cs ├── Properties │ └── AssemblyInfo.cs ├── Storage │ ├── Database.cs │ ├── DatabaseExtension.cs │ ├── DbSet.cs │ └── GroupedDbSet.cs ├── WorldServer.cs ├── WorldServer.csproj ├── app.config.dist └── packages.config ├── alpha-legends.sln ├── dist └── Config.wtf └── packages ├── BouncyCastle.1.8.3.1 ├── .signature.p7s ├── BouncyCastle.1.8.3.1.nupkg ├── README.md └── lib │ └── BouncyCastle.Crypto.dll ├── Google.Protobuf.3.6.1 ├── .signature.p7s ├── Google.Protobuf.3.6.1.nupkg └── lib │ ├── net45 │ ├── Google.Protobuf.dll │ └── Google.Protobuf.xml │ └── netstandard1.0 │ ├── Google.Protobuf.dll │ └── Google.Protobuf.xml ├── MySql.Data.7.0.2-DMR ├── .signature.p7s ├── CHANGES ├── MySql.Data.7.0.2-DMR.nupkg ├── Readme.txt ├── content │ ├── app.config.transform │ └── web.config.transform └── lib │ ├── net40 │ ├── MySql.Data.XML │ └── MySql.Data.dll │ └── net45 │ ├── MySql.Data.XML │ └── MySql.Data.dll ├── MySql.Data.8.0.17 ├── .signature.p7s ├── MySql.Data.8.0.17.nupkg └── lib │ ├── net452 │ ├── MySql.Data.dll │ └── MySql.Data.xml │ ├── netstandard1.6 │ ├── MySql.Data.dll │ └── MySql.Data.xml │ └── netstandard2.0 │ ├── MySql.Data.dll │ └── MySql.Data.xml ├── Newtonsoft.Json.9.0.1 ├── .signature.p7s ├── Newtonsoft.Json.9.0.1.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── SSH.NET.2016.1.0 ├── .signature.p7s ├── SSH.NET.2016.1.0.nupkg └── lib │ ├── net35 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ ├── net40 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ ├── netstandard1.3 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ ├── sl4 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ ├── sl5 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ ├── uap10 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ ├── wp71 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml │ └── wp8 │ ├── Renci.SshNet.dll │ └── Renci.SshNet.xml └── SharpZipLib.1.2.0 ├── .signature.p7s ├── SharpZipLib.1.2.0.nupkg └── lib ├── net45 ├── ICSharpCode.SharpZipLib.dll ├── ICSharpCode.SharpZipLib.pdb └── ICSharpCode.SharpZipLib.xml └── netstandard2.0 ├── ICSharpCode.SharpZipLib.dll ├── ICSharpCode.SharpZipLib.pdb └── ICSharpCode.SharpZipLib.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/Constants/AuthCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Constants/AuthCodes.cs -------------------------------------------------------------------------------- /Common/Constants/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Constants/Enums.cs -------------------------------------------------------------------------------- /Common/Constants/FormulaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Constants/FormulaData.cs -------------------------------------------------------------------------------- /Common/Constants/Opcodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Constants/Opcodes.cs -------------------------------------------------------------------------------- /Common/Constants/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Constants/Structs.cs -------------------------------------------------------------------------------- /Common/Constants/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Constants/UpdateFields.cs -------------------------------------------------------------------------------- /Common/Cryptography/Srp6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Cryptography/Srp6.cs -------------------------------------------------------------------------------- /Common/Database/BaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/BaseContext.cs -------------------------------------------------------------------------------- /Common/Database/DBC/CustomTypes/Unused.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/CustomTypes/Unused.cs -------------------------------------------------------------------------------- /Common/Database/DBC/DBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/DBC.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Reader/BinaryReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Reader/BinaryReaderExtensions.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Reader/DBHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Reader/DBHeader.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Reader/DBReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Reader/DBReader.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Reader/DBReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Reader/DBReaderExtensions.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/AreaTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/AreaTable.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/BankBagSlotPrices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/BankBagSlotPrices.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/CharBaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/CharBaseInfo.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/CharStartOutfit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/CharStartOutfit.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/ChrProficiency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/ChrProficiency.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/ChrRaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/ChrRaces.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/EmotesText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/EmotesText.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/FactionTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/FactionTemplate.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/Lock.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/LockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/LockType.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/SkillLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/SkillLine.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/SkillLineAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/SkillLineAbility.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/Spell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/Spell.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/SpellCastTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/SpellCastTimes.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/SpellDuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/SpellDuration.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/SpellRadius.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/SpellRadius.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/SpellRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/SpellRange.cs -------------------------------------------------------------------------------- /Common/Database/DBC/Structures/WorldSafeLocs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/DBC/Structures/WorldSafeLocs.cs -------------------------------------------------------------------------------- /Common/Database/TableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Database/TableAttributes.cs -------------------------------------------------------------------------------- /Common/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Helpers/Extensions.cs -------------------------------------------------------------------------------- /Common/Helpers/Flag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Helpers/Flag.cs -------------------------------------------------------------------------------- /Common/Helpers/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Helpers/Quaternion.cs -------------------------------------------------------------------------------- /Common/Helpers/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Helpers/Vector.cs -------------------------------------------------------------------------------- /Common/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Logging/Log.cs -------------------------------------------------------------------------------- /Common/Logging/LogTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Logging/LogTypes.cs -------------------------------------------------------------------------------- /Common/Network/ByteConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Network/ByteConverter.cs -------------------------------------------------------------------------------- /Common/Network/Packets/PacketReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Network/Packets/PacketReader.cs -------------------------------------------------------------------------------- /Common/Network/Packets/PacketWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Network/Packets/PacketWriter.cs -------------------------------------------------------------------------------- /Common/Network/Packets/UpdateClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Network/Packets/UpdateClass.cs -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/Singleton/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Singleton/Singleton.cs -------------------------------------------------------------------------------- /Common/Singleton/SingletonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/Singleton/SingletonBase.cs -------------------------------------------------------------------------------- /Common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/app.config -------------------------------------------------------------------------------- /Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Common/packages.config -------------------------------------------------------------------------------- /Database/OLD_original.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Database/OLD_original.zip -------------------------------------------------------------------------------- /Database/Updates/creature_spells.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Database/Updates/creature_spells.sql -------------------------------------------------------------------------------- /Database/Updates/updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Database/Updates/updates.sql -------------------------------------------------------------------------------- /Database/alpha_world.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/Database/alpha_world.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/README.md -------------------------------------------------------------------------------- /WorldServer/Game/Commands/CommandParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Commands/CommandParser.cs -------------------------------------------------------------------------------- /WorldServer/Game/Commands/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Commands/ConsoleManager.cs -------------------------------------------------------------------------------- /WorldServer/Game/Commands/GameMasterCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Commands/GameMasterCommands.cs -------------------------------------------------------------------------------- /WorldServer/Game/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Globals.cs -------------------------------------------------------------------------------- /WorldServer/Game/Managers/ChatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Managers/ChatManager.cs -------------------------------------------------------------------------------- /WorldServer/Game/Managers/GridManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Managers/GridManager.cs -------------------------------------------------------------------------------- /WorldServer/Game/Managers/InventoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Managers/InventoryManager.cs -------------------------------------------------------------------------------- /WorldServer/Game/Managers/ScriptMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Managers/ScriptMgr.cs -------------------------------------------------------------------------------- /WorldServer/Game/Managers/StatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Managers/StatManager.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Account.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Container.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Creature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Creature.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/GameObject.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Group.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Item.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Player.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/PlayerExtensions/FriendExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/PlayerExtensions/FriendExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/PlayerExtensions/LootExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/PlayerExtensions/LootExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/PlayerExtensions/QuestExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/PlayerExtensions/QuestExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/PlayerExtensions/SkillExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/PlayerExtensions/SkillExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/PlayerExtensions/TalentExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/PlayerExtensions/TalentExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/PlayerExtensions/TradeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/PlayerExtensions/TradeExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Quest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Quest.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/SpellEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/SpellEffect.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/Unit.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/UnitExtensions/FactionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/UnitExtensions/FactionExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/UnitExtensions/SpellExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/UnitExtensions/SpellExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/UnitExtensions/TalentExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/UnitExtensions/TalentExtension.cs -------------------------------------------------------------------------------- /WorldServer/Game/Objects/WorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Objects/WorldObject.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/AreaTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/AreaTrigger.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/CreatureStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/CreatureStructs.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/CreatureTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/CreatureTemplate.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/GameObjectStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/GameObjectStructs.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/GameObjectTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/GameObjectTemplate.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/ItemStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/ItemStructs.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/ItemTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/ItemTemplate.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/PlayerStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/PlayerStructs.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/QuestTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/QuestTemplate.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/SpellStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/SpellStructs.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/Ticket.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/UnitStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/UnitStructs.cs -------------------------------------------------------------------------------- /WorldServer/Game/Structs/Worldports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Game/Structs/Worldports.cs -------------------------------------------------------------------------------- /WorldServer/Network/RealmManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Network/RealmManager.cs -------------------------------------------------------------------------------- /WorldServer/Network/RealmSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Network/RealmSocket.cs -------------------------------------------------------------------------------- /WorldServer/Network/WorldManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Network/WorldManager.cs -------------------------------------------------------------------------------- /WorldServer/Network/WorldSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Network/WorldSocket.cs -------------------------------------------------------------------------------- /WorldServer/Packets/HandlerDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/HandlerDefinitions.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/AuthHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/AuthHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/CharHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/CharHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/ChatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/ChatHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/CreatureHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/CreatureHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/FriendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/FriendHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/GameObjectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/GameObjectHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/GroupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/GroupHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/ItemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/ItemHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/LootHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/LootHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/MiscHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/MiscHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/MovementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/MovementHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/NPCHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/NPCHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/NetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/NetHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/QuestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/QuestHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/SpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/SpellHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/TradeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/TradeHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/Handlers/WorldHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/Handlers/WorldHandler.cs -------------------------------------------------------------------------------- /WorldServer/Packets/PacketManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Packets/PacketManager.cs -------------------------------------------------------------------------------- /WorldServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WorldServer/Storage/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Storage/Database.cs -------------------------------------------------------------------------------- /WorldServer/Storage/DatabaseExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Storage/DatabaseExtension.cs -------------------------------------------------------------------------------- /WorldServer/Storage/DbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Storage/DbSet.cs -------------------------------------------------------------------------------- /WorldServer/Storage/GroupedDbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/Storage/GroupedDbSet.cs -------------------------------------------------------------------------------- /WorldServer/WorldServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/WorldServer.cs -------------------------------------------------------------------------------- /WorldServer/WorldServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/WorldServer.csproj -------------------------------------------------------------------------------- /WorldServer/app.config.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/app.config.dist -------------------------------------------------------------------------------- /WorldServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/WorldServer/packages.config -------------------------------------------------------------------------------- /alpha-legends.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/alpha-legends.sln -------------------------------------------------------------------------------- /dist/Config.wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/dist/Config.wtf -------------------------------------------------------------------------------- /packages/BouncyCastle.1.8.3.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/BouncyCastle.1.8.3.1/.signature.p7s -------------------------------------------------------------------------------- /packages/BouncyCastle.1.8.3.1/BouncyCastle.1.8.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/BouncyCastle.1.8.3.1/BouncyCastle.1.8.3.1.nupkg -------------------------------------------------------------------------------- /packages/BouncyCastle.1.8.3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/BouncyCastle.1.8.3.1/README.md -------------------------------------------------------------------------------- /packages/BouncyCastle.1.8.3.1/lib/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/BouncyCastle.1.8.3.1/lib/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /packages/Google.Protobuf.3.6.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Google.Protobuf.3.6.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Google.Protobuf.3.6.1/Google.Protobuf.3.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Google.Protobuf.3.6.1/Google.Protobuf.3.6.1.nupkg -------------------------------------------------------------------------------- /packages/Google.Protobuf.3.6.1/lib/net45/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Google.Protobuf.3.6.1/lib/net45/Google.Protobuf.dll -------------------------------------------------------------------------------- /packages/Google.Protobuf.3.6.1/lib/net45/Google.Protobuf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Google.Protobuf.3.6.1/lib/net45/Google.Protobuf.xml -------------------------------------------------------------------------------- /packages/Google.Protobuf.3.6.1/lib/netstandard1.0/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Google.Protobuf.3.6.1/lib/netstandard1.0/Google.Protobuf.dll -------------------------------------------------------------------------------- /packages/Google.Protobuf.3.6.1/lib/netstandard1.0/Google.Protobuf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Google.Protobuf.3.6.1/lib/netstandard1.0/Google.Protobuf.xml -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/.signature.p7s -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/CHANGES -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/MySql.Data.7.0.2-DMR.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/MySql.Data.7.0.2-DMR.nupkg -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/Readme.txt -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/content/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/content/app.config.transform -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/content/web.config.transform -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/lib/net40/MySql.Data.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/lib/net40/MySql.Data.XML -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/lib/net40/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/lib/net40/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/lib/net45/MySql.Data.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/lib/net45/MySql.Data.XML -------------------------------------------------------------------------------- /packages/MySql.Data.7.0.2-DMR/lib/net45/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.7.0.2-DMR/lib/net45/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/.signature.p7s -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/MySql.Data.8.0.17.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/MySql.Data.8.0.17.nupkg -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/lib/net452/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/lib/net452/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/lib/net452/MySql.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/lib/net452/MySql.Data.xml -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/lib/netstandard1.6/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/lib/netstandard1.6/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/lib/netstandard1.6/MySql.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/lib/netstandard1.6/MySql.Data.xml -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/lib/netstandard2.0/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/lib/netstandard2.0/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.8.0.17/lib/netstandard2.0/MySql.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/MySql.Data.8.0.17/lib/netstandard2.0/MySql.Data.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/Newtonsoft.Json.9.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/SSH.NET.2016.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/SSH.NET.2016.1.0.nupkg -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/net35/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/net35/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/net35/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/net35/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/net40/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/net40/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/net40/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/net40/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/netstandard1.3/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/netstandard1.3/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/netstandard1.3/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/netstandard1.3/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/sl4/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/sl4/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/sl4/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/sl4/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/sl5/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/sl5/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/sl5/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/sl5/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/uap10/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/uap10/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/uap10/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/uap10/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/wp71/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/wp71/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/wp71/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/wp71/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/wp8/Renci.SshNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/wp8/Renci.SshNet.dll -------------------------------------------------------------------------------- /packages/SSH.NET.2016.1.0/lib/wp8/Renci.SshNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SSH.NET.2016.1.0/lib/wp8/Renci.SshNet.xml -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/.signature.p7s -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/SharpZipLib.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/SharpZipLib.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/lib/net45/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/lib/net45/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/lib/net45/ICSharpCode.SharpZipLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/lib/net45/ICSharpCode.SharpZipLib.pdb -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/lib/net45/ICSharpCode.SharpZipLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/lib/net45/ICSharpCode.SharpZipLib.xml -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb -------------------------------------------------------------------------------- /packages/SharpZipLib.1.2.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Alpha-Project/alpha-legends/HEAD/packages/SharpZipLib.1.2.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.xml --------------------------------------------------------------------------------