├── .gitignore ├── BuildTasks ├── BuildTasks.sln ├── ManifestGenerator │ ├── FodyWeavers.xml │ ├── Manifest.cs │ ├── ManifestGenerator.csproj │ └── ManifestGeneratorTask.cs └── Tasks │ └── ManifestGenerator.dll ├── Dependencies.props ├── GlobalUsings.cs ├── LICENSE ├── LICENSE_BepInEx ├── ManifestInfoSourceGenerator ├── ManifestInfoSG.cs └── ManifestInfoSourceGenerator.csproj ├── README.md ├── Shared.props ├── TheArchive.Core ├── ArchiveBootstrap.cs ├── ArchiveMod.cs ├── CHANGELOG.md ├── Core │ ├── ArchiveContractResolver.cs │ ├── ArchiveLegacyPatcher.cs │ ├── ArchiveSettings.cs │ ├── Attributes │ │ ├── BuildConstraint.cs │ │ ├── Feature │ │ │ ├── AutomatedFeature.cs │ │ │ ├── DisallowInGameToggle.cs │ │ │ ├── DoNotSaveToConfig.cs │ │ │ ├── EnableFeatureByDefault.cs │ │ │ ├── ForceDisable.cs │ │ │ ├── HideInModSettings.cs │ │ │ ├── Members │ │ │ │ ├── FeatureConfig.cs │ │ │ │ ├── IsAreaCullUpdateMethod.cs │ │ │ │ ├── IsGameStateChangedMethod.cs │ │ │ │ ├── IsLateUpdate.cs │ │ │ │ ├── IsUpdate.cs │ │ │ │ ├── SetEnabledStatus.cs │ │ │ │ ├── SetStaticInstance.cs │ │ │ │ ├── SetStaticLocalizationService.cs │ │ │ │ └── SetStaticLogger.cs │ │ │ ├── Patches │ │ │ │ ├── ArchiveConstructorPatch.cs │ │ │ │ ├── ArchivePatch.cs │ │ │ │ ├── IsFinalizer.cs │ │ │ │ ├── IsILManipulator.cs │ │ │ │ ├── IsInitMethod.cs │ │ │ │ ├── IsMethodNameProvider.cs │ │ │ │ ├── IsParameterTypesProvider.cs │ │ │ │ ├── IsPostfix.cs │ │ │ │ ├── IsPrefix.cs │ │ │ │ ├── IsTranspiler.cs │ │ │ │ └── IsTypeProvider.cs │ │ │ ├── RequiresRestart.cs │ │ │ └── Settings │ │ │ │ ├── FSDescription.cs │ │ │ │ ├── FSDisplayName.cs │ │ │ │ ├── FSHeader.cs │ │ │ │ ├── FSHide.cs │ │ │ │ ├── FSIdentifier.cs │ │ │ │ ├── FSIgnore.cs │ │ │ │ ├── FSInline.cs │ │ │ │ ├── FSMaxLength.cs │ │ │ │ ├── FSReadOnly.cs │ │ │ │ ├── FSRundownHint.cs │ │ │ │ ├── FSSeparator.cs │ │ │ │ ├── FSSlider.cs │ │ │ │ ├── FSSpacer.cs │ │ │ │ ├── FSTimestamp.cs │ │ │ │ └── FSUseDynamicSubmenu.cs │ │ ├── ModDefaultFeatureGroupName.cs │ │ ├── Module │ │ │ ├── ArchiveDependency.cs │ │ │ ├── ArchiveIncompatibility.cs │ │ │ └── ArchiveModule.cs │ │ └── RundownConstraint.cs │ ├── Attribution.cs │ ├── Bootstrap │ │ ├── ArchiveModuleChainloader.cs │ │ ├── CachedAssembly.cs │ │ ├── ICacheable.cs │ │ ├── ModuleInfo.cs │ │ └── TypeLoader.cs │ ├── BuildDB.cs │ ├── Exceptions │ │ └── ArchivePatchExceptions.cs │ ├── FeaturesAPI │ │ ├── Components │ │ │ ├── FButton.cs │ │ │ ├── FLabel.cs │ │ │ └── ISettingsComponent.cs │ │ ├── DynamicFeatureSettingsHelper.cs │ │ ├── Feature.cs │ │ ├── FeatureGroups.cs │ │ ├── FeatureInternal.cs │ │ ├── FeatureManager.cs │ │ ├── FeatureSettingsHelper.cs │ │ └── Settings │ │ │ ├── BoolSetting.cs │ │ │ ├── ButtonSetting.cs │ │ │ ├── ColorSetting.cs │ │ │ ├── EnumListSetting.cs │ │ │ ├── EnumSetting.cs │ │ │ ├── FComponentSetting.cs │ │ │ ├── FeatureSetting.cs │ │ │ ├── GenericDictionarySetting.cs │ │ │ ├── GenericListSetting.cs │ │ │ ├── KeySetting.cs │ │ │ ├── LabelSetting.cs │ │ │ ├── NotSavedFeatureSetting.cs │ │ │ ├── NumberSetting.cs │ │ │ ├── StringSetting.cs │ │ │ └── SubmenuSetting.cs │ ├── IArchiveModule.cs │ ├── InitSingletonBase.cs │ ├── Interop │ │ ├── Interop.cs │ │ └── LocaliaCoreInterop.cs │ ├── Localization │ │ ├── BaseLocalizationService.cs │ │ ├── FSType.cs │ │ ├── FeatureLocalizationService.cs │ │ ├── GroupDefinitions.cs │ │ ├── GroupLocalization.cs │ │ ├── ILocalizationService.cs │ │ ├── ILocalizedTextSetter.cs │ │ ├── ILocalizedTextUpdater.cs │ │ ├── IgnoreLocalization.cs │ │ ├── Language.cs │ │ ├── LocalizationCoreService.cs │ │ ├── LocalizationTextData.cs │ │ ├── Localized.cs │ │ ├── ModuleLocalizationData.cs │ │ └── ModuleLocalizationService.cs │ ├── Managers │ │ ├── DataBlockManager.NestedTypes.cs │ │ ├── DataBlockManager.cs │ │ └── ImplementationManager.cs │ ├── Models │ │ ├── ExpeditionLog.cs │ │ ├── GameBuildInfo.cs │ │ ├── PresenceGameState.cs │ │ └── SColor.cs │ ├── ModulesAPI │ │ ├── CustomSetting.cs │ │ └── CustomSettingManager.cs │ └── Settings │ │ └── EnabledFeatures.cs ├── Features │ └── Dev │ │ ├── AAColoredLogMessages.cs │ │ ├── AnalyticsBlocker.cs │ │ ├── CullingHook.cs │ │ ├── DamageLog.cs │ │ ├── FeaturesMarkdownCreator.cs │ │ ├── ForcedSeed.cs │ │ ├── GTFOApi_Compat.cs │ │ ├── GameDebugLogRedirect.cs │ │ ├── IconRenderSettings.cs │ │ ├── InputDisabler.cs │ │ ├── InternalUAudioListenerHelper.cs │ │ ├── MaulGavelChecksumPatch.cs │ │ ├── ModLanguage.cs │ │ ├── ModLanguageLegacy.cs │ │ ├── ModSettings.Attribution.cs │ │ ├── ModSettings.OtherTypes.cs │ │ ├── ModSettings.Receivers.cs │ │ ├── ModSettings.Search.cs │ │ ├── ModSettings.SettingsCreationHelper.cs │ │ ├── ModSettings.SubMenu.cs │ │ ├── ModSettings.cs │ │ ├── PageRundownPopupManager.cs │ │ ├── PlayerDialogFilter.cs │ │ ├── RedirectSettings.cs │ │ ├── SeedDebuggerNicknamePathFix.cs │ │ ├── SettingsDebug.cs │ │ ├── SmartFavoritesSaving.cs │ │ ├── StartupscreenOverride.cs │ │ ├── UnityRandomOverrider.cs │ │ ├── UpdateChecker.cs │ │ └── UpdateNotifier.cs ├── Interfaces │ ├── IArchiveLogger.cs │ ├── IInitAfterDataBlocksReady.cs │ ├── IInitAfterGameDataInitialized.cs │ ├── IInitCondition.cs │ ├── IInitImmediately.cs │ └── IInitializable.cs ├── JetBrains │ └── Annotations │ │ └── Attributes.cs ├── Loader │ ├── ANY_LoaderWrapper.cs │ ├── BIE_ArManualLogSource.cs │ ├── BIE_ArchiveMod.cs │ ├── BIE_LoaderWrapper.cs │ ├── BIE_LogSourceColorLookup.cs │ ├── BIE_LogWrapper.cs │ ├── ML_ArchiveMod.cs │ ├── ML_LoaderWrapper.cs │ └── ML_LogWrapper.cs ├── Localization │ ├── AnalyticsBlocker_Localization.json │ ├── ArchiveBootstrap_Localization.json │ ├── CullingHook_Localization.json │ ├── DamageLog_Localization.json │ ├── DramaManagerNoDebugLog_Localization.json │ ├── FeaturesMarkdownCreator_Localization.json │ ├── ForcedSeed_Localization.json │ ├── GTFOApi_Compat_Localization.json │ ├── GameDebugLogRedirect_Localization.json │ ├── IconRenderSettings_Localization.json │ ├── InputDisabler_Localization.json │ ├── InternalUAudioListenerHelper_Localization.json │ ├── LocalizationCoreService_Localization.json │ ├── MaulGavelChecksumPatch_Localization.json │ ├── ModLanguageLegacy_Localization.json │ ├── ModLanguage_Localization.json │ ├── ModSettings_Localization.json │ ├── PageRundownPopupManager_Localization.json │ ├── PlayerDialogFilter_Localization.json │ ├── RedirectSettings_Localization.json │ ├── SeedDebuggerNicknamePathFix_Localization.json │ ├── SettingsDebug_Localization.json │ ├── SmartFavoritesSaving_Localization.json │ ├── StartupscreenOverride_Localization.json │ ├── UnityRandomOverrider_Localization.json │ ├── UpdateChecker_Localization.json │ ├── UpdateNotifier_Localization.json │ ├── _TheArchive.Core_GroupDefinitions.json │ └── _TheArchive.Core_ModuleLocalization.json ├── MainArchiveModule.cs ├── README.md ├── Resources │ ├── .gitkeep │ └── LICENSE_JBA ├── TheArchive.Core.csproj ├── Utilities │ ├── Accessors.cs │ ├── ArchiveLogger.cs │ ├── GTFOLogger.cs │ ├── ImplementationManagerExtensions.cs │ ├── LocalFiles.cs │ ├── MetaDataHelper.cs │ ├── PresenceFormatter.cs │ ├── RundownFlagsExtensions.cs │ ├── SColorExtensions.cs │ ├── SharedUtils.cs │ ├── SoundEventCache.cs │ ├── UnityMessages.cs │ ├── Utils.BIE.cs │ └── Utils.cs ├── icon.png └── packages.config ├── TheArchive.Essentials ├── ArchiveEssentialsModule.cs ├── Features.md ├── Features │ ├── Accessibility │ │ ├── ChatTweaks.cs │ │ ├── DisableAmbientParticles.cs │ │ ├── DisableDeathDrone.cs │ │ ├── DisableHudSway.cs │ │ ├── DisableUIMirroring.cs │ │ ├── DisableUIParalax.cs │ │ ├── GlassLiquidOverride.cs │ │ ├── Nickname.cs │ │ ├── PlayerColorOverride.cs │ │ └── SentryMarkerTweaks.cs │ ├── Audio │ │ ├── DisableArtifactSoundLoop.cs │ │ ├── DisableInfectionBreathing.cs │ │ ├── DisableInfectionCoughing.cs │ │ ├── DisableRespawnSackAudio.cs │ │ ├── DisableSpitterAudio.cs │ │ ├── DisableStaminaBreathing.cs │ │ └── DynamicVolumeOverride.cs │ ├── Cosmetic │ │ ├── BotCustomization.cs │ │ ├── CustomWeaponFOV.cs │ │ ├── DisableTracers.cs │ │ ├── EnableLegacyHammers.cs │ │ ├── Glowsticks.cs │ │ └── VanityDirtControl.cs │ ├── Fixes │ │ ├── BioTrackerSmallRedDotFix.cs │ │ ├── BioTrackerStuckSoundFix.cs │ │ ├── DecayIRFNREFix.cs │ │ ├── InteractionFix.cs │ │ ├── KillIndicatorFix.cs │ │ ├── MapPanFix.cs │ │ ├── MapToObjectivesSwitchFix.cs │ │ ├── NoDeadPings.cs │ │ ├── PouncerFXFix.cs │ │ ├── ReloadMinusOneBugFix.cs │ │ └── WeaponShootForward.cs │ ├── Hud │ │ ├── BioPingColor.cs │ │ ├── CarryItemMarker.cs │ │ ├── CombatIndicator.cs │ │ ├── DetailedExpeditionDisplay.cs │ │ ├── DisplaySentryArchetypeName.cs │ │ ├── DontHideLoadoutUI.cs │ │ ├── EnhancedExpeditionTimer.cs │ │ ├── ExpeditionResultsScreenTweaks.cs │ │ ├── FlashlightIconColors.cs │ │ ├── HudToggle.cs │ │ ├── InteractReviveFix.cs │ │ ├── LoadingIndicator.cs │ │ ├── LogVisualizer.cs │ │ ├── ProMode.cs │ │ ├── PuzzleHUDTweaks.cs │ │ ├── RemoveDownedMessage.cs │ │ ├── Watermark.cs │ │ ├── WeaponPickerTweaks.cs │ │ └── WeaponStats.cs │ ├── LocalProgression │ │ └── ExpeditionUnlockSkip.cs │ ├── QoL │ │ ├── IntroSkip.cs │ │ ├── L4DStylePacks.cs │ │ ├── LastUsedGearSwitcher.cs │ │ ├── LoadoutRandomizer.cs │ │ ├── NoDroppedMagazineSounds.cs │ │ ├── NoNavMarkerHideInChat.cs │ │ ├── NoStoryDialog.cs │ │ ├── ReloadSoundCue.cs │ │ ├── ResourcePrioritizationPings.cs │ │ ├── SituationalAwareWeaponSwitch.cs │ │ ├── SkipElevatorAnimation.cs │ │ └── SortBoosters.cs │ ├── Security │ │ ├── AntiBoosterHack.cs │ │ ├── AntiGearHack.cs │ │ ├── AntiSpawn.cs │ │ └── PlayerLobbyManagement.cs │ └── Special │ │ ├── AdBlock.cs │ │ ├── AltTabCounter.cs │ │ ├── HideFirstPersonItem.cs │ │ ├── MuteSpeak.cs │ │ ├── ProcessPriority.cs │ │ ├── RemoveChatRestrictions.cs │ │ └── RundownEightReminder.cs ├── Localization │ ├── AdBlock_Localization.json │ ├── AlarmClassOnDoors_Localization.json │ ├── AltTabCounter_Localization.json │ ├── AntiBoosterHack_Localization.json │ ├── AntiGearHack_Localization.json │ ├── AntiSpawn_Localization.json │ ├── BioPingColor_Localization.json │ ├── BioTrackerStuckSoundFix_Localization.json │ ├── BotCustomization_Localization.json │ ├── CarryItemMarker_Localization.json │ ├── CenterMapOnPlayer_Localization.json │ ├── ChatTweaks_Localization.json │ ├── CombatIndicator_Localization.json │ ├── CustomWeaponFOV_Localization.json │ ├── DecayIRFNREFix_Localization.json │ ├── DetailedExpeditionDisplay_Localization.json │ ├── DisableAmbientParticles_Localization.json │ ├── DisableArtifactSoundLoop_Localization.json │ ├── DisableDeathDrone_Localization.json │ ├── DisableHudSway_Localization.json │ ├── DisableInfectionBreathing_Localization.json │ ├── DisableInfectionCoughing_Localization.json │ ├── DisableRespawnSackAudio_Localization.json │ ├── DisableSpitterAudio_Localization.json │ ├── DisableStaminaBreathing_Localization.json │ ├── DisableTracers_Localization.json │ ├── DisableUIMirroring_Localization.json │ ├── DisableUIParalax_Localization.json │ ├── DisplaySentryArchetypeName_Localization.json │ ├── DontHideLoadoutUI_Localization.json │ ├── DontPauseAudio_Localization.json │ ├── DynamicVolumeOverride_Localization.json │ ├── EnableLegacyHammers_Localization.json │ ├── EnhancedExpeditionTimer_Localization.json │ ├── ExpeditionResultsScreenTweaks_Localization.json │ ├── ExpeditionUnlockSkip_Localization.json │ ├── FlashlightIconColors_Localization.json │ ├── GlassLiquidOverride_Localization.json │ ├── Glowsticks_Localization.json │ ├── HideFirstPersonItem_Localization.json │ ├── HudToggle_Localization.json │ ├── InstantHackRelease_Localization.json │ ├── InteractReviveFix_Localization.json │ ├── InteractionFix_Localization.json │ ├── IntroSkip_Localization.json │ ├── L4DStylePacks_Localization.json │ ├── LastUsedGearSwitcher_Localization.json │ ├── LoadingIndicator_Localization.json │ ├── LoadoutRandomizer_Localization.json │ ├── LocalBoosters_Localization.json │ ├── LocalProgressionController_Localization.json │ ├── LocalProgressionCore_Localization.json │ ├── LocalVanity_Localization.json │ ├── LogVisualizer_Localization.json │ ├── MapPanFix_Localization.json │ ├── MapToObjectivesSwitchFix_Localization.json │ ├── MeleeCancelBackport_Localization.json │ ├── MineFixBackport_Localization.json │ ├── MuteSpeak_Localization.json │ ├── Nickname_Localization.json │ ├── NoDeadPings_Localization.json │ ├── NoDroppedMagazineSounds_Localization.json │ ├── NoNavMarkerHideInChat_Localization.json │ ├── NoStoryDialog_Localization.json │ ├── PlayFabManagerPatches_Localization.json │ ├── PlayerColorOverride_Localization.json │ ├── PlayerLobbyManagement_Localization.json │ ├── PouncerFXFix_Localization.json │ ├── ProMode_Localization.json │ ├── ProcessPriority_Localization.json │ ├── PuzzleHUDTweaks_Localization.json │ ├── R1LadderFix_Localization.json │ ├── R1SNetRevisionOverride_Localization.json │ ├── R1VisualPings_Localization.json │ ├── ReloadMinusOneBugFix_Localization.json │ ├── ReloadSoundCue_Localization.json │ ├── RemoveChatRestrictions_Localization.json │ ├── RemoveDownedMessage_Localization.json │ ├── ResourcePrioritizationPings_Localization.json │ ├── RundownEightReminder_Localization.json │ ├── SentryMarkerTweaks_Localization.json │ ├── SituationalAwareWeaponSwitch_Localization.json │ ├── SkipElevatorAnimation_Localization.json │ ├── SortBoosters_Localization.json │ ├── TerminalKeyMessage_Localization.json │ ├── ThrowablesRunFix_Localization.json │ ├── UnreadyButtonPatches_Localization.json │ ├── VanityDirtControl_Localization.json │ ├── Watermark_Localization.json │ ├── WeaponPickerTweaks_Localization.json │ ├── WeaponShootForward_Localization.json │ └── WeaponStats_Localization.json ├── README.md ├── Resources │ └── RundownFiveBoosterTemplates.json ├── TheArchive.Essentials.csproj └── icon.png ├── TheArchive.RichPresence ├── ArchiveRichPresenceModule.cs ├── Core │ ├── DRPIcons.cs │ ├── Managers │ │ ├── ArchiveDiscordManager.DiscordClient.cs │ │ ├── ArchiveDiscordManager.cs │ │ ├── DiscordLogger.cs │ │ └── PresenceManager.cs │ └── Settings │ │ └── RichPresenceSettings.cs ├── DiscordGameSDK │ ├── DiscordRPC.dll │ ├── LICENSE_DiscordRPC │ └── README.md ├── Features.md ├── Features │ └── Presence │ │ ├── CustomLobbyCodeString.cs │ │ ├── DisableBasePresence.cs │ │ ├── DiscordRichPresence.cs │ │ ├── ReactorDiscordRPC.cs │ │ ├── RichPresenceCore.cs │ │ └── SteamRichPresenceTweaks.cs ├── Localization │ ├── CustomLobbyCodeString_Localization.json │ ├── DisableBasePresence_Localization.json │ ├── DiscordRichPresence_Localization.json │ ├── ReactorDiscordRPC_Localization.json │ ├── RichPresenceCore_Localization.json │ └── SteamRichPresenceTweaks_Localization.json ├── README.md ├── TheArchive.RichPresence.csproj └── icon.png ├── TheArchive.sln ├── TheArchive.sln.DotSettings ├── img ├── TheArchive.Banner.xcf ├── TheArchive.Core.Icon.xcf ├── TheArchive.Essentials.Icon.xcf └── TheArchive.RichPresence.Icon.xcf └── lib ├── LICENSE_NEWTONSOFT.JSON.md ├── README.md ├── net45 └── Clonesoft.Json.dll └── net60 └── Clonesoft.Json.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildTasks/BuildTasks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/BuildTasks/BuildTasks.sln -------------------------------------------------------------------------------- /BuildTasks/ManifestGenerator/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/BuildTasks/ManifestGenerator/FodyWeavers.xml -------------------------------------------------------------------------------- /BuildTasks/ManifestGenerator/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/BuildTasks/ManifestGenerator/Manifest.cs -------------------------------------------------------------------------------- /BuildTasks/ManifestGenerator/ManifestGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/BuildTasks/ManifestGenerator/ManifestGenerator.csproj -------------------------------------------------------------------------------- /BuildTasks/ManifestGenerator/ManifestGeneratorTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/BuildTasks/ManifestGenerator/ManifestGeneratorTask.cs -------------------------------------------------------------------------------- /BuildTasks/Tasks/ManifestGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/BuildTasks/Tasks/ManifestGenerator.dll -------------------------------------------------------------------------------- /Dependencies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/Dependencies.props -------------------------------------------------------------------------------- /GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/GlobalUsings.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_BepInEx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/LICENSE_BepInEx -------------------------------------------------------------------------------- /ManifestInfoSourceGenerator/ManifestInfoSG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/ManifestInfoSourceGenerator/ManifestInfoSG.cs -------------------------------------------------------------------------------- /ManifestInfoSourceGenerator/ManifestInfoSourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/ManifestInfoSourceGenerator/ManifestInfoSourceGenerator.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/README.md -------------------------------------------------------------------------------- /Shared.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/Shared.props -------------------------------------------------------------------------------- /TheArchive.Core/ArchiveBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/ArchiveBootstrap.cs -------------------------------------------------------------------------------- /TheArchive.Core/ArchiveMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/ArchiveMod.cs -------------------------------------------------------------------------------- /TheArchive.Core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/CHANGELOG.md -------------------------------------------------------------------------------- /TheArchive.Core/Core/ArchiveContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/ArchiveContractResolver.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/ArchiveLegacyPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/ArchiveLegacyPatcher.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/ArchiveSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/ArchiveSettings.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/BuildConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/BuildConstraint.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/AutomatedFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/AutomatedFeature.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/DisallowInGameToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/DisallowInGameToggle.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/DoNotSaveToConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/DoNotSaveToConfig.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/EnableFeatureByDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/EnableFeatureByDefault.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/ForceDisable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/ForceDisable.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/HideInModSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/HideInModSettings.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/FeatureConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/FeatureConfig.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/IsAreaCullUpdateMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/IsAreaCullUpdateMethod.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/IsGameStateChangedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/IsGameStateChangedMethod.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/IsLateUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/IsLateUpdate.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/IsUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/IsUpdate.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/SetEnabledStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/SetEnabledStatus.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/SetStaticInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/SetStaticInstance.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/SetStaticLocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/SetStaticLocalizationService.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Members/SetStaticLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Members/SetStaticLogger.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/ArchiveConstructorPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/ArchiveConstructorPatch.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/ArchivePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/ArchivePatch.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsFinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsFinalizer.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsILManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsILManipulator.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsInitMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsInitMethod.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsMethodNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsMethodNameProvider.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsParameterTypesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsParameterTypesProvider.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsPostfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsPostfix.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsPrefix.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsTranspiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsTranspiler.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Patches/IsTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Patches/IsTypeProvider.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/RequiresRestart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/RequiresRestart.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSDescription.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSDisplayName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSDisplayName.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSHeader.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSHide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSHide.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSIdentifier.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSIgnore.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSInline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSInline.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSMaxLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSMaxLength.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSReadOnly.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSRundownHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSRundownHint.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSSeparator.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSSlider.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSSpacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSSpacer.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSTimestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSTimestamp.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Feature/Settings/FSUseDynamicSubmenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Feature/Settings/FSUseDynamicSubmenu.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/ModDefaultFeatureGroupName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/ModDefaultFeatureGroupName.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Module/ArchiveDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Module/ArchiveDependency.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Module/ArchiveIncompatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Module/ArchiveIncompatibility.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/Module/ArchiveModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/Module/ArchiveModule.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attributes/RundownConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attributes/RundownConstraint.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Attribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Attribution.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Bootstrap/ArchiveModuleChainloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Bootstrap/ArchiveModuleChainloader.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Bootstrap/CachedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Bootstrap/CachedAssembly.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Bootstrap/ICacheable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Bootstrap/ICacheable.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Bootstrap/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Bootstrap/ModuleInfo.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Bootstrap/TypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Bootstrap/TypeLoader.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/BuildDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/BuildDB.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Exceptions/ArchivePatchExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Exceptions/ArchivePatchExceptions.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Components/FButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Components/FButton.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Components/FLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Components/FLabel.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Components/ISettingsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Components/ISettingsComponent.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/DynamicFeatureSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/DynamicFeatureSettingsHelper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Feature.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/FeatureGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/FeatureGroups.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/FeatureInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/FeatureInternal.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/FeatureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/FeatureManager.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/FeatureSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/FeatureSettingsHelper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/BoolSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/BoolSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/ButtonSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/ButtonSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/ColorSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/ColorSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/EnumListSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/EnumListSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/EnumSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/EnumSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/FComponentSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/FComponentSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/FeatureSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/FeatureSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/GenericDictionarySetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/GenericDictionarySetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/GenericListSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/GenericListSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/KeySetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/KeySetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/LabelSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/LabelSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/NotSavedFeatureSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/NotSavedFeatureSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/NumberSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/NumberSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/StringSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/StringSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/FeaturesAPI/Settings/SubmenuSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/FeaturesAPI/Settings/SubmenuSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/IArchiveModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/IArchiveModule.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/InitSingletonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/InitSingletonBase.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Interop/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Interop/Interop.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Interop/LocaliaCoreInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Interop/LocaliaCoreInterop.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/BaseLocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/BaseLocalizationService.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/FSType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/FSType.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/FeatureLocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/FeatureLocalizationService.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/GroupDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/GroupDefinitions.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/GroupLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/GroupLocalization.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/ILocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/ILocalizationService.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/ILocalizedTextSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/ILocalizedTextSetter.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/ILocalizedTextUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/ILocalizedTextUpdater.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/IgnoreLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/IgnoreLocalization.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/Language.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/LocalizationCoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/LocalizationCoreService.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/LocalizationTextData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/LocalizationTextData.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/Localized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/Localized.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/ModuleLocalizationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/ModuleLocalizationData.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Localization/ModuleLocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Localization/ModuleLocalizationService.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Managers/DataBlockManager.NestedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Managers/DataBlockManager.NestedTypes.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Managers/DataBlockManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Managers/DataBlockManager.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Managers/ImplementationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Managers/ImplementationManager.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Models/ExpeditionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Models/ExpeditionLog.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Models/GameBuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Models/GameBuildInfo.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Models/PresenceGameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Models/PresenceGameState.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Models/SColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Models/SColor.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/ModulesAPI/CustomSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/ModulesAPI/CustomSetting.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/ModulesAPI/CustomSettingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/ModulesAPI/CustomSettingManager.cs -------------------------------------------------------------------------------- /TheArchive.Core/Core/Settings/EnabledFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Core/Settings/EnabledFeatures.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/AAColoredLogMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/AAColoredLogMessages.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/AnalyticsBlocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/AnalyticsBlocker.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/CullingHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/CullingHook.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/DamageLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/DamageLog.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/FeaturesMarkdownCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/FeaturesMarkdownCreator.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ForcedSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ForcedSeed.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/GTFOApi_Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/GTFOApi_Compat.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/GameDebugLogRedirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/GameDebugLogRedirect.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/IconRenderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/IconRenderSettings.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/InputDisabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/InputDisabler.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/InternalUAudioListenerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/InternalUAudioListenerHelper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/MaulGavelChecksumPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/MaulGavelChecksumPatch.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModLanguage.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModLanguageLegacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModLanguageLegacy.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.Attribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.Attribution.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.OtherTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.OtherTypes.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.Receivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.Receivers.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.Search.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.SettingsCreationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.SettingsCreationHelper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.SubMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.SubMenu.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/ModSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/ModSettings.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/PageRundownPopupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/PageRundownPopupManager.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/PlayerDialogFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/PlayerDialogFilter.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/RedirectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/RedirectSettings.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/SeedDebuggerNicknamePathFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/SeedDebuggerNicknamePathFix.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/SettingsDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/SettingsDebug.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/SmartFavoritesSaving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/SmartFavoritesSaving.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/StartupscreenOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/StartupscreenOverride.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/UnityRandomOverrider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/UnityRandomOverrider.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/UpdateChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/UpdateChecker.cs -------------------------------------------------------------------------------- /TheArchive.Core/Features/Dev/UpdateNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Features/Dev/UpdateNotifier.cs -------------------------------------------------------------------------------- /TheArchive.Core/Interfaces/IArchiveLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Interfaces/IArchiveLogger.cs -------------------------------------------------------------------------------- /TheArchive.Core/Interfaces/IInitAfterDataBlocksReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Interfaces/IInitAfterDataBlocksReady.cs -------------------------------------------------------------------------------- /TheArchive.Core/Interfaces/IInitAfterGameDataInitialized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Interfaces/IInitAfterGameDataInitialized.cs -------------------------------------------------------------------------------- /TheArchive.Core/Interfaces/IInitCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Interfaces/IInitCondition.cs -------------------------------------------------------------------------------- /TheArchive.Core/Interfaces/IInitImmediately.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Interfaces/IInitImmediately.cs -------------------------------------------------------------------------------- /TheArchive.Core/Interfaces/IInitializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Interfaces/IInitializable.cs -------------------------------------------------------------------------------- /TheArchive.Core/JetBrains/Annotations/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/JetBrains/Annotations/Attributes.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/ANY_LoaderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/ANY_LoaderWrapper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/BIE_ArManualLogSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/BIE_ArManualLogSource.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/BIE_ArchiveMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/BIE_ArchiveMod.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/BIE_LoaderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/BIE_LoaderWrapper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/BIE_LogSourceColorLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/BIE_LogSourceColorLookup.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/BIE_LogWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/BIE_LogWrapper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/ML_ArchiveMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/ML_ArchiveMod.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/ML_LoaderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/ML_LoaderWrapper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Loader/ML_LogWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Loader/ML_LogWrapper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Localization/AnalyticsBlocker_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/AnalyticsBlocker_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/ArchiveBootstrap_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/ArchiveBootstrap_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/CullingHook_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/CullingHook_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/DamageLog_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/DamageLog_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/DramaManagerNoDebugLog_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/DramaManagerNoDebugLog_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/FeaturesMarkdownCreator_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/FeaturesMarkdownCreator_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/ForcedSeed_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/ForcedSeed_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/GTFOApi_Compat_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/GTFOApi_Compat_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/GameDebugLogRedirect_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/GameDebugLogRedirect_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/IconRenderSettings_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/IconRenderSettings_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/InputDisabler_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/InputDisabler_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/InternalUAudioListenerHelper_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/InternalUAudioListenerHelper_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/LocalizationCoreService_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/LocalizationCoreService_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/MaulGavelChecksumPatch_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/MaulGavelChecksumPatch_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/ModLanguageLegacy_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/ModLanguageLegacy_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/ModLanguage_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/ModLanguage_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/ModSettings_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/ModSettings_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/PageRundownPopupManager_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/PageRundownPopupManager_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/PlayerDialogFilter_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/PlayerDialogFilter_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/RedirectSettings_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/RedirectSettings_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/SeedDebuggerNicknamePathFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/SeedDebuggerNicknamePathFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/SettingsDebug_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/SettingsDebug_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/SmartFavoritesSaving_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/SmartFavoritesSaving_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/StartupscreenOverride_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/StartupscreenOverride_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/UnityRandomOverrider_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/UnityRandomOverrider_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/UpdateChecker_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/UpdateChecker_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/UpdateNotifier_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/UpdateNotifier_Localization.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/_TheArchive.Core_GroupDefinitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/_TheArchive.Core_GroupDefinitions.json -------------------------------------------------------------------------------- /TheArchive.Core/Localization/_TheArchive.Core_ModuleLocalization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Localization/_TheArchive.Core_ModuleLocalization.json -------------------------------------------------------------------------------- /TheArchive.Core/MainArchiveModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/MainArchiveModule.cs -------------------------------------------------------------------------------- /TheArchive.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/README.md -------------------------------------------------------------------------------- /TheArchive.Core/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TheArchive.Core/Resources/LICENSE_JBA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Resources/LICENSE_JBA -------------------------------------------------------------------------------- /TheArchive.Core/TheArchive.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/TheArchive.Core.csproj -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/Accessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/Accessors.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/ArchiveLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/ArchiveLogger.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/GTFOLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/GTFOLogger.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/ImplementationManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/ImplementationManagerExtensions.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/LocalFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/LocalFiles.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/MetaDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/MetaDataHelper.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/PresenceFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/PresenceFormatter.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/RundownFlagsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/RundownFlagsExtensions.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/SColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/SColorExtensions.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/SharedUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/SharedUtils.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/SoundEventCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/SoundEventCache.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/UnityMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/UnityMessages.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/Utils.BIE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/Utils.BIE.cs -------------------------------------------------------------------------------- /TheArchive.Core/Utilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/Utilities/Utils.cs -------------------------------------------------------------------------------- /TheArchive.Core/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/icon.png -------------------------------------------------------------------------------- /TheArchive.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Core/packages.config -------------------------------------------------------------------------------- /TheArchive.Essentials/ArchiveEssentialsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/ArchiveEssentialsModule.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features.md -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/ChatTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/ChatTweaks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/DisableAmbientParticles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/DisableAmbientParticles.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/DisableDeathDrone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/DisableDeathDrone.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/DisableHudSway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/DisableHudSway.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/DisableUIMirroring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/DisableUIMirroring.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/DisableUIParalax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/DisableUIParalax.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/GlassLiquidOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/GlassLiquidOverride.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/Nickname.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/Nickname.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/PlayerColorOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/PlayerColorOverride.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Accessibility/SentryMarkerTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Accessibility/SentryMarkerTweaks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DisableArtifactSoundLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DisableArtifactSoundLoop.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DisableInfectionBreathing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DisableInfectionBreathing.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DisableInfectionCoughing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DisableInfectionCoughing.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DisableRespawnSackAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DisableRespawnSackAudio.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DisableSpitterAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DisableSpitterAudio.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DisableStaminaBreathing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DisableStaminaBreathing.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Audio/DynamicVolumeOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Audio/DynamicVolumeOverride.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Cosmetic/BotCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Cosmetic/BotCustomization.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Cosmetic/CustomWeaponFOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Cosmetic/CustomWeaponFOV.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Cosmetic/DisableTracers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Cosmetic/DisableTracers.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Cosmetic/EnableLegacyHammers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Cosmetic/EnableLegacyHammers.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Cosmetic/Glowsticks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Cosmetic/Glowsticks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Cosmetic/VanityDirtControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Cosmetic/VanityDirtControl.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/BioTrackerSmallRedDotFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/BioTrackerSmallRedDotFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/BioTrackerStuckSoundFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/BioTrackerStuckSoundFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/DecayIRFNREFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/DecayIRFNREFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/InteractionFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/InteractionFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/KillIndicatorFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/KillIndicatorFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/MapPanFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/MapPanFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/MapToObjectivesSwitchFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/MapToObjectivesSwitchFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/NoDeadPings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/NoDeadPings.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/PouncerFXFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/PouncerFXFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/ReloadMinusOneBugFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/ReloadMinusOneBugFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Fixes/WeaponShootForward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Fixes/WeaponShootForward.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/BioPingColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/BioPingColor.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/CarryItemMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/CarryItemMarker.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/CombatIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/CombatIndicator.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/DetailedExpeditionDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/DetailedExpeditionDisplay.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/DisplaySentryArchetypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/DisplaySentryArchetypeName.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/DontHideLoadoutUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/DontHideLoadoutUI.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/EnhancedExpeditionTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/EnhancedExpeditionTimer.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/ExpeditionResultsScreenTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/ExpeditionResultsScreenTweaks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/FlashlightIconColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/FlashlightIconColors.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/HudToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/HudToggle.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/InteractReviveFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/InteractReviveFix.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/LoadingIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/LoadingIndicator.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/LogVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/LogVisualizer.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/ProMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/ProMode.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/PuzzleHUDTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/PuzzleHUDTweaks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/RemoveDownedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/RemoveDownedMessage.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/Watermark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/Watermark.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/WeaponPickerTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/WeaponPickerTweaks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Hud/WeaponStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Hud/WeaponStats.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/LocalProgression/ExpeditionUnlockSkip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/LocalProgression/ExpeditionUnlockSkip.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/IntroSkip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/IntroSkip.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/L4DStylePacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/L4DStylePacks.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/LastUsedGearSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/LastUsedGearSwitcher.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/LoadoutRandomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/LoadoutRandomizer.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/NoDroppedMagazineSounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/NoDroppedMagazineSounds.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/NoNavMarkerHideInChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/NoNavMarkerHideInChat.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/NoStoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/NoStoryDialog.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/ReloadSoundCue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/ReloadSoundCue.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/ResourcePrioritizationPings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/ResourcePrioritizationPings.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/SituationalAwareWeaponSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/SituationalAwareWeaponSwitch.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/SkipElevatorAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/SkipElevatorAnimation.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/QoL/SortBoosters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/QoL/SortBoosters.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Security/AntiBoosterHack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Security/AntiBoosterHack.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Security/AntiGearHack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Security/AntiGearHack.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Security/AntiSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Security/AntiSpawn.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Security/PlayerLobbyManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Security/PlayerLobbyManagement.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/AdBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/AdBlock.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/AltTabCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/AltTabCounter.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/HideFirstPersonItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/HideFirstPersonItem.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/MuteSpeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/MuteSpeak.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/ProcessPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/ProcessPriority.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/RemoveChatRestrictions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/RemoveChatRestrictions.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Features/Special/RundownEightReminder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Features/Special/RundownEightReminder.cs -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/AdBlock_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/AdBlock_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/AlarmClassOnDoors_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/AlarmClassOnDoors_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/AltTabCounter_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/AltTabCounter_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/AntiBoosterHack_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/AntiBoosterHack_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/AntiGearHack_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/AntiGearHack_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/AntiSpawn_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/AntiSpawn_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/BioPingColor_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/BioPingColor_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/BioTrackerStuckSoundFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/BioTrackerStuckSoundFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/BotCustomization_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/BotCustomization_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/CarryItemMarker_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/CarryItemMarker_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/CenterMapOnPlayer_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/CenterMapOnPlayer_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ChatTweaks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ChatTweaks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/CombatIndicator_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/CombatIndicator_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/CustomWeaponFOV_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/CustomWeaponFOV_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DecayIRFNREFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DecayIRFNREFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DetailedExpeditionDisplay_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DetailedExpeditionDisplay_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableAmbientParticles_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableAmbientParticles_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableArtifactSoundLoop_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableArtifactSoundLoop_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableDeathDrone_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableDeathDrone_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableHudSway_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableHudSway_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableInfectionBreathing_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableInfectionBreathing_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableInfectionCoughing_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableInfectionCoughing_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableRespawnSackAudio_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableRespawnSackAudio_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableSpitterAudio_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableSpitterAudio_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableStaminaBreathing_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableStaminaBreathing_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableTracers_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableTracers_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableUIMirroring_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableUIMirroring_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisableUIParalax_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisableUIParalax_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DisplaySentryArchetypeName_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DisplaySentryArchetypeName_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DontHideLoadoutUI_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DontHideLoadoutUI_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DontPauseAudio_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DontPauseAudio_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/DynamicVolumeOverride_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/DynamicVolumeOverride_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/EnableLegacyHammers_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/EnableLegacyHammers_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/EnhancedExpeditionTimer_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/EnhancedExpeditionTimer_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ExpeditionResultsScreenTweaks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ExpeditionResultsScreenTweaks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ExpeditionUnlockSkip_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ExpeditionUnlockSkip_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/FlashlightIconColors_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/FlashlightIconColors_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/GlassLiquidOverride_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/GlassLiquidOverride_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/Glowsticks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/Glowsticks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/HideFirstPersonItem_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/HideFirstPersonItem_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/HudToggle_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/HudToggle_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/InstantHackRelease_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/InstantHackRelease_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/InteractReviveFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/InteractReviveFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/InteractionFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/InteractionFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/IntroSkip_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/IntroSkip_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/L4DStylePacks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/L4DStylePacks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LastUsedGearSwitcher_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LastUsedGearSwitcher_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LoadingIndicator_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LoadingIndicator_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LoadoutRandomizer_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LoadoutRandomizer_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LocalBoosters_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LocalBoosters_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LocalProgressionController_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LocalProgressionController_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LocalProgressionCore_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LocalProgressionCore_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LocalVanity_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LocalVanity_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/LogVisualizer_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/LogVisualizer_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/MapPanFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/MapPanFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/MapToObjectivesSwitchFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/MapToObjectivesSwitchFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/MeleeCancelBackport_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/MeleeCancelBackport_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/MineFixBackport_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/MineFixBackport_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/MuteSpeak_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/MuteSpeak_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/Nickname_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/Nickname_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/NoDeadPings_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/NoDeadPings_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/NoDroppedMagazineSounds_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/NoDroppedMagazineSounds_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/NoNavMarkerHideInChat_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/NoNavMarkerHideInChat_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/NoStoryDialog_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/NoStoryDialog_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/PlayFabManagerPatches_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/PlayFabManagerPatches_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/PlayerColorOverride_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/PlayerColorOverride_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/PlayerLobbyManagement_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/PlayerLobbyManagement_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/PouncerFXFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/PouncerFXFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ProMode_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ProMode_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ProcessPriority_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ProcessPriority_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/PuzzleHUDTweaks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/PuzzleHUDTweaks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/R1LadderFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/R1LadderFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/R1SNetRevisionOverride_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/R1SNetRevisionOverride_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/R1VisualPings_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/R1VisualPings_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ReloadMinusOneBugFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ReloadMinusOneBugFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ReloadSoundCue_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ReloadSoundCue_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/RemoveChatRestrictions_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/RemoveChatRestrictions_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/RemoveDownedMessage_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/RemoveDownedMessage_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ResourcePrioritizationPings_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ResourcePrioritizationPings_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/RundownEightReminder_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/RundownEightReminder_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/SentryMarkerTweaks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/SentryMarkerTweaks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/SituationalAwareWeaponSwitch_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/SituationalAwareWeaponSwitch_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/SkipElevatorAnimation_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/SkipElevatorAnimation_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/SortBoosters_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/SortBoosters_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/TerminalKeyMessage_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/TerminalKeyMessage_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/ThrowablesRunFix_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/ThrowablesRunFix_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/UnreadyButtonPatches_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/UnreadyButtonPatches_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/VanityDirtControl_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/VanityDirtControl_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/Watermark_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/Watermark_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/WeaponPickerTweaks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/WeaponPickerTweaks_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/WeaponShootForward_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/WeaponShootForward_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/Localization/WeaponStats_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Localization/WeaponStats_Localization.json -------------------------------------------------------------------------------- /TheArchive.Essentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/README.md -------------------------------------------------------------------------------- /TheArchive.Essentials/Resources/RundownFiveBoosterTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/Resources/RundownFiveBoosterTemplates.json -------------------------------------------------------------------------------- /TheArchive.Essentials/TheArchive.Essentials.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/TheArchive.Essentials.csproj -------------------------------------------------------------------------------- /TheArchive.Essentials/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.Essentials/icon.png -------------------------------------------------------------------------------- /TheArchive.RichPresence/ArchiveRichPresenceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/ArchiveRichPresenceModule.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Core/DRPIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Core/DRPIcons.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Core/Managers/ArchiveDiscordManager.DiscordClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Core/Managers/ArchiveDiscordManager.DiscordClient.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Core/Managers/ArchiveDiscordManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Core/Managers/ArchiveDiscordManager.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Core/Managers/DiscordLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Core/Managers/DiscordLogger.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Core/Managers/PresenceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Core/Managers/PresenceManager.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Core/Settings/RichPresenceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Core/Settings/RichPresenceSettings.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/DiscordGameSDK/DiscordRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/DiscordGameSDK/DiscordRPC.dll -------------------------------------------------------------------------------- /TheArchive.RichPresence/DiscordGameSDK/LICENSE_DiscordRPC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/DiscordGameSDK/LICENSE_DiscordRPC -------------------------------------------------------------------------------- /TheArchive.RichPresence/DiscordGameSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/DiscordGameSDK/README.md -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features.md -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features/Presence/CustomLobbyCodeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features/Presence/CustomLobbyCodeString.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features/Presence/DisableBasePresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features/Presence/DisableBasePresence.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features/Presence/DiscordRichPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features/Presence/DiscordRichPresence.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features/Presence/ReactorDiscordRPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features/Presence/ReactorDiscordRPC.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features/Presence/RichPresenceCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features/Presence/RichPresenceCore.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Features/Presence/SteamRichPresenceTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Features/Presence/SteamRichPresenceTweaks.cs -------------------------------------------------------------------------------- /TheArchive.RichPresence/Localization/CustomLobbyCodeString_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Localization/CustomLobbyCodeString_Localization.json -------------------------------------------------------------------------------- /TheArchive.RichPresence/Localization/DisableBasePresence_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Localization/DisableBasePresence_Localization.json -------------------------------------------------------------------------------- /TheArchive.RichPresence/Localization/DiscordRichPresence_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Localization/DiscordRichPresence_Localization.json -------------------------------------------------------------------------------- /TheArchive.RichPresence/Localization/ReactorDiscordRPC_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Localization/ReactorDiscordRPC_Localization.json -------------------------------------------------------------------------------- /TheArchive.RichPresence/Localization/RichPresenceCore_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Localization/RichPresenceCore_Localization.json -------------------------------------------------------------------------------- /TheArchive.RichPresence/Localization/SteamRichPresenceTweaks_Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/Localization/SteamRichPresenceTweaks_Localization.json -------------------------------------------------------------------------------- /TheArchive.RichPresence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/README.md -------------------------------------------------------------------------------- /TheArchive.RichPresence/TheArchive.RichPresence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/TheArchive.RichPresence.csproj -------------------------------------------------------------------------------- /TheArchive.RichPresence/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.RichPresence/icon.png -------------------------------------------------------------------------------- /TheArchive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.sln -------------------------------------------------------------------------------- /TheArchive.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/TheArchive.sln.DotSettings -------------------------------------------------------------------------------- /img/TheArchive.Banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/img/TheArchive.Banner.xcf -------------------------------------------------------------------------------- /img/TheArchive.Core.Icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/img/TheArchive.Core.Icon.xcf -------------------------------------------------------------------------------- /img/TheArchive.Essentials.Icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/img/TheArchive.Essentials.Icon.xcf -------------------------------------------------------------------------------- /img/TheArchive.RichPresence.Icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/img/TheArchive.RichPresence.Icon.xcf -------------------------------------------------------------------------------- /lib/LICENSE_NEWTONSOFT.JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/lib/LICENSE_NEWTONSOFT.JSON.md -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/net45/Clonesoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/lib/net45/Clonesoft.Json.dll -------------------------------------------------------------------------------- /lib/net60/Clonesoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuriRex/GTFO_TheArchive/HEAD/lib/net60/Clonesoft.Json.dll --------------------------------------------------------------------------------