├── .gitignore ├── README.md ├── config ├── loginserver_config.yml └── network_config.yml ├── data ├── cm_opcodes.dat ├── cm_opcodes.dat.ru ├── packet_result_codes.dat ├── sm_opcodes.dat └── sm_opcodes.dat.ru ├── src ├── LAdotNET.GameServer │ ├── Gameserver.cs │ ├── LAdotNET.GameServer.csproj │ ├── Network │ │ └── Packets │ │ │ ├── Client │ │ │ ├── CMPCCreateRequest.cs │ │ │ ├── CMPCNameCheckRequest.cs │ │ │ ├── CMPCSelectRequest.cs │ │ │ ├── CMSlideNoticeUpdate.cs │ │ │ ├── CMUnknownPacket1.cs │ │ │ └── CMUnknownPacket2.cs │ │ │ └── Server │ │ │ ├── SMAuxPasswordAsk.cs │ │ │ ├── SMEnterWorldCompleted.cs │ │ │ ├── SMPCCreateResult.cs │ │ │ ├── SMPCListResult.cs │ │ │ ├── SMPCNameCheckResult.cs │ │ │ ├── SMPCRoomStateNotify.cs │ │ │ ├── SMPCSelectResult.cs │ │ │ ├── SMPaidCashCheckResult.cs │ │ │ ├── SMPaidPurchaseCheckResult.cs │ │ │ ├── SMPaidShopSettingNotify.cs │ │ │ ├── SMSlideNoticeUpdateNotify.cs │ │ │ └── SMWallpaperListResult.cs │ └── Program.cs ├── LAdotNET.LoginServer │ ├── Config │ │ ├── LoginConfig.cs │ │ └── LoginServerConfiguration.cs │ ├── LAdotNET.LoginServer.csproj │ ├── Loginserver.cs │ ├── Network │ │ └── Packets │ │ │ ├── Client │ │ │ ├── CMLoginRequest.cs │ │ │ ├── CMVersionCheckRequest.cs │ │ │ └── CMWorldSelectRequest.cs │ │ │ └── Server │ │ │ ├── SMLoginResult.cs │ │ │ ├── SMPCRoomStateNotify.cs │ │ │ ├── SMVersionCheckResult.cs │ │ │ └── SMWorldSelectResult.cs │ └── Program.cs ├── LAdotNET.WorldServer │ ├── LAdotNET.WorldServer.csproj │ ├── Network │ │ └── Packets │ │ │ ├── Client │ │ │ ├── CMMove.cs │ │ │ ├── CMPing.cs │ │ │ ├── CMSetLoadingScreenGraphic.cs │ │ │ └── CMSlideNoticeUpdate.cs │ │ │ └── Server │ │ │ ├── Init │ │ │ ├── SMInitAbility.cs │ │ │ ├── SMInitAchievementActive.cs │ │ │ ├── SMInitAdventureMatter.cs │ │ │ ├── SMInitBattleSlot.cs │ │ │ ├── SMInitCalendar.cs │ │ │ ├── SMInitCard.cs │ │ │ ├── SMInitCardDeck.cs │ │ │ ├── SMInitChaosDungeonRewardCount.cs │ │ │ ├── SMInitCharacterTendency.cs │ │ │ ├── SMInitCompletedQuest.cs │ │ │ ├── SMInitContentsConfig.cs │ │ │ ├── SMInitContinent.cs │ │ │ ├── SMInitCoopQuest.cs │ │ │ ├── SMInitCrew.cs │ │ │ ├── SMInitCumulativePoint.cs │ │ │ ├── SMInitCumulativePointReward.cs │ │ │ ├── SMInitDungeonQuest.cs │ │ │ ├── SMInitEnv.cs │ │ │ ├── SMInitEquipPreset.cs │ │ │ ├── SMInitExpedition.cs │ │ │ ├── SMInitItemAddMaxCount.cs │ │ │ ├── SMInitLifeFishPot.cs │ │ │ ├── SMInitLifeHuntingTrap.cs │ │ │ ├── SMInitLifeSkill.cs │ │ │ ├── SMInitMail.cs │ │ │ ├── SMInitMusic.cs │ │ │ ├── SMInitNpcFriendship.cs │ │ │ ├── SMInitNpcFriendshipAction.cs │ │ │ ├── SMInitNpcFriendshipTalk.cs │ │ │ ├── SMInitPC.cs │ │ │ ├── SMInitPaidAction.cs │ │ │ ├── SMInitPaidBuff.cs │ │ │ ├── SMInitPet.cs │ │ │ ├── SMInitPropCollecting.cs │ │ │ ├── SMInitPvp.cs │ │ │ ├── SMInitQuest.cs │ │ │ ├── SMInitQuestPointReward.cs │ │ │ ├── SMInitRaid.cs │ │ │ ├── SMInitSail.cs │ │ │ ├── SMInitShip.cs │ │ │ ├── SMInitShipAvatar.cs │ │ │ ├── SMInitSkill.cs │ │ │ ├── SMInitSkillPreset.cs │ │ │ ├── SMInitSocialSkill.cs │ │ │ ├── SMInitSquareHole.cs │ │ │ ├── SMInitVehicle.cs │ │ │ ├── SMInitVoyageExploration.cs │ │ │ ├── SMInitWarpPoint.cs │ │ │ └── SMInitZonePiece.cs │ │ │ ├── SMAddonSkillFeatureChangeNotify.cs │ │ │ ├── SMBattleSlotUpdateNotify.cs │ │ │ ├── SMBattlefieldWeeklyRewardNotify.cs │ │ │ ├── SMCommonActionListAddNotify.cs │ │ │ ├── SMDungeonFirstVisitorNotify.cs │ │ │ ├── SMIdentityChangeNotify.cs │ │ │ ├── SMImmuneStatusNotify.cs │ │ │ ├── SMInstanceZoneEnteredNotify.cs │ │ │ ├── SMLoadCompleteResult.cs │ │ │ ├── SMModStatisticNotify.cs │ │ │ ├── SMMoveNotify.cs │ │ │ ├── SMMusicReturnPositionNotify.cs │ │ │ ├── SMNewZone.cs │ │ │ ├── SMPaidServiceCheckResult.cs │ │ │ ├── SMParalyzationStateNotify.cs │ │ │ ├── SMPermanentAttrAcquireNotify.cs │ │ │ ├── SMReverseRuinStageInit.cs │ │ │ ├── SMServerTimeNotify.cs │ │ │ ├── SMStatChangeNotify.cs │ │ │ ├── SMStatusEffectAddNotify.cs │ │ │ ├── SMVoyageLuckNotify.cs │ │ │ ├── SMZoneMemberLoadStatusNotify.cs │ │ │ └── SMZoneTraitNotify.cs │ ├── Program.cs │ └── Worldserver.cs ├── LAdotNET.sln ├── LAdotNET │ ├── Account.cs │ ├── Config │ │ ├── Configuration.cs │ │ └── NetworkConfig.cs │ ├── Extensions │ │ └── ByteBufferExt.cs │ ├── LAdotNET.csproj │ ├── NLog.config │ ├── Network │ │ ├── Connection.cs │ │ ├── Encryption │ │ │ ├── Counter.cs │ │ │ ├── LACrypt.cs │ │ │ └── LACryptRU.cs │ │ ├── Packets │ │ │ ├── Packet.cs │ │ │ ├── PacketDecoder.cs │ │ │ ├── PacketEncoder.cs │ │ │ ├── PacketFactory.cs │ │ │ └── PacketHandler.cs │ │ └── TCPServer.cs │ └── Utils │ │ ├── ConsoleUtils.cs │ │ └── HexUtils.cs └── start_servers.bat └── tools ├── LAOffsetUpdater ├── AddressObject.cs ├── App.config ├── LAOffsetUpdater.csproj ├── LAOffsetUpdater.sln ├── MemoryReader.cs ├── MyProcess.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ScanType.cs ├── ValueType.cs └── Win32.cs ├── LAdotNET.GameLauncher ├── LAdotNET.GameLauncher.sln └── LAdotNET.GameLauncher │ ├── HexDump.cs │ ├── Injector.cs │ ├── LAdotNET.GameLauncher.csproj │ ├── Program.cs │ ├── Reply.cs │ └── app1.manifest └── LAdotNET.Sniffer ├── ByteBuffer.cpp ├── ByteBuffer.hpp ├── Counter.cpp ├── Counter.h ├── Enums.h ├── Hooks.cpp ├── Hooks.h ├── INIReader.h ├── LAdotNET.Sniffer.sln ├── LAdotNET.Sniffer.vcxproj ├── LAdotNET.Sniffer.vcxproj.filters ├── Logger.cpp ├── Logger.h ├── Packet.cpp ├── Packet.h ├── Scanner.cpp ├── Scanner.h ├── Settings.cpp ├── Settings.h ├── Utils.h ├── dllmain.cpp ├── packages.config ├── pch.cpp ├── pch.h ├── thirdparty └── snappy-windows-1.1.1.8 │ ├── include │ ├── snappy-c.h │ ├── snappy-sinksource.h │ ├── snappy-stubs-public.h │ └── snappy.h │ ├── native │ ├── snappy32.dll │ ├── snappy32.lib │ ├── snappy64.dll │ └── snappy64.lib │ ├── net20 │ ├── Crc32C.NET.dll │ ├── Snappy.NET.dll │ └── Snappy.NET.xml │ ├── net45 │ ├── Crc32C.NET.dll │ ├── Snappy.NET.dll │ └── Snappy.NET.xml │ └── src │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.md │ ├── autogen.sh │ ├── configure.ac │ ├── dllmain.cpp │ ├── format_description.txt │ ├── framing_format.txt │ ├── resource.h │ ├── snappy-c.cc │ ├── snappy-c.h │ ├── snappy-internal.h │ ├── snappy-single-file.cpp │ ├── snappy-sinksource.cc │ ├── snappy-sinksource.h │ ├── snappy-stubs-internal.cc │ ├── snappy-stubs-internal.h │ ├── snappy-stubs-public.h │ ├── snappy-stubs-public.h.in │ ├── snappy-test.cc │ ├── snappy-test.h │ ├── snappy.cc │ ├── snappy.h │ ├── snappy.rc │ ├── snappy.vcxproj │ ├── snappy.vcxproj.filters │ └── snappy_unittest.cc └── x64lahook.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/README.md -------------------------------------------------------------------------------- /config/loginserver_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/config/loginserver_config.yml -------------------------------------------------------------------------------- /config/network_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/config/network_config.yml -------------------------------------------------------------------------------- /data/cm_opcodes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/data/cm_opcodes.dat -------------------------------------------------------------------------------- /data/cm_opcodes.dat.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/data/cm_opcodes.dat.ru -------------------------------------------------------------------------------- /data/packet_result_codes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/data/packet_result_codes.dat -------------------------------------------------------------------------------- /data/sm_opcodes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/data/sm_opcodes.dat -------------------------------------------------------------------------------- /data/sm_opcodes.dat.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/data/sm_opcodes.dat.ru -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Gameserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Gameserver.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/LAdotNET.GameServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/LAdotNET.GameServer.csproj -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Client/CMPCCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Client/CMPCCreateRequest.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Client/CMPCNameCheckRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Client/CMPCNameCheckRequest.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Client/CMPCSelectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Client/CMPCSelectRequest.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Client/CMSlideNoticeUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Client/CMSlideNoticeUpdate.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Client/CMUnknownPacket1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Client/CMUnknownPacket1.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Client/CMUnknownPacket2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Client/CMUnknownPacket2.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMAuxPasswordAsk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMAuxPasswordAsk.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMEnterWorldCompleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMEnterWorldCompleted.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPCCreateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPCCreateResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPCListResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPCListResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPCNameCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPCNameCheckResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPCRoomStateNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPCRoomStateNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPCSelectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPCSelectResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPaidCashCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPaidCashCheckResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPaidPurchaseCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPaidPurchaseCheckResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMPaidShopSettingNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMPaidShopSettingNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMSlideNoticeUpdateNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMSlideNoticeUpdateNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Network/Packets/Server/SMWallpaperListResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Network/Packets/Server/SMWallpaperListResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.GameServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.GameServer/Program.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Config/LoginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Config/LoginConfig.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Config/LoginServerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Config/LoginServerConfiguration.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/LAdotNET.LoginServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/LAdotNET.LoginServer.csproj -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Loginserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Loginserver.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Client/CMLoginRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Client/CMLoginRequest.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Client/CMVersionCheckRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Client/CMVersionCheckRequest.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Client/CMWorldSelectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Client/CMWorldSelectRequest.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Server/SMLoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Server/SMLoginResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Server/SMPCRoomStateNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Server/SMPCRoomStateNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Server/SMVersionCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Server/SMVersionCheckResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Network/Packets/Server/SMWorldSelectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Network/Packets/Server/SMWorldSelectResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.LoginServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.LoginServer/Program.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/LAdotNET.WorldServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/LAdotNET.WorldServer.csproj -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Client/CMMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Client/CMMove.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Client/CMPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Client/CMPing.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Client/CMSetLoadingScreenGraphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Client/CMSetLoadingScreenGraphic.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Client/CMSlideNoticeUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Client/CMSlideNoticeUpdate.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitAbility.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitAchievementActive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitAchievementActive.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitAdventureMatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitAdventureMatter.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitBattleSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitBattleSlot.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCalendar.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCard.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCardDeck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCardDeck.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitChaosDungeonRewardCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitChaosDungeonRewardCount.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCharacterTendency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCharacterTendency.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCompletedQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCompletedQuest.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitContentsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitContentsConfig.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitContinent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitContinent.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCoopQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCoopQuest.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCrew.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCumulativePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCumulativePoint.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCumulativePointReward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitCumulativePointReward.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitDungeonQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitDungeonQuest.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitEnv.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitEquipPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitEquipPreset.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitExpedition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitExpedition.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitItemAddMaxCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitItemAddMaxCount.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitLifeFishPot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitLifeFishPot.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitLifeHuntingTrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitLifeHuntingTrap.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitLifeSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitLifeSkill.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitMail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitMail.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitMusic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitMusic.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitNpcFriendship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitNpcFriendship.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitNpcFriendshipAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitNpcFriendshipAction.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitNpcFriendshipTalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitNpcFriendshipTalk.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPC.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPaidAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPaidAction.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPaidBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPaidBuff.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPet.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPropCollecting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPropCollecting.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPvp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitPvp.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitQuest.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitQuestPointReward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitQuestPointReward.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitRaid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitRaid.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSail.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitShip.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitShipAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitShipAvatar.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSkill.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSkillPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSkillPreset.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSocialSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSocialSkill.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSquareHole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitSquareHole.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitVehicle.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitVoyageExploration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitVoyageExploration.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitWarpPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitWarpPoint.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitZonePiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/Init/SMInitZonePiece.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMAddonSkillFeatureChangeNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMAddonSkillFeatureChangeNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMBattleSlotUpdateNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMBattleSlotUpdateNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMBattlefieldWeeklyRewardNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMBattlefieldWeeklyRewardNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMCommonActionListAddNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMCommonActionListAddNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMDungeonFirstVisitorNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMDungeonFirstVisitorNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMIdentityChangeNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMIdentityChangeNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMImmuneStatusNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMImmuneStatusNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMInstanceZoneEnteredNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMInstanceZoneEnteredNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMLoadCompleteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMLoadCompleteResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMModStatisticNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMModStatisticNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMMoveNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMMoveNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMMusicReturnPositionNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMMusicReturnPositionNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMNewZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMNewZone.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMPaidServiceCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMPaidServiceCheckResult.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMParalyzationStateNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMParalyzationStateNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMPermanentAttrAcquireNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMPermanentAttrAcquireNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMReverseRuinStageInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMReverseRuinStageInit.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMServerTimeNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMServerTimeNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMStatChangeNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMStatChangeNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMStatusEffectAddNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMStatusEffectAddNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMVoyageLuckNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMVoyageLuckNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMZoneMemberLoadStatusNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMZoneMemberLoadStatusNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Network/Packets/Server/SMZoneTraitNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Network/Packets/Server/SMZoneTraitNotify.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Program.cs -------------------------------------------------------------------------------- /src/LAdotNET.WorldServer/Worldserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.WorldServer/Worldserver.cs -------------------------------------------------------------------------------- /src/LAdotNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET.sln -------------------------------------------------------------------------------- /src/LAdotNET/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Account.cs -------------------------------------------------------------------------------- /src/LAdotNET/Config/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Config/Configuration.cs -------------------------------------------------------------------------------- /src/LAdotNET/Config/NetworkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Config/NetworkConfig.cs -------------------------------------------------------------------------------- /src/LAdotNET/Extensions/ByteBufferExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Extensions/ByteBufferExt.cs -------------------------------------------------------------------------------- /src/LAdotNET/LAdotNET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/LAdotNET.csproj -------------------------------------------------------------------------------- /src/LAdotNET/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/NLog.config -------------------------------------------------------------------------------- /src/LAdotNET/Network/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Connection.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Encryption/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Encryption/Counter.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Encryption/LACrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Encryption/LACrypt.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Encryption/LACryptRU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Encryption/LACryptRU.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Packets/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Packets/Packet.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Packets/PacketDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Packets/PacketDecoder.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Packets/PacketEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Packets/PacketEncoder.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Packets/PacketFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Packets/PacketFactory.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/Packets/PacketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/Packets/PacketHandler.cs -------------------------------------------------------------------------------- /src/LAdotNET/Network/TCPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Network/TCPServer.cs -------------------------------------------------------------------------------- /src/LAdotNET/Utils/ConsoleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Utils/ConsoleUtils.cs -------------------------------------------------------------------------------- /src/LAdotNET/Utils/HexUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/LAdotNET/Utils/HexUtils.cs -------------------------------------------------------------------------------- /src/start_servers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/src/start_servers.bat -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/AddressObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/AddressObject.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/App.config -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/LAOffsetUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/LAOffsetUpdater.csproj -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/LAOffsetUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/LAOffsetUpdater.sln -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/MemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/MemoryReader.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/MyProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/MyProcess.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/Program.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/ScanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/ScanType.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/ValueType.cs -------------------------------------------------------------------------------- /tools/LAOffsetUpdater/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAOffsetUpdater/Win32.cs -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher.sln -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/HexDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/HexDump.cs -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/Injector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/Injector.cs -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/LAdotNET.GameLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/LAdotNET.GameLauncher.csproj -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/Program.cs -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/Reply.cs -------------------------------------------------------------------------------- /tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/app1.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.GameLauncher/LAdotNET.GameLauncher/app1.manifest -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/ByteBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/ByteBuffer.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/ByteBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/ByteBuffer.hpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Counter.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Counter.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Enums.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Hooks.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Hooks.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/INIReader.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/LAdotNET.Sniffer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/LAdotNET.Sniffer.sln -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/LAdotNET.Sniffer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/LAdotNET.Sniffer.vcxproj -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/LAdotNET.Sniffer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/LAdotNET.Sniffer.vcxproj.filters -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Logger.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Logger.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Packet.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Packet.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Scanner.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Scanner.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Settings.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Settings.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/Utils.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/dllmain.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/packages.config -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/pch.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/pch.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy-c.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy-sinksource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy-sinksource.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy-stubs-public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy-stubs-public.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/include/snappy.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy32.dll -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy32.lib -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy64.dll -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/native/snappy64.lib -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net20/Crc32C.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net20/Crc32C.NET.dll -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net20/Snappy.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net20/Snappy.NET.dll -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net20/Snappy.NET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net20/Snappy.NET.xml -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net45/Crc32C.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net45/Crc32C.NET.dll -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net45/Snappy.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net45/Snappy.NET.dll -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net45/Snappy.NET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/net45/Snappy.NET.xml -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/AUTHORS: -------------------------------------------------------------------------------- 1 | opensource@google.com 2 | -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/COPYING -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/ChangeLog -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/Makefile.am -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/NEWS -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/README -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/README.md -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/autogen.sh -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/configure.ac -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/dllmain.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/format_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/format_description.txt -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/framing_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/framing_format.txt -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/resource.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-c.cc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-c.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-internal.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-single-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-single-file.cpp -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-sinksource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-sinksource.cc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-sinksource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-sinksource.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-internal.cc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-internal.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-public.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-public.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-stubs-public.h.in -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-test.cc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy-test.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.cc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.h -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.rc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.vcxproj -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy.vcxproj.filters -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/thirdparty/snappy-windows-1.1.1.8/src/snappy_unittest.cc -------------------------------------------------------------------------------- /tools/LAdotNET.Sniffer/x64lahook.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblazys/LAdotNET/HEAD/tools/LAdotNET.Sniffer/x64lahook.ini --------------------------------------------------------------------------------