├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── Buffs.cs ├── Commands ├── AFKCommands.cs ├── AnnounceCommands.cs ├── BloodBound │ ├── BloodBoundCommands.cs │ ├── BloodBoundItemParameter.cs │ └── BloodBoundItemParameterConverter.cs ├── BloodCommands.cs ├── BossCommands.cs ├── BuffCommand.cs ├── CastleCommands.cs ├── ClanCommands.cs ├── Converters │ ├── FoundPlayer.cs │ ├── FoundPrimals.cs │ ├── FoundPrisonerFeed.cs │ ├── FoundRegion.cs │ ├── FoundVBlood.cs │ ├── IntArray.cs │ ├── ItemParameter.cs │ ├── ItemParameterConverter.cs │ └── RelicType.cs ├── CooldownCommands.cs ├── DroppedItemCommands.cs ├── GearCommands.cs ├── GiveItemCommands.cs ├── GodCommands.cs ├── InfoCommands.cs ├── MiscCommands.cs ├── PingCommands.cs ├── PlayerCommands.cs ├── PrisonerCommands.cs ├── RegionCommands.cs ├── ReviveCommands.cs ├── SearchCommands.cs ├── ServantCommands.cs ├── SpawnNpcCommands.cs └── StaffCommands.cs ├── Core.cs ├── Data ├── Character.cs ├── English.json ├── PrefabNames.json └── Prefabs.cs ├── ECSExtensions.cs ├── Helper.cs ├── KindredCommands.csproj ├── LICENSE.txt ├── Models ├── BloodType.cs ├── Database.cs └── PlayerData.cs ├── Patches ├── AbilityRunScriptsSystemPatch.cs ├── AuditPatches.cs ├── BatVisionPatch.cs ├── BossLockingPatches.cs ├── BuffSystem_Spawn_ServerPatch.cs ├── ChatMessageSystemPatch.cs ├── DropInventorySystemPatch.cs ├── EquipItemSystemPatch.cs ├── MapIconSpawnSystemPatch.cs ├── OnLoadPatches.cs ├── PlayerConnectivityPatches.cs ├── RevealMapPatches.cs ├── StatChangeSystemPatch.cs └── UpdateBuffsBuffer_DestroyPatch.cs ├── Plugin.cs ├── README.md ├── Services ├── AdminService.cs ├── AnnouncementsService.cs ├── AuditService.cs ├── BloodBoundService.cs ├── BoostedPlayerService.cs ├── BossService.cs ├── CastleTerritoryService.cs ├── ConfigSettingsService.cs ├── DropItemService.cs ├── GearService.cs ├── GlobalMiscService.cs ├── LocalizationService.cs ├── PlayerService.cs ├── PrefabService.cs ├── PrisonerService.cs ├── RegionService.cs ├── RelicDestroySystemPatch.cs ├── SoulshardService.cs ├── TerritoryLocationService.cs ├── TrackPlayerEquipmentService.cs └── UnitSpawnerService.cs ├── logo.png └── nuget.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/.gitignore -------------------------------------------------------------------------------- /Buffs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Buffs.cs -------------------------------------------------------------------------------- /Commands/AFKCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/AFKCommands.cs -------------------------------------------------------------------------------- /Commands/AnnounceCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/AnnounceCommands.cs -------------------------------------------------------------------------------- /Commands/BloodBound/BloodBoundCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/BloodBound/BloodBoundCommands.cs -------------------------------------------------------------------------------- /Commands/BloodBound/BloodBoundItemParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/BloodBound/BloodBoundItemParameter.cs -------------------------------------------------------------------------------- /Commands/BloodBound/BloodBoundItemParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/BloodBound/BloodBoundItemParameterConverter.cs -------------------------------------------------------------------------------- /Commands/BloodCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/BloodCommands.cs -------------------------------------------------------------------------------- /Commands/BossCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/BossCommands.cs -------------------------------------------------------------------------------- /Commands/BuffCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/BuffCommand.cs -------------------------------------------------------------------------------- /Commands/CastleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/CastleCommands.cs -------------------------------------------------------------------------------- /Commands/ClanCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/ClanCommands.cs -------------------------------------------------------------------------------- /Commands/Converters/FoundPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/FoundPlayer.cs -------------------------------------------------------------------------------- /Commands/Converters/FoundPrimals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/FoundPrimals.cs -------------------------------------------------------------------------------- /Commands/Converters/FoundPrisonerFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/FoundPrisonerFeed.cs -------------------------------------------------------------------------------- /Commands/Converters/FoundRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/FoundRegion.cs -------------------------------------------------------------------------------- /Commands/Converters/FoundVBlood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/FoundVBlood.cs -------------------------------------------------------------------------------- /Commands/Converters/IntArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/IntArray.cs -------------------------------------------------------------------------------- /Commands/Converters/ItemParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/ItemParameter.cs -------------------------------------------------------------------------------- /Commands/Converters/ItemParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/ItemParameterConverter.cs -------------------------------------------------------------------------------- /Commands/Converters/RelicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/Converters/RelicType.cs -------------------------------------------------------------------------------- /Commands/CooldownCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/CooldownCommands.cs -------------------------------------------------------------------------------- /Commands/DroppedItemCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/DroppedItemCommands.cs -------------------------------------------------------------------------------- /Commands/GearCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/GearCommands.cs -------------------------------------------------------------------------------- /Commands/GiveItemCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/GiveItemCommands.cs -------------------------------------------------------------------------------- /Commands/GodCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/GodCommands.cs -------------------------------------------------------------------------------- /Commands/InfoCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/InfoCommands.cs -------------------------------------------------------------------------------- /Commands/MiscCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/MiscCommands.cs -------------------------------------------------------------------------------- /Commands/PingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/PingCommands.cs -------------------------------------------------------------------------------- /Commands/PlayerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/PlayerCommands.cs -------------------------------------------------------------------------------- /Commands/PrisonerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/PrisonerCommands.cs -------------------------------------------------------------------------------- /Commands/RegionCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/RegionCommands.cs -------------------------------------------------------------------------------- /Commands/ReviveCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/ReviveCommands.cs -------------------------------------------------------------------------------- /Commands/SearchCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/SearchCommands.cs -------------------------------------------------------------------------------- /Commands/ServantCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/ServantCommands.cs -------------------------------------------------------------------------------- /Commands/SpawnNpcCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/SpawnNpcCommands.cs -------------------------------------------------------------------------------- /Commands/StaffCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Commands/StaffCommands.cs -------------------------------------------------------------------------------- /Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Core.cs -------------------------------------------------------------------------------- /Data/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Data/Character.cs -------------------------------------------------------------------------------- /Data/English.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Data/English.json -------------------------------------------------------------------------------- /Data/PrefabNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Data/PrefabNames.json -------------------------------------------------------------------------------- /Data/Prefabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Data/Prefabs.cs -------------------------------------------------------------------------------- /ECSExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/ECSExtensions.cs -------------------------------------------------------------------------------- /Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Helper.cs -------------------------------------------------------------------------------- /KindredCommands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/KindredCommands.csproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Models/BloodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Models/BloodType.cs -------------------------------------------------------------------------------- /Models/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Models/Database.cs -------------------------------------------------------------------------------- /Models/PlayerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Models/PlayerData.cs -------------------------------------------------------------------------------- /Patches/AbilityRunScriptsSystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/AbilityRunScriptsSystemPatch.cs -------------------------------------------------------------------------------- /Patches/AuditPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/AuditPatches.cs -------------------------------------------------------------------------------- /Patches/BatVisionPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/BatVisionPatch.cs -------------------------------------------------------------------------------- /Patches/BossLockingPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/BossLockingPatches.cs -------------------------------------------------------------------------------- /Patches/BuffSystem_Spawn_ServerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/BuffSystem_Spawn_ServerPatch.cs -------------------------------------------------------------------------------- /Patches/ChatMessageSystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/ChatMessageSystemPatch.cs -------------------------------------------------------------------------------- /Patches/DropInventorySystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/DropInventorySystemPatch.cs -------------------------------------------------------------------------------- /Patches/EquipItemSystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/EquipItemSystemPatch.cs -------------------------------------------------------------------------------- /Patches/MapIconSpawnSystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/MapIconSpawnSystemPatch.cs -------------------------------------------------------------------------------- /Patches/OnLoadPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/OnLoadPatches.cs -------------------------------------------------------------------------------- /Patches/PlayerConnectivityPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/PlayerConnectivityPatches.cs -------------------------------------------------------------------------------- /Patches/RevealMapPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/RevealMapPatches.cs -------------------------------------------------------------------------------- /Patches/StatChangeSystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/StatChangeSystemPatch.cs -------------------------------------------------------------------------------- /Patches/UpdateBuffsBuffer_DestroyPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Patches/UpdateBuffsBuffer_DestroyPatch.cs -------------------------------------------------------------------------------- /Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Plugin.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/README.md -------------------------------------------------------------------------------- /Services/AdminService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/AdminService.cs -------------------------------------------------------------------------------- /Services/AnnouncementsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/AnnouncementsService.cs -------------------------------------------------------------------------------- /Services/AuditService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/AuditService.cs -------------------------------------------------------------------------------- /Services/BloodBoundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/BloodBoundService.cs -------------------------------------------------------------------------------- /Services/BoostedPlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/BoostedPlayerService.cs -------------------------------------------------------------------------------- /Services/BossService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/BossService.cs -------------------------------------------------------------------------------- /Services/CastleTerritoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/CastleTerritoryService.cs -------------------------------------------------------------------------------- /Services/ConfigSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/ConfigSettingsService.cs -------------------------------------------------------------------------------- /Services/DropItemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/DropItemService.cs -------------------------------------------------------------------------------- /Services/GearService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/GearService.cs -------------------------------------------------------------------------------- /Services/GlobalMiscService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/GlobalMiscService.cs -------------------------------------------------------------------------------- /Services/LocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/LocalizationService.cs -------------------------------------------------------------------------------- /Services/PlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/PlayerService.cs -------------------------------------------------------------------------------- /Services/PrefabService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/PrefabService.cs -------------------------------------------------------------------------------- /Services/PrisonerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/PrisonerService.cs -------------------------------------------------------------------------------- /Services/RegionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/RegionService.cs -------------------------------------------------------------------------------- /Services/RelicDestroySystemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/RelicDestroySystemPatch.cs -------------------------------------------------------------------------------- /Services/SoulshardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/SoulshardService.cs -------------------------------------------------------------------------------- /Services/TerritoryLocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/TerritoryLocationService.cs -------------------------------------------------------------------------------- /Services/TrackPlayerEquipmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/TrackPlayerEquipmentService.cs -------------------------------------------------------------------------------- /Services/UnitSpawnerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/Services/UnitSpawnerService.cs -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/logo.png -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odjit/KindredCommands/HEAD/nuget.config --------------------------------------------------------------------------------