├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build_goldmaster.yaml │ └── dotnet.yml ├── .gitignore ├── Build.props ├── Fika-Plugin.code-workspace ├── Fika-Plugin.slnx ├── Fika.Core ├── Bundles │ ├── Files │ │ ├── README.md │ │ └── masterbundle.bundle │ └── InternalBundleLoader.cs ├── ConfigurationManagerAttributes.cs ├── ConsoleCommands │ └── FikaCommands.cs ├── Fika.Core.csproj ├── FikaPlugin.cs ├── GlobalUsings.cs ├── Jobs │ ├── HandlePlayerStates.cs │ ├── InterpolatorJob.cs │ ├── PlayerSnapshots.cs │ └── UpdateInterpolators.cs ├── Main │ ├── BotClasses │ │ ├── BotFirearmController.cs │ │ ├── BotHealthController.cs │ │ ├── BotInventoryController.cs │ │ └── BotPlayerBridge.cs │ ├── ClientClasses │ │ ├── ClientHealthController.cs │ │ ├── ClientInventoryController.cs │ │ ├── ClientMovementContext.cs │ │ ├── ClientQuestController.cs │ │ ├── ClientRunddansController.cs │ │ ├── ClientSharedQuestController.cs │ │ ├── ClientStatisticsManager.cs │ │ ├── ClientTransitController.cs │ │ ├── ClientViewFilter.cs │ │ ├── FikaClientGameWorld.cs │ │ ├── FikaClientGrenade.cs │ │ ├── FikaClientGrenadeFactory.cs │ │ ├── FikaClientSmokeGrenade.cs │ │ ├── FikaClientStunGrenade.cs │ │ ├── FikaClientWorld.cs │ │ ├── HandsControllers │ │ │ ├── FikaClientFirearmController.cs │ │ │ ├── FikaClientGrenadeController.cs │ │ │ ├── FikaClientKnifeController.cs │ │ │ ├── FikaClientPortableRangeFinderController.cs │ │ │ ├── FikaClientQuickGrenadeController.cs │ │ │ └── FikaClientUsableItemController.cs │ │ ├── NoInertiaMovementContext.cs │ │ └── NoInertiaPhysical.cs │ ├── Components │ │ ├── BTRViewSynchronizer.cs │ │ ├── BotStateManager.cs │ │ ├── CoopHandler.cs │ │ ├── CorpsePositionSyncer.cs │ │ ├── FikaExfilManager.cs │ │ ├── FikaHalloweenEventManager.cs │ │ ├── FikaHealthBar.cs │ │ ├── FikaPing.cs │ │ ├── FikaTimeManager.cs │ │ ├── ItemPositionSyncer.cs │ │ ├── LocalFikaTriggersModule.cs │ │ ├── PlayerPlateUI.cs │ │ └── ViewFilter.cs │ ├── Custom │ │ ├── BotDifficulties.cs │ │ └── ThrottledMono.cs │ ├── Factories │ │ ├── HandsControllerFactory.cs │ │ └── PingFactory.cs │ ├── FreeCamera │ │ ├── FreeCamera.PlayerList.cs │ │ ├── FreeCamera.cs │ │ ├── FreeCameraController.cs │ │ └── Patches │ │ │ ├── DeathFade_Patch.cs │ │ │ ├── FadeBlackScreen_Patch.cs │ │ │ ├── PlayEndGameSound_Patch.cs │ │ │ └── PlayUISound_Patch.cs │ ├── GameMode │ │ ├── BaseGameController.cs │ │ ├── ClientGameController.cs │ │ ├── CoopGame.cs │ │ ├── HostGameController.cs │ │ └── IFikaGame.cs │ ├── HostClasses │ │ ├── FikaHostGameWorld.cs │ │ ├── FikaHostGrenade.cs │ │ ├── FikaHostInventoryController.cs │ │ ├── FikaHostSmokeGrenade.cs │ │ ├── FikaHostStunGrenade.cs │ │ ├── FikaHostTransitController.cs │ │ ├── FikaHostWorld.cs │ │ ├── HostGrenadeFactory.cs │ │ └── HostRunddansController.cs │ ├── ObservedClasses │ │ ├── FikaObservedGrenade.cs │ │ ├── HandsControllers │ │ │ ├── ObservedEmptyHandsController.cs │ │ │ ├── ObservedFirearmController.cs │ │ │ ├── ObservedGrenadeController.cs │ │ │ ├── ObservedKnifeController.cs │ │ │ ├── ObservedMedsController.cs │ │ │ └── ObservedQuickGrenadeController.cs │ │ ├── MovementStates │ │ │ ├── ObservedBreachDoorState.cs │ │ │ ├── ObservedDoorInteractionState.cs │ │ │ ├── ObservedIdleZombieStateClass.cs │ │ │ ├── ObservedJumpState.cs │ │ │ ├── ObservedMountedState.cs │ │ │ ├── ObservedMoveZombieStateClass.cs │ │ │ ├── ObservedRunState.cs │ │ │ ├── ObservedSprintState.cs │ │ │ └── ObservedStationaryState.cs │ │ ├── ObservedCorpseCulling.cs │ │ ├── ObservedHealthController.cs │ │ ├── ObservedInventoryController.cs │ │ ├── ObservedMovementContext.cs │ │ ├── ObservedQuestController.cs │ │ ├── ObservedStatisticsManager.cs │ │ ├── ObservedViewFilter.cs │ │ ├── PlayerBridge │ │ │ ├── ObservedClientBridge.cs │ │ │ └── ObservedHostBridge.cs │ │ └── Snapshotting │ │ │ ├── ExponentialMovingAverage.cs │ │ │ ├── Interpolator.cs │ │ │ ├── LICENSE.txt │ │ │ ├── Mathd.cs │ │ │ ├── NetworkTimeSync.cs │ │ │ ├── ObservedState.cs │ │ │ ├── SnapshotInterpolationSettings.cs │ │ │ └── Snapshotter.cs │ ├── PacketHandlers │ │ ├── BotPacketSender.cs │ │ ├── ClientPacketSender.cs │ │ ├── IPacketSender.cs │ │ ├── ObservedPacketSender.cs │ │ └── ServerPacketSender.cs │ ├── Patches │ │ ├── AI │ │ │ ├── AIPlaceLogicPartisan_Dispose_Patch.cs │ │ │ └── BotReload_method_1_Patch.cs │ │ ├── AbstractGamePatches │ │ │ └── AbstractGame_InRaid_Patch.cs │ │ ├── Airdrops │ │ │ ├── OfflineAirdropServerLogicClass_UpdateOfflineClientLogic_Patch.cs │ │ │ ├── OfflineAirplaneServerLogicClass_UpdateOfflineClientLogic_Patch.cs │ │ │ └── SyncObjectProcessorClass_GetSyncObjectStrategyByType_Patch.cs │ │ ├── Artillery │ │ │ ├── ArtilleryServerProjectileClass_Constructor_Patch.cs │ │ │ ├── ServerShellingControllerClass_method_0_Patch.cs │ │ │ └── ServerShellingControllerClass_method_28_Patch.cs │ │ ├── BTR │ │ │ ├── BTRControllerClass_Init_Patch.cs │ │ │ ├── BTRSide_Patches.cs │ │ │ ├── BTRTurretView_AttachBot_Postfix.cs │ │ │ ├── BTRVehicle_method_38_Patch.cs │ │ │ ├── BTRView_GoIn_Patch.cs │ │ │ ├── BTRView_GoOut_Patch.cs │ │ │ ├── BTRView_Start_Patch.cs │ │ │ └── Player_UpdateBtrTraderServiceData_Patch.cs │ │ ├── BotCacher_Patch.cs │ │ ├── Bugfixes │ │ │ └── PartyInfoPanel_method_3_Patch.cs │ │ ├── Camera │ │ │ ├── OpticRetrice_UpdateTransform_Patch.cs │ │ │ ├── PlayerCameraController_LateUpdate_Transpiler.cs │ │ │ ├── WeaponManagerClass_ValidateScopeSmoothZoomUpdate_Patch.cs │ │ │ └── WeaponManagerClass_method_12_Patch.cs │ │ ├── DebugPatches │ │ │ ├── GClass1615_method_0_Patch.cs │ │ │ ├── LabsKeycardDebugPatch.cs │ │ │ ├── TestHalloweenPatch.cs │ │ │ └── UnityEngine_DebugLog_Patch.cs │ │ ├── GClass2287_method_0_Patch.cs │ │ ├── GClass3585_ExceptAI_Patch.cs │ │ ├── GameWorldPatches │ │ │ ├── GameWorld_Create_Patch.cs │ │ │ ├── GameWorld_ThrowItem_Patch.cs │ │ │ └── GameWorld_method_2_Patch.cs │ │ ├── GrenadeClass_Init_Patch.cs │ │ ├── Lighthouse │ │ │ ├── BufferInnerZone_ChangePlayerAccessStatus_Patch.cs │ │ │ ├── BufferInnerZone_ChangeZoneInteractionAvailability_Patch.cs │ │ │ ├── BufferZoneControllerClass_SetPlayerInZoneStatus_Patch.cs │ │ │ ├── BufferZoneControllerClass_method_1_Patch.cs │ │ │ ├── LighthouseTraderZone_Patches.cs │ │ │ └── Zyriachy_Patches.cs │ │ ├── LocalGame │ │ │ ├── BaseLocalGame_method_14_Patch.cs │ │ │ ├── NonWaveSpawnScenario_Patch.cs │ │ │ ├── TarkovApplication_LocalGameCreator_Patch.cs │ │ │ ├── TarkovApplication_LocalGamePreparer_Patch.cs │ │ │ └── WaveSpawnScenario_Patch.cs │ │ ├── LocaleClass_ReloadBackendLocale_Patch.cs │ │ ├── Mines │ │ │ ├── MineDirectional_OnTriggerEnter_Patch.cs │ │ │ └── Minefield_method_2_Patch.cs │ │ ├── MovementContextPatches │ │ │ ├── MovementContext_PreviousRotation_Transpiler.cs │ │ │ ├── MovementContext_RestorePreviousYaw_Transpiler.cs │ │ │ ├── MovementContext_Rotation_Transpiler.cs │ │ │ ├── MovementContext_method_11_Transpiler.cs │ │ │ └── MovementContext_method_9_Transpiler.cs │ │ ├── Overrides │ │ │ ├── FixSavageInventoryScreenPatch_Override.cs │ │ │ ├── OfflineRaidSettingsMenuPatch_Override.cs │ │ │ └── ScavProfileLoad_Override.cs │ │ ├── PlayerPatches │ │ │ ├── BodyPartCollider_SetUpPlayer_Patch.cs │ │ │ ├── Player_HasMarkOfUnknown_Patch.cs │ │ │ ├── Player_Hide_Patch.cs │ │ │ ├── Player_ManageAggressor_Patch.cs │ │ │ ├── Player_OnDead_Patch.cs │ │ │ ├── Player_SetDogtagInfo_Patch.cs │ │ │ └── Player_SpawnInHands_Patch.cs │ │ ├── Rockets │ │ │ ├── RocketLauncherConeBlastClass_Initialize_Patch.cs │ │ │ ├── RocketProjectile_Launch_Patch.cs │ │ │ └── RocketProjectile_method_6_Patch.cs │ │ ├── Subsystems │ │ │ ├── CustomPlayerLoopSystemsInjector_InjectDataProviderSyncUpdate_Transpiler.cs │ │ │ ├── CustomPlayerLoopSystemsInjector_InjectPostUNetUpdateSystem_Transpiler.cs │ │ │ └── CustomPlayerLoopSystemsInjector_MoveUNetUpdateSystemOnPreUpdate_Transpiler.cs │ │ ├── TransitController │ │ │ └── TransitControllerAbstractClass_Exist_Patch.cs │ │ ├── TransitInteractionControllerAbstractClass_method_11_Patch.cs │ │ ├── Tripwire │ │ │ ├── TripwireSynchronizableObject_method_11_Patch.cs │ │ │ └── TripwireSynchronizableObject_method_6_Patch.cs │ │ └── VOIP │ │ │ ├── BasicMicrophoneCapture_UpdateSubscribers_Transpiler.cs │ │ │ ├── DissonanceComms_Start_Patch.cs │ │ │ └── Player_IDissonancePlayerType_Patch.cs │ ├── Players │ │ ├── FikaBot.cs │ │ ├── FikaPlayer.cs │ │ └── ObservedPlayer.cs │ └── Utils │ │ ├── FikaBackendUtils.cs │ │ ├── FikaGlobals.cs │ │ ├── FikaModHandler.cs │ │ ├── LocaleUtils.cs │ │ └── WorldToScreen.cs ├── Modding │ ├── Events │ │ ├── AbstractGameCreatedEvent.cs │ │ ├── FikaEvent.cs │ │ ├── FikaGameCreatedEvent.cs │ │ ├── FikaGameEndedEvent.cs │ │ ├── FikaNetworkManagerCreatedEvent.cs │ │ ├── FikaNetworkManagerDestroyedEvent.cs │ │ ├── FikaRaidStartedEvent.cs │ │ ├── GameWorldStartedEvent.cs │ │ └── PeerConnectedEvent.cs │ └── FikaEventDispatcher.cs ├── Networking │ ├── FikaClient.Callbacks.cs │ ├── FikaClient.cs │ ├── FikaPingingClient.cs │ ├── FikaSerializationExtensions.cs │ ├── FikaServer.Callbacks.cs │ ├── FikaServer.cs │ ├── Http │ │ └── FikaRequestHandler.cs │ ├── IFikaNetworkManager.cs │ ├── LZ4 │ │ ├── AssemblyHook.cs │ │ ├── Encoders │ │ │ ├── EncoderAction.cs │ │ │ ├── ILZ4Decoder.cs │ │ │ ├── ILZ4Encoder.cs │ │ │ ├── LZ4BlockDecoder.cs │ │ │ ├── LZ4BlockEncoder.cs │ │ │ ├── LZ4ChainDecoder.cs │ │ │ ├── LZ4Decoder.cs │ │ │ ├── LZ4Encoder.cs │ │ │ ├── LZ4EncoderBase.cs │ │ │ ├── LZ4EncoderExtensions.cs │ │ │ ├── LZ4FastChainEncoder.cs │ │ │ └── LZ4HighChainEncoder.cs │ │ ├── Engine │ │ │ ├── Algorithm.cs │ │ │ ├── LL.high.cs │ │ │ ├── LL.tools.cs │ │ │ ├── LL.types.cs │ │ │ ├── LL.types.high.cs │ │ │ ├── LLxx.cs │ │ │ ├── Pubternal.cs │ │ │ ├── order.high.txt │ │ │ ├── x32 │ │ │ │ ├── LL32.dec.cs │ │ │ │ ├── LL32.fast.cs │ │ │ │ ├── LL32.high.cs │ │ │ │ └── LL32.tools.cs │ │ │ └── x64 │ │ │ │ ├── LL64.dec.cs │ │ │ │ ├── LL64.fast.cs │ │ │ │ ├── LL64.high.cs │ │ │ │ └── LL64.tools.cs │ │ ├── Internal │ │ │ ├── BufferPool.cs │ │ │ ├── Extensions.cs │ │ │ ├── Mem.cs │ │ │ ├── PinnedMemory.cs │ │ │ ├── UnmanagedResources.cs │ │ │ ├── x32 │ │ │ │ └── Mem32.cs │ │ │ └── x64 │ │ │ │ └── Mem64.cs │ │ ├── LZ4Codec.cs │ │ ├── LZ4Level.cs │ │ ├── LZ4Pickler.pickle.cs │ │ └── LZ4Pickler.unpickle.cs │ ├── LiteNetLib │ │ ├── BaseChannel.cs │ │ ├── ConnectionRequest.cs │ │ ├── INetEventListener.cs │ │ ├── InternalPackets.cs │ │ ├── LICENSE.md │ │ ├── Layers │ │ │ ├── Crc32cLayer.cs │ │ │ ├── PacketLayerBase.cs │ │ │ └── XorEncryptLayer.cs │ │ ├── NatPunchModule.cs │ │ ├── NativeSocket.cs │ │ ├── NetConstants.cs │ │ ├── NetDebug.cs │ │ ├── NetManager.HashSet.cs │ │ ├── NetManager.PacketPool.cs │ │ ├── NetManager.Socket.cs │ │ ├── NetManager.cs │ │ ├── NetPacket.cs │ │ ├── NetPeer.cs │ │ ├── NetStatistics.cs │ │ ├── NetUtils.cs │ │ ├── PausedSocketFix.cs │ │ ├── PooledPacket.cs │ │ ├── ReliableChannel.cs │ │ ├── SequencedChannel.cs │ │ ├── Trimming.cs │ │ └── Utils │ │ │ ├── CRC32C.cs │ │ │ ├── FastBitConverter.cs │ │ │ ├── INetSerializable.cs │ │ │ ├── NetDataReader.cs │ │ │ ├── NetDataWriter.cs │ │ │ ├── NetPacketProcessor.cs │ │ │ ├── NetSerializer.cs │ │ │ ├── NtpPacket.cs │ │ │ ├── NtpRequest.cs │ │ │ └── Preserve.cs │ ├── Models │ │ ├── AddPlayerRequest.cs │ │ ├── Admin │ │ │ ├── CurrentSettingsResponse.cs │ │ │ ├── SetSettingsRequest.cs │ │ │ └── SetSettingsResponse.cs │ │ ├── CheckVersionResponse.cs │ │ ├── ClientConfigModel.cs │ │ ├── CreateMatchRequest.cs │ │ ├── DownloadProfileResponse.cs │ │ ├── GetHostRequest.cs │ │ ├── GetHostResponse.cs │ │ ├── GetHostStunRequest.cs │ │ ├── GetHostStunResponse.cs │ │ ├── Headless │ │ │ ├── AvailableHeadlessClientsRequest.cs │ │ │ ├── StartHeadlessRequest.cs │ │ │ └── StartHeadlessResponse.cs │ │ ├── MatchJoinRequest.cs │ │ ├── MatchJoinResponse.cs │ │ ├── ModValidationResponse.cs │ │ ├── NatPunchServerConfigModel.cs │ │ ├── PingRequest.cs │ │ ├── PlayerLeftRequest.cs │ │ ├── PlayerSpawnRequest.cs │ │ ├── Presence │ │ │ ├── FikaPlayerPresenceResponse.cs │ │ │ └── FikaSetPresence.cs │ │ ├── RaidSettingsRequest.cs │ │ ├── RaidSettingsResponse.cs │ │ ├── RegisterPlayerRequest.cs │ │ ├── RestartAfterRaidAmountModel.cs │ │ ├── SetHostRequest.cs │ │ └── SetStatusModel.cs │ ├── NetManagerUtils.cs │ ├── NetworkUtils.cs │ ├── Open.Nat │ │ ├── Discovery │ │ │ ├── ISearcher.cs │ │ │ └── Searcher.cs │ │ ├── Enums │ │ │ └── ProtocolType.cs │ │ ├── EventArgs │ │ │ └── DeviceEventArgs.cs │ │ ├── Exceptions │ │ │ ├── MappingException.cs │ │ │ └── NatDeviceNotFoundException.cs │ │ ├── Finalizer.cs │ │ ├── LICENSE.md │ │ ├── Mapping.cs │ │ ├── NatDevice.cs │ │ ├── NatDiscoverer.cs │ │ ├── Pmp │ │ │ ├── PmpConstants.cs │ │ │ ├── PmpNatDevice.cs │ │ │ └── PmpSearcher.cs │ │ ├── PortMapper.cs │ │ ├── Upnp │ │ │ ├── DiscoveryResponseMessage.cs │ │ │ ├── Messages │ │ │ │ ├── DiscoverDeviceMessage.cs │ │ │ │ ├── Requests │ │ │ │ │ ├── CreatePortMappingMessage.cs │ │ │ │ │ ├── DeletePortMappingMessage.cs │ │ │ │ │ ├── GetExternalIPAddressMessage.cs │ │ │ │ │ ├── GetGenericPortMappingEntry.cs │ │ │ │ │ └── GetSpecificPortMappingEntryMessage.cs │ │ │ │ └── Responses │ │ │ │ │ ├── AddPortMappingResponseMessage.cs │ │ │ │ │ ├── DeletePortMappingResponseMessage.cs │ │ │ │ │ ├── GetExternalIPAddressResponseMessage.cs │ │ │ │ │ └── GetGenericPortMappingEntryResponseMessage.cs │ │ │ ├── RequestMessageBase.cs │ │ │ ├── ResponseMessageBase.cs │ │ │ ├── SoapClient.cs │ │ │ ├── UpnpConstants.cs │ │ │ ├── UpnpNatDevice.cs │ │ │ ├── UpnpNatDeviceInfo.cs │ │ │ └── UpnpSearcher.cs │ │ └── Utils │ │ │ ├── Extensions.cs │ │ │ ├── Guard.cs │ │ │ ├── IIPAddressesProvider.cs │ │ │ ├── IPAddressesProvider.cs │ │ │ └── WellKnownConstants.cs │ ├── Packets │ │ ├── Backend │ │ │ ├── InformationPacket.cs │ │ │ ├── InraidQuestPacket.cs │ │ │ ├── LoadingProfilePacket.cs │ │ │ ├── NetworkSettingsPacket.cs │ │ │ ├── StashesPacket.cs │ │ │ └── StatisticsPacket.cs │ │ ├── Communication │ │ │ ├── BotStatePacket.cs │ │ │ ├── EventControllerEventPacket.cs │ │ │ ├── EventControllerInteractPacket.cs │ │ │ ├── FlareSuccessPacket.cs │ │ │ ├── MessagePacket.cs │ │ │ ├── QuestConditionPacket.cs │ │ │ ├── QuestDropItemPacket.cs │ │ │ ├── QuestItemPacket.cs │ │ │ ├── ResyncInventoryIdPacket.cs │ │ │ ├── TextMessagePacket.cs │ │ │ ├── TransitEventPacket.cs │ │ │ └── TransitInteractPacket.cs │ │ ├── Debug │ │ │ ├── CommandPacket.cs │ │ │ └── SpawnItemPacket.cs │ │ ├── ERequestSubPacketType.cs │ │ ├── FirearmController │ │ │ ├── EFirearmSubPacketType.cs │ │ │ ├── EGrenadePacketType.cs │ │ │ ├── EReloadWithAmmoStatus.cs │ │ │ ├── SubPackets │ │ │ │ ├── CancelGrenadePacket.cs │ │ │ │ ├── ChangeFireModePacket.cs │ │ │ │ ├── CheckAmmoPacket.cs │ │ │ │ ├── CheckChamberPacket.cs │ │ │ │ ├── CheckFireModePacket.cs │ │ │ │ ├── CompassChangePacket.cs │ │ │ │ ├── CylinderMagPacket.cs │ │ │ │ ├── ExamineWeaponPacket.cs │ │ │ │ ├── FirearmLootPacket.cs │ │ │ │ ├── FlareShotPacket.cs │ │ │ │ ├── GrenadePacket.cs │ │ │ │ ├── KnifePacket.cs │ │ │ │ ├── LeftStanceChangePacket.cs │ │ │ │ ├── LightStatesPacket.cs │ │ │ │ ├── QuickReloadMagPacket.cs │ │ │ │ ├── ReloadBarrelsPacket.cs │ │ │ │ ├── ReloadBoltActionPacket.cs │ │ │ │ ├── ReloadLauncherPacket.cs │ │ │ │ ├── ReloadMagPacket.cs │ │ │ │ ├── ReloadWithAmmoPacket.cs │ │ │ │ ├── RocketShotPacket.cs │ │ │ │ ├── RollCylinderPacket.cs │ │ │ │ ├── ScopeStatesPacket.cs │ │ │ │ ├── ShotInfoPacket.cs │ │ │ │ ├── ToggleAimPacket.cs │ │ │ │ ├── ToggleBipodPacket.cs │ │ │ │ ├── ToggleInventoryPacket.cs │ │ │ │ ├── ToggleLauncherPacket.cs │ │ │ │ ├── UnderbarrelSightingRangeDownPacket.cs │ │ │ │ └── UnderbarrelSightingRangeUpPacket.cs │ │ │ └── WeaponPacket.cs │ │ ├── Generic │ │ │ ├── EGenericSubPacketType.cs │ │ │ ├── GenericPacket.cs │ │ │ └── SubPackets │ │ │ │ ├── BorderZoneEvent.cs │ │ │ │ ├── BtrSpawn.cs │ │ │ │ ├── CharacterSyncPacket.cs │ │ │ │ ├── ClearEffects.cs │ │ │ │ ├── ClientConnected.cs │ │ │ │ ├── ClientDisconnected.cs │ │ │ │ ├── ClientExtract.cs │ │ │ │ ├── DisarmTripwire.cs │ │ │ │ ├── ExfilCountdown.cs │ │ │ │ ├── InventoryPacket.cs │ │ │ │ ├── MineEvent.cs │ │ │ │ ├── MuffledState.cs │ │ │ │ ├── OperationCallbackPacket.cs │ │ │ │ ├── PingPacket.cs │ │ │ │ ├── SecretExfilFound.cs │ │ │ │ ├── SendCharacterPacket.cs │ │ │ │ ├── SpawnAI.cs │ │ │ │ ├── SyncableItemPacket.cs │ │ │ │ └── UpdateBackendData.cs │ │ ├── INetReusable.cs │ │ ├── IPoolSubPacket.cs │ │ ├── IRequestPacket.cs │ │ ├── IReusable.cs │ │ ├── ISubPacket.cs │ │ ├── Player │ │ │ ├── Common │ │ │ │ ├── CommonPlayerPacket.cs │ │ │ │ ├── ECommonSubPacketType.cs │ │ │ │ ├── EProceedType.cs │ │ │ │ ├── EStationaryCommand.cs │ │ │ │ └── SubPackets │ │ │ │ │ ├── ArmorDamagePacket.cs │ │ │ │ │ ├── ContainerInteractionPacket.cs │ │ │ │ │ ├── DamagePacket.cs │ │ │ │ │ ├── DropPacket.cs │ │ │ │ │ ├── HeadLightsPacket.cs │ │ │ │ │ ├── HealthSyncPacket.cs │ │ │ │ │ ├── InteractionPacket.cs │ │ │ │ │ ├── InventoryChangedPacket.cs │ │ │ │ │ ├── MountingPacket.cs │ │ │ │ │ ├── PhrasePacket.cs │ │ │ │ │ ├── ProceedPacket.cs │ │ │ │ │ ├── StationaryPacket.cs │ │ │ │ │ ├── UsableItemPacket.cs │ │ │ │ │ ├── VaultPacket.cs │ │ │ │ │ └── WorldInteractionPacket.cs │ │ │ ├── PlayerStatePacket.cs │ │ │ └── SideEffectPacket.cs │ │ └── World │ │ │ ├── AirdropUpdatePacket.cs │ │ │ ├── BTRInteractionPacket.cs │ │ │ ├── BufferZonePacket.cs │ │ │ ├── CorpsePositionPacket.cs │ │ │ ├── HalloweenEventPacket.cs │ │ │ ├── InteractableInitPacket.cs │ │ │ ├── LootSyncPacket.cs │ │ │ ├── ReconnectPacket.cs │ │ │ ├── RequestPacket.cs │ │ │ ├── RequestSubPackets.cs │ │ │ ├── SpawnSyncObjectPacket.cs │ │ │ ├── SpawnSyncObjectSubPackets.cs │ │ │ ├── SyncTransitControllersPacket.cs │ │ │ ├── SyncTrapsPacket.cs │ │ │ ├── WorldLootPacket.cs │ │ │ └── WorldPacket.cs │ ├── Pooling │ │ ├── ArraySegmentPooling.cs │ │ ├── BasePacketPoolManager.cs │ │ ├── CommonSubPacketPoolManager.cs │ │ ├── FirearmSubPacketPoolManager.cs │ │ ├── GenericSubPacketPoolManager.cs │ │ ├── PacketPool.cs │ │ ├── PoolUtils.cs │ │ └── WriterPoolManager.cs │ ├── VOIP │ │ ├── FikaCommsNetwork.cs │ │ ├── FikaVOIPClient.cs │ │ ├── FikaVOIPController.cs │ │ ├── FikaVOIPPeer.cs │ │ └── FikaVOIPServer.cs │ └── Websocket │ │ ├── EFikaHeadlessWSMessageType.cs │ │ ├── EFikaNotification.cs │ │ ├── FikaNotificationManager.cs │ │ ├── Headless │ │ ├── RequesterJoinRaid.cs │ │ └── StartRaid.cs │ │ ├── HeadlessRequesterWebSocket.cs │ │ └── Notifications │ │ ├── OpenAdminMenuNotification.cs │ │ ├── PushNotification.cs │ │ ├── ReceivedSentItemNotification.cs │ │ ├── ShutdownClientNotification.cs │ │ └── StartRaidNotification.cs ├── UI │ ├── Custom │ │ ├── AdminSettingsUI.cs │ │ ├── AdminSettingsUIScript.cs │ │ ├── ButtonHandler.cs │ │ ├── DebugUI.cs │ │ ├── FikaChatUI.cs │ │ ├── FikaChatUIScript.cs │ │ ├── FikaSettingsScreen │ │ │ └── FikaSettings.cs │ │ ├── FreecamUI.cs │ │ ├── IntUpDown.cs │ │ ├── ListPlayer.cs │ │ ├── MainMenuUI.cs │ │ ├── MainMenuUIPlayer.cs │ │ ├── MainMenuUIScript.cs │ │ ├── MatchMakerUI.cs │ │ ├── MatchMakerUIScript.cs │ │ ├── RaidAdminUI.cs │ │ ├── RaidAdminUIScript.cs │ │ └── SendItemUI.cs │ ├── FikaUIGlobals.cs │ ├── Models │ │ ├── AvailableReceiversRequest.cs │ │ ├── FikaLocalization.cs │ │ └── LobbyEntry.cs │ └── Patches │ │ ├── AchievementView_Show_Patch.cs │ │ ├── AchievementsScreen_Show_Patch.cs │ │ ├── ChangeGameModeButton_Patch.cs │ │ ├── CoopSettingsWindow_Show_Patch.cs │ │ ├── DisableInsuranceReadyButton_Patch.cs │ │ ├── DisableMatchSettingsReadyButton_Patch.cs │ │ ├── DisableReadyButton_Patch.cs │ │ ├── DisconnectButton_Patch.cs │ │ ├── FikaVersionLabel_Patch.cs │ │ ├── ItemContext_Patch.cs │ │ ├── MainMenuControllerClass_method_55_Patch.cs │ │ ├── MainMenuUI │ │ ├── GClass3871_ShowAction_Patch.cs │ │ ├── HideoutPlayerOwner_SetPointOfView_Patch.cs │ │ ├── MenuScreen_Awake_Patch.cs │ │ ├── MenuScreen_method_9_Patch.cs │ │ └── RagfairScreen_Show_Patch.cs │ │ ├── MatchmakerAcceptScreen │ │ ├── MatchmakerAcceptScreen_Awake_Patch.cs │ │ └── MatchmakerAcceptScreen_Show_Patch.cs │ │ ├── MatchmakerOfflineRaidScreen_Awake_Patch.cs │ │ ├── MatchmakerOfflineRaidScreen_Close_Patch.cs │ │ ├── MatchmakerPlayerControllerClass_GetCoopBlockReason_Patch.cs │ │ ├── MenuTaskBar_Patch.cs │ │ ├── PartyInfoPanel_Show_Patch.cs │ │ ├── RaidSettingsWindow_Show_Patch.cs │ │ ├── RaidSettingsWindow_method_8_Patch.cs │ │ ├── SessionResultExitStatus_Show_Patch.cs │ │ ├── SettingsUIScreen │ │ └── SettingsScreen_Awake_Patch.cs │ │ └── TarkovApplication_method_16_Patch.cs └── packages.lock.json ├── LICENSE.md ├── Licenses ├── LICENSE-K40s-LZ4.md ├── LICENSE-LiteNetLib.md ├── LICENSE-Mirror.md ├── LICENSE-Open.NAT.md ├── LICENSE-SIT.md └── LICENSE.md ├── Properties ├── AssemblyInfo.cs ├── build │ ├── goldmaster-core.bat │ └── postbuild-core.bat └── signing │ ├── .gitignore │ └── generate.bat ├── README.md ├── References ├── AnimationSystem.Types.dll ├── Comfort.Unity.dll ├── Comfort.dll ├── CommonExtensions.dll ├── DOTween.Modules.dll ├── DOTween.dll ├── DissonanceVoip.dll ├── ItemComponent.Types.dll ├── ItemTemplate.Types.dll ├── Newtonsoft.Json.dll ├── Sirenix.Serialization.dll ├── System.Runtime.CompilerServices.Unsafe.dll ├── Unity.Postprocessing.Runtime.dll ├── Unity.TextMeshPro.dll ├── UnityEngine.UI.dll ├── UnityEngine.dll ├── bsg.componentace.compression.libs.zlib.dll ├── bsg.console.core.dll ├── com.unity.multiplayer-hlapi.Runtime.dll ├── hollowed.dll ├── spt-common.dll ├── spt-core.dll ├── spt-custom.dll ├── spt-debugging.dll ├── spt-reflection.dll ├── spt-singleplayer.dll └── websocket-sharp.dll └── nuget.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_goldmaster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/workflows/build_goldmaster.yaml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Build.props -------------------------------------------------------------------------------- /Fika-Plugin.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika-Plugin.code-workspace -------------------------------------------------------------------------------- /Fika-Plugin.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika-Plugin.slnx -------------------------------------------------------------------------------- /Fika.Core/Bundles/Files/README.md: -------------------------------------------------------------------------------- 1 | These assets are managed and built by the Fika team -------------------------------------------------------------------------------- /Fika.Core/Bundles/Files/masterbundle.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Bundles/Files/masterbundle.bundle -------------------------------------------------------------------------------- /Fika.Core/Bundles/InternalBundleLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Bundles/InternalBundleLoader.cs -------------------------------------------------------------------------------- /Fika.Core/ConfigurationManagerAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/ConfigurationManagerAttributes.cs -------------------------------------------------------------------------------- /Fika.Core/ConsoleCommands/FikaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/ConsoleCommands/FikaCommands.cs -------------------------------------------------------------------------------- /Fika.Core/Fika.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Fika.Core.csproj -------------------------------------------------------------------------------- /Fika.Core/FikaPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/FikaPlugin.cs -------------------------------------------------------------------------------- /Fika.Core/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/GlobalUsings.cs -------------------------------------------------------------------------------- /Fika.Core/Jobs/HandlePlayerStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Jobs/HandlePlayerStates.cs -------------------------------------------------------------------------------- /Fika.Core/Jobs/InterpolatorJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Jobs/InterpolatorJob.cs -------------------------------------------------------------------------------- /Fika.Core/Jobs/PlayerSnapshots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Jobs/PlayerSnapshots.cs -------------------------------------------------------------------------------- /Fika.Core/Jobs/UpdateInterpolators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Jobs/UpdateInterpolators.cs -------------------------------------------------------------------------------- /Fika.Core/Main/BotClasses/BotFirearmController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/BotClasses/BotFirearmController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/BotClasses/BotHealthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/BotClasses/BotHealthController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/BotClasses/BotInventoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/BotClasses/BotInventoryController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/BotClasses/BotPlayerBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/BotClasses/BotPlayerBridge.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientHealthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientHealthController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientInventoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientInventoryController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientMovementContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientMovementContext.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientQuestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientQuestController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientRunddansController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientRunddansController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientSharedQuestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientSharedQuestController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientStatisticsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientStatisticsManager.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientTransitController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientTransitController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/ClientViewFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/ClientViewFilter.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/FikaClientGameWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/FikaClientGameWorld.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/FikaClientGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/FikaClientGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/FikaClientGrenadeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/FikaClientGrenadeFactory.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/FikaClientSmokeGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/FikaClientSmokeGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/FikaClientStunGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/FikaClientStunGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/FikaClientWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/FikaClientWorld.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/HandsControllers/FikaClientFirearmController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/HandsControllers/FikaClientFirearmController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/HandsControllers/FikaClientGrenadeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/HandsControllers/FikaClientGrenadeController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/HandsControllers/FikaClientKnifeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/HandsControllers/FikaClientKnifeController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/HandsControllers/FikaClientPortableRangeFinderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/HandsControllers/FikaClientPortableRangeFinderController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/HandsControllers/FikaClientQuickGrenadeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/HandsControllers/FikaClientQuickGrenadeController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/HandsControllers/FikaClientUsableItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/HandsControllers/FikaClientUsableItemController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/NoInertiaMovementContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/NoInertiaMovementContext.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ClientClasses/NoInertiaPhysical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ClientClasses/NoInertiaPhysical.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/BTRViewSynchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/BTRViewSynchronizer.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/BotStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/BotStateManager.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/CoopHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/CoopHandler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/CorpsePositionSyncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/CorpsePositionSyncer.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/FikaExfilManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/FikaExfilManager.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/FikaHalloweenEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/FikaHalloweenEventManager.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/FikaHealthBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/FikaHealthBar.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/FikaPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/FikaPing.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/FikaTimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/FikaTimeManager.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/ItemPositionSyncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/ItemPositionSyncer.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/LocalFikaTriggersModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/LocalFikaTriggersModule.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/PlayerPlateUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/PlayerPlateUI.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Components/ViewFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Components/ViewFilter.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Custom/BotDifficulties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Custom/BotDifficulties.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Custom/ThrottledMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Custom/ThrottledMono.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Factories/HandsControllerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Factories/HandsControllerFactory.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Factories/PingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Factories/PingFactory.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/FreeCamera.PlayerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/FreeCamera.PlayerList.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/FreeCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/FreeCamera.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/FreeCameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/FreeCameraController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/Patches/DeathFade_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/Patches/DeathFade_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/Patches/FadeBlackScreen_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/Patches/FadeBlackScreen_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/Patches/PlayEndGameSound_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/Patches/PlayEndGameSound_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/FreeCamera/Patches/PlayUISound_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/FreeCamera/Patches/PlayUISound_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/GameMode/BaseGameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/GameMode/BaseGameController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/GameMode/ClientGameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/GameMode/ClientGameController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/GameMode/CoopGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/GameMode/CoopGame.cs -------------------------------------------------------------------------------- /Fika.Core/Main/GameMode/HostGameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/GameMode/HostGameController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/GameMode/IFikaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/GameMode/IFikaGame.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostGameWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostGameWorld.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostInventoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostInventoryController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostSmokeGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostSmokeGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostStunGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostStunGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostTransitController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostTransitController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/FikaHostWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/FikaHostWorld.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/HostGrenadeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/HostGrenadeFactory.cs -------------------------------------------------------------------------------- /Fika.Core/Main/HostClasses/HostRunddansController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/HostClasses/HostRunddansController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/FikaObservedGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/FikaObservedGrenade.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/HandsControllers/ObservedEmptyHandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/HandsControllers/ObservedEmptyHandsController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/HandsControllers/ObservedFirearmController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/HandsControllers/ObservedFirearmController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/HandsControllers/ObservedGrenadeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/HandsControllers/ObservedGrenadeController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/HandsControllers/ObservedKnifeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/HandsControllers/ObservedKnifeController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/HandsControllers/ObservedMedsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/HandsControllers/ObservedMedsController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/HandsControllers/ObservedQuickGrenadeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/HandsControllers/ObservedQuickGrenadeController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedBreachDoorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedBreachDoorState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedDoorInteractionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedDoorInteractionState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedIdleZombieStateClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedIdleZombieStateClass.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedJumpState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedJumpState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedMountedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedMountedState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedMoveZombieStateClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedMoveZombieStateClass.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedRunState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedRunState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedSprintState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedSprintState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/MovementStates/ObservedStationaryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/MovementStates/ObservedStationaryState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedCorpseCulling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedCorpseCulling.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedHealthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedHealthController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedInventoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedInventoryController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedMovementContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedMovementContext.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedQuestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedQuestController.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedStatisticsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedStatisticsManager.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/ObservedViewFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/ObservedViewFilter.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/PlayerBridge/ObservedClientBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/PlayerBridge/ObservedClientBridge.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/PlayerBridge/ObservedHostBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/PlayerBridge/ObservedHostBridge.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/ExponentialMovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/ExponentialMovingAverage.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/Interpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/Interpolator.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/LICENSE.txt -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/Mathd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/Mathd.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/NetworkTimeSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/NetworkTimeSync.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/ObservedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/ObservedState.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/SnapshotInterpolationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/SnapshotInterpolationSettings.cs -------------------------------------------------------------------------------- /Fika.Core/Main/ObservedClasses/Snapshotting/Snapshotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/ObservedClasses/Snapshotting/Snapshotter.cs -------------------------------------------------------------------------------- /Fika.Core/Main/PacketHandlers/BotPacketSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/PacketHandlers/BotPacketSender.cs -------------------------------------------------------------------------------- /Fika.Core/Main/PacketHandlers/ClientPacketSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/PacketHandlers/ClientPacketSender.cs -------------------------------------------------------------------------------- /Fika.Core/Main/PacketHandlers/IPacketSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/PacketHandlers/IPacketSender.cs -------------------------------------------------------------------------------- /Fika.Core/Main/PacketHandlers/ObservedPacketSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/PacketHandlers/ObservedPacketSender.cs -------------------------------------------------------------------------------- /Fika.Core/Main/PacketHandlers/ServerPacketSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/PacketHandlers/ServerPacketSender.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/AI/AIPlaceLogicPartisan_Dispose_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/AI/AIPlaceLogicPartisan_Dispose_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/AI/BotReload_method_1_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/AI/BotReload_method_1_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/AbstractGamePatches/AbstractGame_InRaid_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/AbstractGamePatches/AbstractGame_InRaid_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Airdrops/OfflineAirdropServerLogicClass_UpdateOfflineClientLogic_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Airdrops/OfflineAirdropServerLogicClass_UpdateOfflineClientLogic_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Airdrops/OfflineAirplaneServerLogicClass_UpdateOfflineClientLogic_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Airdrops/OfflineAirplaneServerLogicClass_UpdateOfflineClientLogic_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Airdrops/SyncObjectProcessorClass_GetSyncObjectStrategyByType_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Airdrops/SyncObjectProcessorClass_GetSyncObjectStrategyByType_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Artillery/ArtilleryServerProjectileClass_Constructor_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Artillery/ArtilleryServerProjectileClass_Constructor_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Artillery/ServerShellingControllerClass_method_0_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Artillery/ServerShellingControllerClass_method_0_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Artillery/ServerShellingControllerClass_method_28_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Artillery/ServerShellingControllerClass_method_28_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRControllerClass_Init_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRControllerClass_Init_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRSide_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRSide_Patches.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRTurretView_AttachBot_Postfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRTurretView_AttachBot_Postfix.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRVehicle_method_38_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRVehicle_method_38_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRView_GoIn_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRView_GoIn_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRView_GoOut_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRView_GoOut_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/BTRView_Start_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/BTRView_Start_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BTR/Player_UpdateBtrTraderServiceData_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BTR/Player_UpdateBtrTraderServiceData_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/BotCacher_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/BotCacher_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Camera/OpticRetrice_UpdateTransform_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Camera/OpticRetrice_UpdateTransform_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Camera/PlayerCameraController_LateUpdate_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Camera/PlayerCameraController_LateUpdate_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Camera/WeaponManagerClass_ValidateScopeSmoothZoomUpdate_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Camera/WeaponManagerClass_ValidateScopeSmoothZoomUpdate_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Camera/WeaponManagerClass_method_12_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Camera/WeaponManagerClass_method_12_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/DebugPatches/GClass1615_method_0_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/DebugPatches/GClass1615_method_0_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/DebugPatches/LabsKeycardDebugPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/DebugPatches/LabsKeycardDebugPatch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/DebugPatches/TestHalloweenPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/DebugPatches/TestHalloweenPatch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/DebugPatches/UnityEngine_DebugLog_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/DebugPatches/UnityEngine_DebugLog_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/GClass2287_method_0_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/GClass2287_method_0_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/GClass3585_ExceptAI_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/GClass3585_ExceptAI_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/GameWorldPatches/GameWorld_Create_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/GameWorldPatches/GameWorld_Create_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/GameWorldPatches/GameWorld_ThrowItem_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/GameWorldPatches/GameWorld_ThrowItem_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/GameWorldPatches/GameWorld_method_2_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/GameWorldPatches/GameWorld_method_2_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/GrenadeClass_Init_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/GrenadeClass_Init_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Lighthouse/BufferInnerZone_ChangePlayerAccessStatus_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Lighthouse/BufferInnerZone_ChangePlayerAccessStatus_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Lighthouse/BufferInnerZone_ChangeZoneInteractionAvailability_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Lighthouse/BufferInnerZone_ChangeZoneInteractionAvailability_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Lighthouse/BufferZoneControllerClass_SetPlayerInZoneStatus_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Lighthouse/BufferZoneControllerClass_SetPlayerInZoneStatus_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Lighthouse/BufferZoneControllerClass_method_1_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Lighthouse/BufferZoneControllerClass_method_1_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Lighthouse/LighthouseTraderZone_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Lighthouse/LighthouseTraderZone_Patches.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Lighthouse/Zyriachy_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Lighthouse/Zyriachy_Patches.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/LocalGame/BaseLocalGame_method_14_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/LocalGame/BaseLocalGame_method_14_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/LocalGame/NonWaveSpawnScenario_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/LocalGame/NonWaveSpawnScenario_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/LocalGame/TarkovApplication_LocalGameCreator_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/LocalGame/TarkovApplication_LocalGameCreator_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/LocalGame/TarkovApplication_LocalGamePreparer_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/LocalGame/TarkovApplication_LocalGamePreparer_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/LocalGame/WaveSpawnScenario_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/LocalGame/WaveSpawnScenario_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/LocaleClass_ReloadBackendLocale_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/LocaleClass_ReloadBackendLocale_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Mines/MineDirectional_OnTriggerEnter_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Mines/MineDirectional_OnTriggerEnter_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Mines/Minefield_method_2_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Mines/Minefield_method_2_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/MovementContextPatches/MovementContext_PreviousRotation_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/MovementContextPatches/MovementContext_PreviousRotation_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/MovementContextPatches/MovementContext_RestorePreviousYaw_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/MovementContextPatches/MovementContext_RestorePreviousYaw_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/MovementContextPatches/MovementContext_Rotation_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/MovementContextPatches/MovementContext_Rotation_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/MovementContextPatches/MovementContext_method_11_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/MovementContextPatches/MovementContext_method_11_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/MovementContextPatches/MovementContext_method_9_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/MovementContextPatches/MovementContext_method_9_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Overrides/FixSavageInventoryScreenPatch_Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Overrides/FixSavageInventoryScreenPatch_Override.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Overrides/OfflineRaidSettingsMenuPatch_Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Overrides/OfflineRaidSettingsMenuPatch_Override.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Overrides/ScavProfileLoad_Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Overrides/ScavProfileLoad_Override.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/BodyPartCollider_SetUpPlayer_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/BodyPartCollider_SetUpPlayer_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/Player_HasMarkOfUnknown_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/Player_HasMarkOfUnknown_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/Player_Hide_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/Player_Hide_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/Player_ManageAggressor_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/Player_ManageAggressor_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/Player_OnDead_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/Player_OnDead_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/Player_SetDogtagInfo_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/Player_SetDogtagInfo_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/PlayerPatches/Player_SpawnInHands_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/PlayerPatches/Player_SpawnInHands_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Rockets/RocketLauncherConeBlastClass_Initialize_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Rockets/RocketLauncherConeBlastClass_Initialize_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Rockets/RocketProjectile_Launch_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Rockets/RocketProjectile_Launch_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Rockets/RocketProjectile_method_6_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Rockets/RocketProjectile_method_6_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Subsystems/CustomPlayerLoopSystemsInjector_InjectDataProviderSyncUpdate_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Subsystems/CustomPlayerLoopSystemsInjector_InjectDataProviderSyncUpdate_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Subsystems/CustomPlayerLoopSystemsInjector_InjectPostUNetUpdateSystem_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Subsystems/CustomPlayerLoopSystemsInjector_InjectPostUNetUpdateSystem_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Subsystems/CustomPlayerLoopSystemsInjector_MoveUNetUpdateSystemOnPreUpdate_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Subsystems/CustomPlayerLoopSystemsInjector_MoveUNetUpdateSystemOnPreUpdate_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/TransitController/TransitControllerAbstractClass_Exist_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/TransitController/TransitControllerAbstractClass_Exist_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/TransitInteractionControllerAbstractClass_method_11_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/TransitInteractionControllerAbstractClass_method_11_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Tripwire/TripwireSynchronizableObject_method_11_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Tripwire/TripwireSynchronizableObject_method_11_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/Tripwire/TripwireSynchronizableObject_method_6_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/Tripwire/TripwireSynchronizableObject_method_6_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/VOIP/BasicMicrophoneCapture_UpdateSubscribers_Transpiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/VOIP/BasicMicrophoneCapture_UpdateSubscribers_Transpiler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/VOIP/DissonanceComms_Start_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/VOIP/DissonanceComms_Start_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Patches/VOIP/Player_IDissonancePlayerType_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Patches/VOIP/Player_IDissonancePlayerType_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Players/FikaBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Players/FikaBot.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Players/FikaPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Players/FikaPlayer.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Players/ObservedPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Players/ObservedPlayer.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Utils/FikaBackendUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Utils/FikaBackendUtils.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Utils/FikaGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Utils/FikaGlobals.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Utils/FikaModHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Utils/FikaModHandler.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Utils/LocaleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Utils/LocaleUtils.cs -------------------------------------------------------------------------------- /Fika.Core/Main/Utils/WorldToScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Main/Utils/WorldToScreen.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/AbstractGameCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/AbstractGameCreatedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/FikaEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/FikaEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/FikaGameCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/FikaGameCreatedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/FikaGameEndedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/FikaGameEndedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/FikaNetworkManagerCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/FikaNetworkManagerCreatedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/FikaNetworkManagerDestroyedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/FikaNetworkManagerDestroyedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/FikaRaidStartedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/FikaRaidStartedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/GameWorldStartedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/GameWorldStartedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/Events/PeerConnectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/Events/PeerConnectedEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Modding/FikaEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Modding/FikaEventDispatcher.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/FikaClient.Callbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/FikaClient.Callbacks.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/FikaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/FikaClient.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/FikaPingingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/FikaPingingClient.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/FikaSerializationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/FikaSerializationExtensions.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/FikaServer.Callbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/FikaServer.Callbacks.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/FikaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/FikaServer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Http/FikaRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Http/FikaRequestHandler.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/IFikaNetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/IFikaNetworkManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/AssemblyHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/AssemblyHook.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/EncoderAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/EncoderAction.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/ILZ4Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/ILZ4Decoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/ILZ4Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/ILZ4Encoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4BlockDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4BlockDecoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4BlockEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4BlockEncoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4ChainDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4ChainDecoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4Decoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4Encoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4EncoderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4EncoderBase.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4EncoderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4EncoderExtensions.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4FastChainEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4FastChainEncoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Encoders/LZ4HighChainEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Encoders/LZ4HighChainEncoder.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/Algorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/Algorithm.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/LL.high.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/LL.high.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/LL.tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/LL.tools.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/LL.types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/LL.types.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/LL.types.high.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/LL.types.high.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/LLxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/LLxx.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/Pubternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/Pubternal.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/order.high.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/order.high.txt -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x32/LL32.dec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x32/LL32.dec.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x32/LL32.fast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x32/LL32.fast.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x32/LL32.high.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x32/LL32.high.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x32/LL32.tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x32/LL32.tools.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x64/LL64.dec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x64/LL64.dec.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x64/LL64.fast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x64/LL64.fast.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x64/LL64.high.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x64/LL64.high.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Engine/x64/LL64.tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Engine/x64/LL64.tools.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/BufferPool.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/Extensions.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/Mem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/Mem.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/PinnedMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/PinnedMemory.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/UnmanagedResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/UnmanagedResources.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/x32/Mem32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/x32/Mem32.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/Internal/x64/Mem64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/Internal/x64/Mem64.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/LZ4Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/LZ4Codec.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/LZ4Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/LZ4Level.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/LZ4Pickler.pickle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/LZ4Pickler.pickle.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LZ4/LZ4Pickler.unpickle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LZ4/LZ4Pickler.unpickle.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/BaseChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/BaseChannel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/ConnectionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/ConnectionRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/INetEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/INetEventListener.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/InternalPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/InternalPackets.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/LICENSE.md -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Layers/Crc32cLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Layers/Crc32cLayer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Layers/PacketLayerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Layers/PacketLayerBase.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Layers/XorEncryptLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Layers/XorEncryptLayer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NatPunchModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NatPunchModule.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NativeSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NativeSocket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetConstants.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetDebug.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetManager.HashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetManager.HashSet.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetManager.PacketPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetManager.PacketPool.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetManager.Socket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetManager.Socket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetPeer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetStatistics.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/NetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/NetUtils.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/PausedSocketFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/PausedSocketFix.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/PooledPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/PooledPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/ReliableChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/ReliableChannel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/SequencedChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/SequencedChannel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Trimming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Trimming.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/CRC32C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/CRC32C.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/FastBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/FastBitConverter.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/INetSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/INetSerializable.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/NetDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/NetDataReader.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/NetDataWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/NetDataWriter.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/NetPacketProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/NetPacketProcessor.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/NetSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/NetSerializer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/NtpPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/NtpPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/NtpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/NtpRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/LiteNetLib/Utils/Preserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/LiteNetLib/Utils/Preserve.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/AddPlayerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/AddPlayerRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Admin/CurrentSettingsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Admin/CurrentSettingsResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Admin/SetSettingsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Admin/SetSettingsRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Admin/SetSettingsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Admin/SetSettingsResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/CheckVersionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/CheckVersionResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/ClientConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/ClientConfigModel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/CreateMatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/CreateMatchRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/DownloadProfileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/DownloadProfileResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/GetHostRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/GetHostRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/GetHostResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/GetHostResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/GetHostStunRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/GetHostStunRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/GetHostStunResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/GetHostStunResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Headless/AvailableHeadlessClientsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Headless/AvailableHeadlessClientsRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Headless/StartHeadlessRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Headless/StartHeadlessRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Headless/StartHeadlessResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Headless/StartHeadlessResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/MatchJoinRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/MatchJoinRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/MatchJoinResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/MatchJoinResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/ModValidationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/ModValidationResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/NatPunchServerConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/NatPunchServerConfigModel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/PingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/PingRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/PlayerLeftRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/PlayerLeftRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/PlayerSpawnRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/PlayerSpawnRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Presence/FikaPlayerPresenceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Presence/FikaPlayerPresenceResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/Presence/FikaSetPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/Presence/FikaSetPresence.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/RaidSettingsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/RaidSettingsRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/RaidSettingsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/RaidSettingsResponse.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/RegisterPlayerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/RegisterPlayerRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/RestartAfterRaidAmountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/RestartAfterRaidAmountModel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/SetHostRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/SetHostRequest.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Models/SetStatusModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Models/SetStatusModel.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/NetManagerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/NetManagerUtils.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/NetworkUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/NetworkUtils.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Discovery/ISearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Discovery/ISearcher.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Discovery/Searcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Discovery/Searcher.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Enums/ProtocolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Enums/ProtocolType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/EventArgs/DeviceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/EventArgs/DeviceEventArgs.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Exceptions/MappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Exceptions/MappingException.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Exceptions/NatDeviceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Exceptions/NatDeviceNotFoundException.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Finalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Finalizer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/LICENSE.md -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Mapping.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/NatDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/NatDevice.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/NatDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/NatDiscoverer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Pmp/PmpConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Pmp/PmpConstants.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Pmp/PmpNatDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Pmp/PmpNatDevice.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Pmp/PmpSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Pmp/PmpSearcher.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/PortMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/PortMapper.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/DiscoveryResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/DiscoveryResponseMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/DiscoverDeviceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/DiscoverDeviceMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/CreatePortMappingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/CreatePortMappingMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/DeletePortMappingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/DeletePortMappingMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/GetExternalIPAddressMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/GetExternalIPAddressMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/GetGenericPortMappingEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/GetGenericPortMappingEntry.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/GetSpecificPortMappingEntryMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Requests/GetSpecificPortMappingEntryMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/AddPortMappingResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/AddPortMappingResponseMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/DeletePortMappingResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/DeletePortMappingResponseMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/GetExternalIPAddressResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/GetExternalIPAddressResponseMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/GetGenericPortMappingEntryResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/Messages/Responses/GetGenericPortMappingEntryResponseMessage.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/RequestMessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/RequestMessageBase.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/ResponseMessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/ResponseMessageBase.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/SoapClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/SoapClient.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/UpnpConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/UpnpConstants.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/UpnpNatDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/UpnpNatDevice.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/UpnpNatDeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/UpnpNatDeviceInfo.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Upnp/UpnpSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Upnp/UpnpSearcher.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Utils/Extensions.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Utils/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Utils/Guard.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Utils/IIPAddressesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Utils/IIPAddressesProvider.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Utils/IPAddressesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Utils/IPAddressesProvider.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Open.Nat/Utils/WellKnownConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Open.Nat/Utils/WellKnownConstants.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Backend/InformationPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Backend/InformationPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Backend/InraidQuestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Backend/InraidQuestPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Backend/LoadingProfilePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Backend/LoadingProfilePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Backend/NetworkSettingsPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Backend/NetworkSettingsPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Backend/StashesPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Backend/StashesPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Backend/StatisticsPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Backend/StatisticsPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/BotStatePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/BotStatePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/EventControllerEventPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/EventControllerEventPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/EventControllerInteractPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/EventControllerInteractPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/FlareSuccessPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/FlareSuccessPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/MessagePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/MessagePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/QuestConditionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/QuestConditionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/QuestDropItemPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/QuestDropItemPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/QuestItemPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/QuestItemPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/ResyncInventoryIdPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/ResyncInventoryIdPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/TextMessagePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/TextMessagePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/TransitEventPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/TransitEventPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Communication/TransitInteractPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Communication/TransitInteractPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Debug/CommandPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Debug/CommandPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Debug/SpawnItemPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Debug/SpawnItemPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/ERequestSubPacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/ERequestSubPacketType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/EFirearmSubPacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/EFirearmSubPacketType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/EGrenadePacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/EGrenadePacketType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/EReloadWithAmmoStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/EReloadWithAmmoStatus.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/CancelGrenadePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/CancelGrenadePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ChangeFireModePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ChangeFireModePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/CheckAmmoPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/CheckAmmoPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/CheckChamberPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/CheckChamberPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/CheckFireModePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/CheckFireModePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/CompassChangePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/CompassChangePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/CylinderMagPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/CylinderMagPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ExamineWeaponPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ExamineWeaponPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/FirearmLootPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/FirearmLootPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/FlareShotPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/FlareShotPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/GrenadePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/GrenadePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/KnifePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/KnifePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/LeftStanceChangePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/LeftStanceChangePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/LightStatesPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/LightStatesPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/QuickReloadMagPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/QuickReloadMagPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadBarrelsPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadBarrelsPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadBoltActionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadBoltActionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadLauncherPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadLauncherPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadMagPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadMagPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadWithAmmoPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ReloadWithAmmoPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/RocketShotPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/RocketShotPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/RollCylinderPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/RollCylinderPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ScopeStatesPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ScopeStatesPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ShotInfoPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ShotInfoPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleAimPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleAimPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleBipodPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleBipodPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleInventoryPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleInventoryPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleLauncherPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/ToggleLauncherPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/UnderbarrelSightingRangeDownPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/UnderbarrelSightingRangeDownPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/SubPackets/UnderbarrelSightingRangeUpPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/SubPackets/UnderbarrelSightingRangeUpPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/FirearmController/WeaponPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/FirearmController/WeaponPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/EGenericSubPacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/EGenericSubPacketType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/GenericPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/GenericPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/BorderZoneEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/BorderZoneEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/BtrSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/BtrSpawn.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/CharacterSyncPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/CharacterSyncPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/ClearEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/ClearEffects.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/ClientConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/ClientConnected.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/ClientDisconnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/ClientDisconnected.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/ClientExtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/ClientExtract.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/DisarmTripwire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/DisarmTripwire.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/ExfilCountdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/ExfilCountdown.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/InventoryPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/InventoryPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/MineEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/MineEvent.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/MuffledState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/MuffledState.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/OperationCallbackPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/OperationCallbackPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/PingPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/PingPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/SecretExfilFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/SecretExfilFound.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/SendCharacterPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/SendCharacterPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/SpawnAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/SpawnAI.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/SyncableItemPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/SyncableItemPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Generic/SubPackets/UpdateBackendData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Generic/SubPackets/UpdateBackendData.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/INetReusable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/INetReusable.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/IPoolSubPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/IPoolSubPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/IRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/IRequestPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/IReusable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/IReusable.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/ISubPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/ISubPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/CommonPlayerPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/CommonPlayerPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/ECommonSubPacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/ECommonSubPacketType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/EProceedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/EProceedType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/EStationaryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/EStationaryCommand.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/ArmorDamagePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/ArmorDamagePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/ContainerInteractionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/ContainerInteractionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/DamagePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/DamagePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/DropPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/DropPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/HeadLightsPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/HeadLightsPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/HealthSyncPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/HealthSyncPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/InteractionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/InteractionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/InventoryChangedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/InventoryChangedPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/MountingPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/MountingPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/PhrasePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/PhrasePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/ProceedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/ProceedPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/StationaryPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/StationaryPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/UsableItemPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/UsableItemPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/VaultPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/VaultPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/Common/SubPackets/WorldInteractionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/Common/SubPackets/WorldInteractionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/PlayerStatePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/PlayerStatePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/Player/SideEffectPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/Player/SideEffectPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/AirdropUpdatePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/AirdropUpdatePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/BTRInteractionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/BTRInteractionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/BufferZonePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/BufferZonePacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/CorpsePositionPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/CorpsePositionPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/HalloweenEventPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/HalloweenEventPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/InteractableInitPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/InteractableInitPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/LootSyncPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/LootSyncPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/ReconnectPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/ReconnectPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/RequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/RequestPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/RequestSubPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/RequestSubPackets.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/SpawnSyncObjectPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/SpawnSyncObjectPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/SpawnSyncObjectSubPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/SpawnSyncObjectSubPackets.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/SyncTransitControllersPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/SyncTransitControllersPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/SyncTrapsPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/SyncTrapsPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/WorldLootPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/WorldLootPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Packets/World/WorldPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Packets/World/WorldPacket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/ArraySegmentPooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/ArraySegmentPooling.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/BasePacketPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/BasePacketPoolManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/CommonSubPacketPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/CommonSubPacketPoolManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/FirearmSubPacketPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/FirearmSubPacketPoolManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/GenericSubPacketPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/GenericSubPacketPoolManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/PacketPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/PacketPool.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/PoolUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/PoolUtils.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Pooling/WriterPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Pooling/WriterPoolManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/VOIP/FikaCommsNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/VOIP/FikaCommsNetwork.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/VOIP/FikaVOIPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/VOIP/FikaVOIPClient.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/VOIP/FikaVOIPController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/VOIP/FikaVOIPController.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/VOIP/FikaVOIPPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/VOIP/FikaVOIPPeer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/VOIP/FikaVOIPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/VOIP/FikaVOIPServer.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/EFikaHeadlessWSMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/EFikaHeadlessWSMessageType.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/EFikaNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/EFikaNotification.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/FikaNotificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/FikaNotificationManager.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Headless/RequesterJoinRaid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Headless/RequesterJoinRaid.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Headless/StartRaid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Headless/StartRaid.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/HeadlessRequesterWebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/HeadlessRequesterWebSocket.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Notifications/OpenAdminMenuNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Notifications/OpenAdminMenuNotification.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Notifications/PushNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Notifications/PushNotification.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Notifications/ReceivedSentItemNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Notifications/ReceivedSentItemNotification.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Notifications/ShutdownClientNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Notifications/ShutdownClientNotification.cs -------------------------------------------------------------------------------- /Fika.Core/Networking/Websocket/Notifications/StartRaidNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/Networking/Websocket/Notifications/StartRaidNotification.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/AdminSettingsUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/AdminSettingsUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/AdminSettingsUIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/AdminSettingsUIScript.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/ButtonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/ButtonHandler.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/DebugUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/DebugUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/FikaChatUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/FikaChatUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/FikaChatUIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/FikaChatUIScript.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/FikaSettingsScreen/FikaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/FikaSettingsScreen/FikaSettings.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/FreecamUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/FreecamUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/IntUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/IntUpDown.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/ListPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/ListPlayer.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/MainMenuUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/MainMenuUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/MainMenuUIPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/MainMenuUIPlayer.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/MainMenuUIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/MainMenuUIScript.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/MatchMakerUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/MatchMakerUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/MatchMakerUIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/MatchMakerUIScript.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/RaidAdminUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/RaidAdminUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/RaidAdminUIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/RaidAdminUIScript.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Custom/SendItemUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Custom/SendItemUI.cs -------------------------------------------------------------------------------- /Fika.Core/UI/FikaUIGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/FikaUIGlobals.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Models/AvailableReceiversRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Models/AvailableReceiversRequest.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Models/FikaLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Models/FikaLocalization.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Models/LobbyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Models/LobbyEntry.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/AchievementView_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/AchievementView_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/AchievementsScreen_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/AchievementsScreen_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/ChangeGameModeButton_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/ChangeGameModeButton_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/CoopSettingsWindow_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/CoopSettingsWindow_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/DisableInsuranceReadyButton_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/DisableInsuranceReadyButton_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/DisableMatchSettingsReadyButton_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/DisableMatchSettingsReadyButton_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/DisableReadyButton_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/DisableReadyButton_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/DisconnectButton_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/DisconnectButton_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/FikaVersionLabel_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/FikaVersionLabel_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/ItemContext_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/ItemContext_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MainMenuControllerClass_method_55_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MainMenuControllerClass_method_55_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MainMenuUI/GClass3871_ShowAction_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MainMenuUI/GClass3871_ShowAction_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MainMenuUI/HideoutPlayerOwner_SetPointOfView_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MainMenuUI/HideoutPlayerOwner_SetPointOfView_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MainMenuUI/MenuScreen_Awake_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MainMenuUI/MenuScreen_Awake_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MainMenuUI/MenuScreen_method_9_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MainMenuUI/MenuScreen_method_9_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MainMenuUI/RagfairScreen_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MainMenuUI/RagfairScreen_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MatchmakerAcceptScreen/MatchmakerAcceptScreen_Awake_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MatchmakerAcceptScreen/MatchmakerAcceptScreen_Awake_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MatchmakerAcceptScreen/MatchmakerAcceptScreen_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MatchmakerAcceptScreen/MatchmakerAcceptScreen_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MatchmakerOfflineRaidScreen_Awake_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MatchmakerOfflineRaidScreen_Awake_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MatchmakerOfflineRaidScreen_Close_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MatchmakerOfflineRaidScreen_Close_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MatchmakerPlayerControllerClass_GetCoopBlockReason_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MatchmakerPlayerControllerClass_GetCoopBlockReason_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/MenuTaskBar_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/PartyInfoPanel_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/PartyInfoPanel_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/RaidSettingsWindow_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/RaidSettingsWindow_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/RaidSettingsWindow_method_8_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/RaidSettingsWindow_method_8_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/SessionResultExitStatus_Show_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/SessionResultExitStatus_Show_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/SettingsUIScreen/SettingsScreen_Awake_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/SettingsUIScreen/SettingsScreen_Awake_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/UI/Patches/TarkovApplication_method_16_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/UI/Patches/TarkovApplication_method_16_Patch.cs -------------------------------------------------------------------------------- /Fika.Core/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Fika.Core/packages.lock.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Licenses/LICENSE-K40s-LZ4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Licenses/LICENSE-K40s-LZ4.md -------------------------------------------------------------------------------- /Licenses/LICENSE-LiteNetLib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Licenses/LICENSE-LiteNetLib.md -------------------------------------------------------------------------------- /Licenses/LICENSE-Mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Licenses/LICENSE-Mirror.md -------------------------------------------------------------------------------- /Licenses/LICENSE-Open.NAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Licenses/LICENSE-Open.NAT.md -------------------------------------------------------------------------------- /Licenses/LICENSE-SIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Licenses/LICENSE-SIT.md -------------------------------------------------------------------------------- /Licenses/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Licenses/LICENSE.md -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/build/goldmaster-core.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Properties/build/goldmaster-core.bat -------------------------------------------------------------------------------- /Properties/build/postbuild-core.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Properties/build/postbuild-core.bat -------------------------------------------------------------------------------- /Properties/signing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Properties/signing/.gitignore -------------------------------------------------------------------------------- /Properties/signing/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/Properties/signing/generate.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /References/AnimationSystem.Types.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/AnimationSystem.Types.dll -------------------------------------------------------------------------------- /References/Comfort.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/Comfort.Unity.dll -------------------------------------------------------------------------------- /References/Comfort.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/Comfort.dll -------------------------------------------------------------------------------- /References/CommonExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/CommonExtensions.dll -------------------------------------------------------------------------------- /References/DOTween.Modules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/DOTween.Modules.dll -------------------------------------------------------------------------------- /References/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/DOTween.dll -------------------------------------------------------------------------------- /References/DissonanceVoip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/DissonanceVoip.dll -------------------------------------------------------------------------------- /References/ItemComponent.Types.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/ItemComponent.Types.dll -------------------------------------------------------------------------------- /References/ItemTemplate.Types.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/ItemTemplate.Types.dll -------------------------------------------------------------------------------- /References/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /References/Sirenix.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/Sirenix.Serialization.dll -------------------------------------------------------------------------------- /References/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /References/Unity.Postprocessing.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/Unity.Postprocessing.Runtime.dll -------------------------------------------------------------------------------- /References/Unity.TextMeshPro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/Unity.TextMeshPro.dll -------------------------------------------------------------------------------- /References/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/UnityEngine.UI.dll -------------------------------------------------------------------------------- /References/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/UnityEngine.dll -------------------------------------------------------------------------------- /References/bsg.componentace.compression.libs.zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/bsg.componentace.compression.libs.zlib.dll -------------------------------------------------------------------------------- /References/bsg.console.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/bsg.console.core.dll -------------------------------------------------------------------------------- /References/com.unity.multiplayer-hlapi.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/com.unity.multiplayer-hlapi.Runtime.dll -------------------------------------------------------------------------------- /References/hollowed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/hollowed.dll -------------------------------------------------------------------------------- /References/spt-common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/spt-common.dll -------------------------------------------------------------------------------- /References/spt-core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/spt-core.dll -------------------------------------------------------------------------------- /References/spt-custom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/spt-custom.dll -------------------------------------------------------------------------------- /References/spt-debugging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/spt-debugging.dll -------------------------------------------------------------------------------- /References/spt-reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/spt-reflection.dll -------------------------------------------------------------------------------- /References/spt-singleplayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/spt-singleplayer.dll -------------------------------------------------------------------------------- /References/websocket-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/References/websocket-sharp.dll -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fika/Fika-Plugin/HEAD/nuget.config --------------------------------------------------------------------------------