├── .editorconfig ├── .gitignore ├── BepInEx.PluginInfoProps.props ├── CheatAsteroidLandingPosition ├── CheatAsteroidLandingPosition.csproj ├── NuGet.Config └── Plugin.cs ├── CheatAutoConsume ├── CheatAutoConsume.csproj ├── NuGet.Config └── Plugin.cs ├── CheatAutoGrabAndMine ├── CheatAutoGrabAndMine.csproj ├── NuGet.Config └── Plugin.cs ├── CheatAutoHarvest ├── CheatAutoHarvest.csproj ├── NuGet.Config └── Plugin.cs ├── CheatAutoLaunchRocket ├── CheatAutoLaunchRocket.csproj ├── NuGet.Config └── Plugin.cs ├── CheatAutoSequenceDNA ├── CheatAutoSequenceDNA.csproj ├── NuGet.Config └── Plugin.cs ├── CheatAutoStore ├── CheatAutoStore.csproj ├── NuGet.Config └── Plugin.cs ├── CheatCraftFromNearbyContainers ├── CheatCraftFromNearbyContainers.csproj ├── NuGet.Config └── Plugin.cs ├── CheatInventoryStacking ├── CheatInventoryStacking.csproj ├── NuGet.Config ├── Plugin.cs ├── Plugin_Api.cs ├── Plugin_CraftManager.cs ├── Plugin_InventoryClientSetters.cs ├── Plugin_LogisticManager.cs ├── Plugin_MachineAutoCrafter.cs ├── Plugin_MachineDesintegrator.cs ├── Plugin_MachineDestruct.cs ├── Plugin_MachineGenerator.cs ├── Plugin_MachineGrowerVegetation.cs ├── Plugin_MachineOprimizer.cs ├── Plugin_MachineRocketBackAndForth.cs ├── Plugin_Mixed.cs └── Plugin_PlayerActionables.cs ├── CheatMachineRemoteDeposit ├── CheatMachineRemoteDeposit.csproj ├── NuGet.Config └── Plugin.cs ├── CheatMinimap ├── CheatMinimap.csproj ├── NuGet.Config ├── Plugin.cs └── images │ ├── above.png │ ├── altar.png │ ├── animal.png │ ├── aqualis_barren.png │ ├── aqualis_lush.png │ ├── below.png │ ├── chest.png │ ├── chest_golden.png │ ├── chest_starform.png │ ├── drone.png │ ├── furniture.png │ ├── fusion.png │ ├── humble_barren.png │ ├── humble_barren_1.png │ ├── humble_barren_old.png │ ├── humble_lush.png │ ├── humble_lush_1.png │ ├── humble_lush_old.png │ ├── ladder.png │ ├── map_barren.png │ ├── map_endgame.png │ ├── map_grid.png │ ├── map_lush.png │ ├── player_marker.png │ ├── player_marker_2.png │ ├── portal.png │ ├── poster.png │ ├── safe.png │ ├── selenea_barren.png │ ├── selenea_lush.png │ ├── server.png │ ├── stair.png │ ├── toxicity_barren.jpg │ ├── toxicity_lush.jpg │ └── wreck.png ├── CheatMoreTrade ├── CheatMoreTrade.csproj ├── NuGet.Config └── Plugin.cs ├── CheatNearbyResourcesHighlight ├── CheatNearbyResourcesHighlight.csproj ├── NuGet.Config └── Plugin.cs ├── CheatPhotomodeHideWater ├── CheatPhotomodeHideWater.csproj ├── NuGet.Config └── Plugin.cs ├── CheatRecyclerRemoteDeposit ├── CheatRecyclerRemoteDeposit.csproj ├── NuGet.Config └── Plugin.cs ├── CheatWreckMap ├── CheatWreckMap.csproj ├── NuGet.Config └── Plugin.cs ├── FeatCommandConsole ├── FeatCommandConsole.csproj ├── NuGet.Config └── Plugin.cs ├── FeatFlatlands ├── FeatFlatlands.csproj ├── NuGet.Config └── Plugin.cs ├── FeatMultiplayer ├── Assets │ ├── Astronaut_Back.png │ ├── Astronaut_Back_Host.png │ ├── Astronaut_Front.png │ ├── Astronaut_Front_Host.png │ ├── emote_comehere.png │ ├── emote_hello.png │ ├── emote_help.png │ ├── emote_no.png │ └── emote_yes.png ├── ClientConnection.cs ├── Ext.cs ├── FeatMultiplayer.csproj ├── FeatMultiplayerApi.cs ├── MessageTypes │ ├── MessageAllObjects.cs │ ├── MessageAsteroidSpawn.cs │ ├── MessageClientDisconnected.cs │ ├── MessageConsume.cs │ ├── MessageCraft.cs │ ├── MessageCraftWorld.cs │ ├── MessageCustom.cs │ ├── MessageDeath.cs │ ├── MessageDeconstruct.cs │ ├── MessageDeconstructPanel.cs │ ├── MessageDisconnected.cs │ ├── MessageDronePosition.cs │ ├── MessageDroneStats.cs │ ├── MessageDropWorldObject.cs │ ├── MessageEmote.cs │ ├── MessageEquipmentSwap.cs │ ├── MessageGameMode.cs │ ├── MessageGeneticsAction.cs │ ├── MessageGrab.cs │ ├── MessageGrowAdd.cs │ ├── MessageGrowRemove.cs │ ├── MessageHelper.cs │ ├── MessageInterfaces.cs │ ├── MessageInventories.cs │ ├── MessageInventoryAdded.cs │ ├── MessageInventoryChanged.cs │ ├── MessageInventoryRemoved.cs │ ├── MessageInventorySize.cs │ ├── MessageInventorySpawn.cs │ ├── MessageLaunch.cs │ ├── MessageLaunchTrade.cs │ ├── MessageLogin.cs │ ├── MessageMessageAdd.cs │ ├── MessageMessages.cs │ ├── MessageMeteorEvent.cs │ ├── MessageMicrochipUnlock.cs │ ├── MessageMined.cs │ ├── MessageMovePlayer.cs │ ├── MessagePanelChanged.cs │ ├── MessagePlaceConstructible.cs │ ├── MessagePlayerColor.cs │ ├── MessagePlayerJoined.cs │ ├── MessagePlayerLeft.cs │ ├── MessagePlayerPosition.cs │ ├── MessagePlayerWelcome.cs │ ├── MessagePrepareSpawn.cs │ ├── MessageSetLinkedGroups.cs │ ├── MessageSetTransform.cs │ ├── MessageSortInventory.cs │ ├── MessageStoryEvents.cs │ ├── MessageTerraformState.cs │ ├── MessageTerrainLayers.cs │ ├── MessageTime.cs │ ├── MessageUnlocks.cs │ ├── MessageUpdateAllStorage.cs │ ├── MessageUpdateColor.cs │ ├── MessageUpdateGrowth.cs │ ├── MessageUpdateStorage.cs │ ├── MessageUpdateSupplyDemand.cs │ ├── MessageUpdateText.cs │ ├── MessageUpdateWorldObject.cs │ └── MessageWorldObject.cs ├── NotifyUserMessage.cs ├── NuGet.Config ├── Open.NAT.dll ├── PlayerAvatar.cs ├── Plugin.cs ├── Plugin_Action_Craft.cs ├── Plugin_Action_Decode.cs ├── Plugin_Action_Deconstruct.cs ├── Plugin_Action_Drop.cs ├── Plugin_Action_Grab.cs ├── Plugin_Action_Inventory.cs ├── Plugin_Action_Login.cs ├── Plugin_Action_Mine.cs ├── Plugin_Action_Move.cs ├── Plugin_Action_Place.cs ├── Plugin_Action_UpdateColor.cs ├── Plugin_Action_UpdateText.cs ├── Plugin_Action_UpdateWorldObject.cs ├── Plugin_Api.cs ├── Plugin_Config.cs ├── Plugin_Dispatchers.cs ├── Plugin_Drones.cs ├── Plugin_Emoting.cs ├── Plugin_Environment.cs ├── Plugin_GameMode.cs ├── Plugin_Larvae.cs ├── Plugin_Launchpad.cs ├── Plugin_Logging.cs ├── Plugin_Lookups.cs ├── Plugin_Machines_AutoCrafter.cs ├── Plugin_Machines_Generator.cs ├── Plugin_Machines_Genetics.cs ├── Plugin_Machines_Grower.cs ├── Plugin_Machines_OutsideGrower.cs ├── Plugin_MainMenu.cs ├── Plugin_Meteors.cs ├── Plugin_Misc.cs ├── Plugin_Networking.cs ├── Plugin_Overlays.cs ├── Plugin_PlayerManagement.cs ├── Plugin_PlayerSetup.cs ├── Plugin_Session.cs ├── Plugin_Storage.cs ├── Plugin_Story.cs ├── Plugin_Sync.cs └── Plugin_Trade.cs ├── FeatSpaceCows ├── FeatSpaceCows.csproj ├── MessageAddRemoveSpaceCow.cs ├── MessageHelper.cs ├── NuGet.Config ├── Plugin.cs ├── SpaceCow.cs ├── SpaceCow1.pdn └── SpaceCow1.png ├── FeatTechniciansExile ├── FeatTechniciansExile.csproj ├── NuGet.Config ├── Plugin.cs ├── TechnicianAvatar.cs ├── Technician_Back.png ├── Technician_Front.png ├── technician_labels_english.txt ├── technician_labels_french.txt ├── technician_labels_hungarian.txt ├── technician_labels_russian.txt └── technician_labels_spanish.txt ├── FixUnofficialPatches ├── FixUnofficialPatches.csproj ├── NuGet.Config └── Plugin.cs ├── ItemRods ├── ItemRods.csproj ├── NuGet.Config ├── Plugin.cs └── images │ ├── Aluminium.png │ ├── Cobalt.png │ ├── Emission.png │ ├── Iron.png │ ├── Magnesium.png │ ├── Obsidian.png │ ├── Phosphorus.png │ ├── Rod.png │ ├── Selenium.png │ ├── Silicon.png │ ├── Sulfur.png │ ├── Titanium.png │ └── Zeolite.png ├── LICENSE ├── LathreyAutoMove ├── LathreyAutoMove.csproj ├── NuGet.Config └── Plugin.cs ├── LathreyDisableBuildConstraints ├── LathreyDisableBuildConstraints.csproj ├── NuGet.Config └── Plugin.cs ├── LibCommon ├── BepInExConfigCheck.cs ├── BepInExLoggerFix.cs ├── CallbackWaiter.cs ├── CoroutineCoordinator.cs ├── DictionaryCounter.cs ├── DictionaryStackCounter.cs ├── GameVersionCheck.cs ├── GeneticsGrouping.cs ├── GrabChecker.cs ├── HarmonyIntegrityCheck.cs ├── HashSetFast.cs ├── LibCommon.csproj ├── MainMenuMessage.cs ├── ModNetworking.cs ├── ModPlanetLoaded.cs ├── NuGet.Config ├── Plugin.cs ├── SaveModInfo.cs ├── StandardResourceSets.cs ├── UITranslator.cs └── UnityExt.cs ├── MiscCustomizeFlashlight ├── MiscCustomizeFlashlight.csproj ├── NuGet.Config └── Plugin.cs ├── MiscDebug ├── MiscDebug.csproj ├── NuGet.Config └── Plugin.cs ├── MiscModEnabler ├── MiscModEnabler.csproj ├── NuGet.Config └── Plugin.cs ├── MiscPluginUpdateChecker ├── MiscPluginUpdateChecker.csproj ├── NuGet.Config ├── Plugin.cs └── lib │ └── System.Xml.Linq.dll ├── MultiPlayerLocator ├── MultiPlayerLocator.csproj ├── NuGet.Config └── Plugin.cs ├── PerfStartup ├── NuGet.Config ├── PerfStartup.csproj └── Plugin.cs ├── README.md ├── SaveAsyncSave ├── NuGet.Config ├── Plugin.cs └── SaveAsyncSave.csproj ├── SaveAutoBackup ├── NuGet.Config ├── Plugin.cs └── SaveAutoBackup.csproj ├── SaveAutoSave ├── NuGet.Config ├── Plugin.cs └── SaveAutoSave.csproj ├── SaveQuickSave ├── NuGet.Config ├── Plugin.cs └── SaveQuickSave.csproj ├── ThePlanetCrafterMods.sln ├── UIBeaconText ├── NuGet.Config ├── Plugin.cs └── UIBeaconText.csproj ├── UIContinue ├── NuGet.Config ├── Plugin.cs └── UIContinue.csproj ├── UICustomInventorySortAll ├── NuGet.Config ├── Plugin.cs └── UICustomInventorySortAll.csproj ├── UIDeconstructPreventAccidental ├── NuGet.Config ├── Plugin.cs └── UIDeconstructPreventAccidental.csproj ├── UIHotbar ├── NuGet.Config ├── Plugin.cs └── UIHotbar.csproj ├── UIInventoryMoveMultiple ├── NuGet.Config ├── Plugin.cs └── UIInventoryMoveMultiple.csproj ├── UILogisticSelectAll ├── NuGet.Config ├── Plugin.cs └── UILogisticSelectAll.csproj ├── UIMenuShortcutKeys ├── NuGet.Config ├── Plugin.cs └── UIMenuShortcutKeys.csproj ├── UIModConfigMenu ├── NuGet.Config ├── Plugin.cs └── UIModConfigMenu.csproj ├── UIOverviewPanel ├── NuGet.Config ├── Plugin.cs └── UIOverviewPanel.csproj ├── UIPinRecipe ├── NuGet.Config ├── Plugin.cs └── UIPinRecipe.csproj ├── UIQuickLoot ├── NuGet.Config ├── Plugin.cs └── UIQuickLoot.csproj ├── UISaveOnQuit ├── NuGet.Config ├── Plugin.cs └── UISaveOnQuit.csproj ├── UIShowAutoCrafterRecipe ├── NuGet.Config ├── Plugin.cs └── UIShowAutoCrafterRecipe.csproj ├── UIShowConsumableCount ├── NuGet.Config ├── Plugin.cs └── UIShowConsumableCount.csproj ├── UIShowContainerInfo ├── NuGet.Config ├── Plugin.cs └── UIShowContainerInfo.csproj ├── UIShowCrash ├── NuGet.Config ├── Plugin.cs └── UIShowCrash.csproj ├── UIShowETA ├── NuGet.Config ├── Plugin.cs └── UIShowETA.csproj ├── UIShowGrabNMineCount ├── NuGet.Config ├── Plugin.cs └── UIShowGrabNMineCount.csproj ├── UIShowMultiToolMode ├── NuGet.Config ├── Plugin.cs └── UIShowMultiToolMode.csproj ├── UIShowPlayerInventoryCount ├── NuGet.Config ├── Plugin.cs └── UIShowPlayerInventoryCount.csproj ├── UIShowPlayerTooltipItemCount ├── NuGet.Config ├── Plugin.cs └── UIShowPlayerTooltipItemCount.csproj ├── UIShowRocketCount ├── NuGet.Config ├── Plugin.cs └── UIShowRocketCount.csproj ├── UISortSaves ├── NuGet.Config ├── Plugin.cs └── UISortSaves.csproj ├── UITelemetryFontSizer ├── NuGet.Config ├── Plugin.cs └── UITelemetryFontSizer.csproj ├── UITranslationCzech ├── NuGet.Config ├── Plugin.cs ├── UITranslationCzech.csproj └── labels-cz.txt ├── UITranslationEstonian ├── NuGet.Config ├── Plugin.cs ├── UITranslationEstonian.csproj └── labels-et.txt ├── UITranslationHungarian ├── NuGet.Config ├── Plugin.cs ├── UITranslationHungarian.csproj ├── history │ ├── labels.english_04008.txt │ ├── labels.english_04011.txt │ ├── labels.english_04014.txt │ ├── labels.english_05005.txt │ ├── labels.english_05006.txt │ ├── labels.english_06001.txt │ ├── labels.english_06002.txt │ ├── labels.english_06003.txt │ ├── labels.english_06004.txt │ ├── labels.english_06005.txt │ ├── labels.english_06006.txt │ ├── labels.english_06006a.txt │ ├── labels.english_06008.txt │ ├── labels.english_07001.txt │ ├── labels.english_07003.txt │ ├── labels.english_07004.txt │ ├── labels.english_07005.txt │ ├── labels.english_07006.txt │ ├── labels.english_07007.txt │ ├── labels.english_07009.txt │ ├── labels.english_08001.txt │ ├── labels.english_08002.txt │ ├── labels.english_08004.txt │ ├── labels.english_08005.txt │ ├── labels.english_08006.txt │ ├── labels.english_08007.txt │ ├── labels.english_08008.txt │ ├── labels.english_08009.txt │ ├── labels.english_09002.txt │ ├── labels.english_09003.txt │ ├── labels.english_09004.txt │ ├── labels.english_09006.txt │ ├── labels.english_09011.txt │ ├── labels.english_09020.txt │ ├── labels.english_09021.txt │ ├── labels.english_09022.txt │ ├── labels.english_09023.txt │ ├── labels.english_09025.txt │ ├── labels.english_09026.txt │ ├── labels.english_09027.txt │ ├── labels.english_09028.txt │ ├── labels.english_09031.txt │ ├── labels.english_09032.txt │ ├── labels.english_09033.txt │ ├── labels.english_09034.txt │ ├── labels.english_09035.txt │ ├── labels.english_10000.txt │ ├── labels.english_10001.txt │ ├── labels.english_10001a.txt │ ├── labels.english_10003.txt │ ├── labels.english_10004.txt │ ├── labels.english_10005.txt │ ├── labels.english_10005a.txt │ ├── labels.english_10005b.txt │ ├── labels.english_10005c.txt │ ├── labels.english_10005d.txt │ ├── labels.english_10100.txt │ ├── labels.english_10101.txt │ ├── labels.english_10103.txt │ ├── labels.english_10209.txt │ ├── labels.english_10210.txt │ ├── labels.english_10211.txt │ ├── labels.english_10212.txt │ ├── labels.english_10214.txt │ ├── labels.english_10307.txt │ ├── labels.english_10310.txt │ ├── labels.english_10313.txt │ ├── labels.english_10400.txt │ ├── labels.english_10401.txt │ ├── labels.english_10402.txt │ ├── labels.english_10403.txt │ ├── labels.english_10405.txt │ ├── labels.english_10406.txt │ ├── labels.english_10408.txt │ ├── labels.english_10410.txt │ ├── labels.english_10507.txt │ ├── labels.english_10508.txt │ ├── labels.english_10510.txt │ ├── labels.english_10512.txt │ ├── labels.english_10513.txt │ ├── labels.english_10514.txt │ ├── labels.english_10516.txt │ ├── labels.english_10517.txt │ ├── labels.english_10519.txt │ ├── labels.english_10521.txt │ ├── labels.english_10523.txt │ ├── labels.english_10525.txt │ ├── labels.english_10526.txt │ ├── labels.english_10600.txt │ ├── labels.english_10601.txt │ ├── labels.english_10602.txt │ ├── labels.english_10603.txt │ ├── labels.english_10604.txt │ ├── labels.english_10605.txt │ ├── labels.english_10606.txt │ ├── labels.english_10609.txt │ └── labels.english_10610.txt └── labels-hu.txt ├── UITranslationItalian ├── NuGet.Config ├── Plugin.cs ├── UITranslationItalian.csproj └── labels-it.txt ├── UITranslationKorean ├── NuGet.Config ├── Plugin.cs ├── UITranslationKorean.csproj └── labels-ko.txt ├── UITranslationPolish ├── NuGet.Config ├── Plugin.cs ├── UITranslationPolish.csproj └── labels-pl.txt ├── UITranslationRomanian ├── Plugin.cs ├── UITranslationRomanian.csproj └── labels-ro.txt ├── UITranslationUkrainian ├── NuGet.Config ├── Plugin.cs ├── UITranslationUkrainian.csproj └── labels-ua.txt ├── XTestPlugins ├── GlobalUsings.cs ├── RandomTests.cs ├── ReplaceUnityEngineText.cs ├── UnitTest1.cs ├── VersionInfoRepository_Test.cs └── XTestPlugins.csproj ├── ZapModVersions ├── Program.cs └── ZapModVersions.csproj ├── ZipRest ├── NuGet.Config ├── Plugin.cs └── ZipRest.csproj ├── create_plugin.bat ├── solution_private.targets ├── version_info.txt └── version_info_repository.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/.gitignore -------------------------------------------------------------------------------- /BepInEx.PluginInfoProps.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/BepInEx.PluginInfoProps.props -------------------------------------------------------------------------------- /CheatAsteroidLandingPosition/CheatAsteroidLandingPosition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAsteroidLandingPosition/CheatAsteroidLandingPosition.csproj -------------------------------------------------------------------------------- /CheatAsteroidLandingPosition/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAsteroidLandingPosition/NuGet.Config -------------------------------------------------------------------------------- /CheatAsteroidLandingPosition/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAsteroidLandingPosition/Plugin.cs -------------------------------------------------------------------------------- /CheatAutoConsume/CheatAutoConsume.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoConsume/CheatAutoConsume.csproj -------------------------------------------------------------------------------- /CheatAutoConsume/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoConsume/NuGet.Config -------------------------------------------------------------------------------- /CheatAutoConsume/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoConsume/Plugin.cs -------------------------------------------------------------------------------- /CheatAutoGrabAndMine/CheatAutoGrabAndMine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoGrabAndMine/CheatAutoGrabAndMine.csproj -------------------------------------------------------------------------------- /CheatAutoGrabAndMine/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoGrabAndMine/NuGet.Config -------------------------------------------------------------------------------- /CheatAutoGrabAndMine/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoGrabAndMine/Plugin.cs -------------------------------------------------------------------------------- /CheatAutoHarvest/CheatAutoHarvest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoHarvest/CheatAutoHarvest.csproj -------------------------------------------------------------------------------- /CheatAutoHarvest/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoHarvest/NuGet.Config -------------------------------------------------------------------------------- /CheatAutoHarvest/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoHarvest/Plugin.cs -------------------------------------------------------------------------------- /CheatAutoLaunchRocket/CheatAutoLaunchRocket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoLaunchRocket/CheatAutoLaunchRocket.csproj -------------------------------------------------------------------------------- /CheatAutoLaunchRocket/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoLaunchRocket/NuGet.Config -------------------------------------------------------------------------------- /CheatAutoLaunchRocket/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoLaunchRocket/Plugin.cs -------------------------------------------------------------------------------- /CheatAutoSequenceDNA/CheatAutoSequenceDNA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoSequenceDNA/CheatAutoSequenceDNA.csproj -------------------------------------------------------------------------------- /CheatAutoSequenceDNA/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoSequenceDNA/NuGet.Config -------------------------------------------------------------------------------- /CheatAutoSequenceDNA/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoSequenceDNA/Plugin.cs -------------------------------------------------------------------------------- /CheatAutoStore/CheatAutoStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoStore/CheatAutoStore.csproj -------------------------------------------------------------------------------- /CheatAutoStore/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoStore/NuGet.Config -------------------------------------------------------------------------------- /CheatAutoStore/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatAutoStore/Plugin.cs -------------------------------------------------------------------------------- /CheatCraftFromNearbyContainers/CheatCraftFromNearbyContainers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatCraftFromNearbyContainers/CheatCraftFromNearbyContainers.csproj -------------------------------------------------------------------------------- /CheatCraftFromNearbyContainers/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatCraftFromNearbyContainers/NuGet.Config -------------------------------------------------------------------------------- /CheatCraftFromNearbyContainers/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatCraftFromNearbyContainers/Plugin.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/CheatInventoryStacking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/CheatInventoryStacking.csproj -------------------------------------------------------------------------------- /CheatInventoryStacking/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/NuGet.Config -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_Api.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_CraftManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_CraftManager.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_InventoryClientSetters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_InventoryClientSetters.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_LogisticManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_LogisticManager.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineAutoCrafter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineAutoCrafter.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineDesintegrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineDesintegrator.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineDestruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineDestruct.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineGenerator.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineGrowerVegetation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineGrowerVegetation.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineOprimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineOprimizer.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_MachineRocketBackAndForth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_MachineRocketBackAndForth.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_Mixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_Mixed.cs -------------------------------------------------------------------------------- /CheatInventoryStacking/Plugin_PlayerActionables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatInventoryStacking/Plugin_PlayerActionables.cs -------------------------------------------------------------------------------- /CheatMachineRemoteDeposit/CheatMachineRemoteDeposit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMachineRemoteDeposit/CheatMachineRemoteDeposit.csproj -------------------------------------------------------------------------------- /CheatMachineRemoteDeposit/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMachineRemoteDeposit/NuGet.Config -------------------------------------------------------------------------------- /CheatMachineRemoteDeposit/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMachineRemoteDeposit/Plugin.cs -------------------------------------------------------------------------------- /CheatMinimap/CheatMinimap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/CheatMinimap.csproj -------------------------------------------------------------------------------- /CheatMinimap/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/NuGet.Config -------------------------------------------------------------------------------- /CheatMinimap/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/Plugin.cs -------------------------------------------------------------------------------- /CheatMinimap/images/above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/above.png -------------------------------------------------------------------------------- /CheatMinimap/images/altar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/altar.png -------------------------------------------------------------------------------- /CheatMinimap/images/animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/animal.png -------------------------------------------------------------------------------- /CheatMinimap/images/aqualis_barren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/aqualis_barren.png -------------------------------------------------------------------------------- /CheatMinimap/images/aqualis_lush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/aqualis_lush.png -------------------------------------------------------------------------------- /CheatMinimap/images/below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/below.png -------------------------------------------------------------------------------- /CheatMinimap/images/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/chest.png -------------------------------------------------------------------------------- /CheatMinimap/images/chest_golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/chest_golden.png -------------------------------------------------------------------------------- /CheatMinimap/images/chest_starform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/chest_starform.png -------------------------------------------------------------------------------- /CheatMinimap/images/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/drone.png -------------------------------------------------------------------------------- /CheatMinimap/images/furniture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/furniture.png -------------------------------------------------------------------------------- /CheatMinimap/images/fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/fusion.png -------------------------------------------------------------------------------- /CheatMinimap/images/humble_barren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/humble_barren.png -------------------------------------------------------------------------------- /CheatMinimap/images/humble_barren_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/humble_barren_1.png -------------------------------------------------------------------------------- /CheatMinimap/images/humble_barren_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/humble_barren_old.png -------------------------------------------------------------------------------- /CheatMinimap/images/humble_lush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/humble_lush.png -------------------------------------------------------------------------------- /CheatMinimap/images/humble_lush_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/humble_lush_1.png -------------------------------------------------------------------------------- /CheatMinimap/images/humble_lush_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/humble_lush_old.png -------------------------------------------------------------------------------- /CheatMinimap/images/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/ladder.png -------------------------------------------------------------------------------- /CheatMinimap/images/map_barren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/map_barren.png -------------------------------------------------------------------------------- /CheatMinimap/images/map_endgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/map_endgame.png -------------------------------------------------------------------------------- /CheatMinimap/images/map_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/map_grid.png -------------------------------------------------------------------------------- /CheatMinimap/images/map_lush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/map_lush.png -------------------------------------------------------------------------------- /CheatMinimap/images/player_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/player_marker.png -------------------------------------------------------------------------------- /CheatMinimap/images/player_marker_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/player_marker_2.png -------------------------------------------------------------------------------- /CheatMinimap/images/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/portal.png -------------------------------------------------------------------------------- /CheatMinimap/images/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/poster.png -------------------------------------------------------------------------------- /CheatMinimap/images/safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/safe.png -------------------------------------------------------------------------------- /CheatMinimap/images/selenea_barren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/selenea_barren.png -------------------------------------------------------------------------------- /CheatMinimap/images/selenea_lush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/selenea_lush.png -------------------------------------------------------------------------------- /CheatMinimap/images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/server.png -------------------------------------------------------------------------------- /CheatMinimap/images/stair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/stair.png -------------------------------------------------------------------------------- /CheatMinimap/images/toxicity_barren.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/toxicity_barren.jpg -------------------------------------------------------------------------------- /CheatMinimap/images/toxicity_lush.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/toxicity_lush.jpg -------------------------------------------------------------------------------- /CheatMinimap/images/wreck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMinimap/images/wreck.png -------------------------------------------------------------------------------- /CheatMoreTrade/CheatMoreTrade.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMoreTrade/CheatMoreTrade.csproj -------------------------------------------------------------------------------- /CheatMoreTrade/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMoreTrade/NuGet.Config -------------------------------------------------------------------------------- /CheatMoreTrade/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatMoreTrade/Plugin.cs -------------------------------------------------------------------------------- /CheatNearbyResourcesHighlight/CheatNearbyResourcesHighlight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatNearbyResourcesHighlight/CheatNearbyResourcesHighlight.csproj -------------------------------------------------------------------------------- /CheatNearbyResourcesHighlight/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatNearbyResourcesHighlight/NuGet.Config -------------------------------------------------------------------------------- /CheatNearbyResourcesHighlight/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatNearbyResourcesHighlight/Plugin.cs -------------------------------------------------------------------------------- /CheatPhotomodeHideWater/CheatPhotomodeHideWater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatPhotomodeHideWater/CheatPhotomodeHideWater.csproj -------------------------------------------------------------------------------- /CheatPhotomodeHideWater/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatPhotomodeHideWater/NuGet.Config -------------------------------------------------------------------------------- /CheatPhotomodeHideWater/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatPhotomodeHideWater/Plugin.cs -------------------------------------------------------------------------------- /CheatRecyclerRemoteDeposit/CheatRecyclerRemoteDeposit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatRecyclerRemoteDeposit/CheatRecyclerRemoteDeposit.csproj -------------------------------------------------------------------------------- /CheatRecyclerRemoteDeposit/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatRecyclerRemoteDeposit/NuGet.Config -------------------------------------------------------------------------------- /CheatRecyclerRemoteDeposit/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatRecyclerRemoteDeposit/Plugin.cs -------------------------------------------------------------------------------- /CheatWreckMap/CheatWreckMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatWreckMap/CheatWreckMap.csproj -------------------------------------------------------------------------------- /CheatWreckMap/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatWreckMap/NuGet.Config -------------------------------------------------------------------------------- /CheatWreckMap/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/CheatWreckMap/Plugin.cs -------------------------------------------------------------------------------- /FeatCommandConsole/FeatCommandConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatCommandConsole/FeatCommandConsole.csproj -------------------------------------------------------------------------------- /FeatCommandConsole/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatCommandConsole/NuGet.Config -------------------------------------------------------------------------------- /FeatCommandConsole/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatCommandConsole/Plugin.cs -------------------------------------------------------------------------------- /FeatFlatlands/FeatFlatlands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatFlatlands/FeatFlatlands.csproj -------------------------------------------------------------------------------- /FeatFlatlands/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatFlatlands/NuGet.Config -------------------------------------------------------------------------------- /FeatFlatlands/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatFlatlands/Plugin.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/Astronaut_Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/Astronaut_Back.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/Astronaut_Back_Host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/Astronaut_Back_Host.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/Astronaut_Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/Astronaut_Front.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/Astronaut_Front_Host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/Astronaut_Front_Host.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/emote_comehere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/emote_comehere.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/emote_hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/emote_hello.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/emote_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/emote_help.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/emote_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/emote_no.png -------------------------------------------------------------------------------- /FeatMultiplayer/Assets/emote_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Assets/emote_yes.png -------------------------------------------------------------------------------- /FeatMultiplayer/ClientConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/ClientConnection.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Ext.cs -------------------------------------------------------------------------------- /FeatMultiplayer/FeatMultiplayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/FeatMultiplayer.csproj -------------------------------------------------------------------------------- /FeatMultiplayer/FeatMultiplayerApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/FeatMultiplayerApi.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageAllObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageAllObjects.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageAsteroidSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageAsteroidSpawn.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageClientDisconnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageClientDisconnected.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageConsume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageConsume.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageCraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageCraft.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageCraftWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageCraftWorld.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageCustom.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDeath.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDeconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDeconstruct.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDeconstructPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDeconstructPanel.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDisconnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDisconnected.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDronePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDronePosition.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDroneStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDroneStats.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageDropWorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageDropWorldObject.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageEmote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageEmote.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageEquipmentSwap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageEquipmentSwap.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageGameMode.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageGeneticsAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageGeneticsAction.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageGrab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageGrab.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageGrowAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageGrowAdd.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageGrowRemove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageGrowRemove.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageHelper.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInterfaces.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInventories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInventories.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInventoryAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInventoryAdded.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInventoryChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInventoryChanged.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInventoryRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInventoryRemoved.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInventorySize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInventorySize.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageInventorySpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageInventorySpawn.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageLaunch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageLaunch.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageLaunchTrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageLaunchTrade.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageLogin.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageMessageAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageMessageAdd.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageMessages.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageMeteorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageMeteorEvent.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageMicrochipUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageMicrochipUnlock.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageMined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageMined.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageMovePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageMovePlayer.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePanelChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePanelChanged.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePlaceConstructible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePlaceConstructible.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePlayerColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePlayerColor.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePlayerJoined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePlayerJoined.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePlayerLeft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePlayerLeft.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePlayerPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePlayerPosition.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePlayerWelcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePlayerWelcome.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessagePrepareSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessagePrepareSpawn.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageSetLinkedGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageSetLinkedGroups.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageSetTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageSetTransform.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageSortInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageSortInventory.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageStoryEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageStoryEvents.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageTerraformState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageTerraformState.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageTerrainLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageTerrainLayers.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageTime.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUnlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUnlocks.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateAllStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateAllStorage.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateColor.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateGrowth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateGrowth.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateStorage.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateSupplyDemand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateSupplyDemand.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateText.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageUpdateWorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageUpdateWorldObject.cs -------------------------------------------------------------------------------- /FeatMultiplayer/MessageTypes/MessageWorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/MessageTypes/MessageWorldObject.cs -------------------------------------------------------------------------------- /FeatMultiplayer/NotifyUserMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/NotifyUserMessage.cs -------------------------------------------------------------------------------- /FeatMultiplayer/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/NuGet.Config -------------------------------------------------------------------------------- /FeatMultiplayer/Open.NAT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Open.NAT.dll -------------------------------------------------------------------------------- /FeatMultiplayer/PlayerAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/PlayerAvatar.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Craft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Craft.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Decode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Decode.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Deconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Deconstruct.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Drop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Drop.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Grab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Grab.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Inventory.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Login.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Mine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Mine.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Move.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_Place.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_UpdateColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_UpdateColor.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_UpdateText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_UpdateText.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Action_UpdateWorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Action_UpdateWorldObject.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Api.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Config.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Dispatchers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Dispatchers.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Drones.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Drones.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Emoting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Emoting.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Environment.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_GameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_GameMode.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Larvae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Larvae.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Launchpad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Launchpad.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Logging.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Lookups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Lookups.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Machines_AutoCrafter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Machines_AutoCrafter.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Machines_Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Machines_Generator.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Machines_Genetics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Machines_Genetics.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Machines_Grower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Machines_Grower.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Machines_OutsideGrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Machines_OutsideGrower.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_MainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_MainMenu.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Meteors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Meteors.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Misc.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Networking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Networking.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Overlays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Overlays.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_PlayerManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_PlayerManagement.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_PlayerSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_PlayerSetup.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Session.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Storage.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Story.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Story.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Sync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Sync.cs -------------------------------------------------------------------------------- /FeatMultiplayer/Plugin_Trade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatMultiplayer/Plugin_Trade.cs -------------------------------------------------------------------------------- /FeatSpaceCows/FeatSpaceCows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/FeatSpaceCows.csproj -------------------------------------------------------------------------------- /FeatSpaceCows/MessageAddRemoveSpaceCow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/MessageAddRemoveSpaceCow.cs -------------------------------------------------------------------------------- /FeatSpaceCows/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/MessageHelper.cs -------------------------------------------------------------------------------- /FeatSpaceCows/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/NuGet.Config -------------------------------------------------------------------------------- /FeatSpaceCows/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/Plugin.cs -------------------------------------------------------------------------------- /FeatSpaceCows/SpaceCow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/SpaceCow.cs -------------------------------------------------------------------------------- /FeatSpaceCows/SpaceCow1.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/SpaceCow1.pdn -------------------------------------------------------------------------------- /FeatSpaceCows/SpaceCow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatSpaceCows/SpaceCow1.png -------------------------------------------------------------------------------- /FeatTechniciansExile/FeatTechniciansExile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/FeatTechniciansExile.csproj -------------------------------------------------------------------------------- /FeatTechniciansExile/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/NuGet.Config -------------------------------------------------------------------------------- /FeatTechniciansExile/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/Plugin.cs -------------------------------------------------------------------------------- /FeatTechniciansExile/TechnicianAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/TechnicianAvatar.cs -------------------------------------------------------------------------------- /FeatTechniciansExile/Technician_Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/Technician_Back.png -------------------------------------------------------------------------------- /FeatTechniciansExile/Technician_Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/Technician_Front.png -------------------------------------------------------------------------------- /FeatTechniciansExile/technician_labels_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/technician_labels_english.txt -------------------------------------------------------------------------------- /FeatTechniciansExile/technician_labels_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/technician_labels_french.txt -------------------------------------------------------------------------------- /FeatTechniciansExile/technician_labels_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/technician_labels_hungarian.txt -------------------------------------------------------------------------------- /FeatTechniciansExile/technician_labels_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/technician_labels_russian.txt -------------------------------------------------------------------------------- /FeatTechniciansExile/technician_labels_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FeatTechniciansExile/technician_labels_spanish.txt -------------------------------------------------------------------------------- /FixUnofficialPatches/FixUnofficialPatches.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FixUnofficialPatches/FixUnofficialPatches.csproj -------------------------------------------------------------------------------- /FixUnofficialPatches/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FixUnofficialPatches/NuGet.Config -------------------------------------------------------------------------------- /FixUnofficialPatches/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/FixUnofficialPatches/Plugin.cs -------------------------------------------------------------------------------- /ItemRods/ItemRods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/ItemRods.csproj -------------------------------------------------------------------------------- /ItemRods/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/NuGet.Config -------------------------------------------------------------------------------- /ItemRods/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/Plugin.cs -------------------------------------------------------------------------------- /ItemRods/images/Aluminium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Aluminium.png -------------------------------------------------------------------------------- /ItemRods/images/Cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Cobalt.png -------------------------------------------------------------------------------- /ItemRods/images/Emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Emission.png -------------------------------------------------------------------------------- /ItemRods/images/Iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Iron.png -------------------------------------------------------------------------------- /ItemRods/images/Magnesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Magnesium.png -------------------------------------------------------------------------------- /ItemRods/images/Obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Obsidian.png -------------------------------------------------------------------------------- /ItemRods/images/Phosphorus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Phosphorus.png -------------------------------------------------------------------------------- /ItemRods/images/Rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Rod.png -------------------------------------------------------------------------------- /ItemRods/images/Selenium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Selenium.png -------------------------------------------------------------------------------- /ItemRods/images/Silicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Silicon.png -------------------------------------------------------------------------------- /ItemRods/images/Sulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Sulfur.png -------------------------------------------------------------------------------- /ItemRods/images/Titanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Titanium.png -------------------------------------------------------------------------------- /ItemRods/images/Zeolite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ItemRods/images/Zeolite.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LICENSE -------------------------------------------------------------------------------- /LathreyAutoMove/LathreyAutoMove.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LathreyAutoMove/LathreyAutoMove.csproj -------------------------------------------------------------------------------- /LathreyAutoMove/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LathreyAutoMove/NuGet.Config -------------------------------------------------------------------------------- /LathreyAutoMove/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LathreyAutoMove/Plugin.cs -------------------------------------------------------------------------------- /LathreyDisableBuildConstraints/LathreyDisableBuildConstraints.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LathreyDisableBuildConstraints/LathreyDisableBuildConstraints.csproj -------------------------------------------------------------------------------- /LathreyDisableBuildConstraints/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LathreyDisableBuildConstraints/NuGet.Config -------------------------------------------------------------------------------- /LathreyDisableBuildConstraints/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LathreyDisableBuildConstraints/Plugin.cs -------------------------------------------------------------------------------- /LibCommon/BepInExConfigCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/BepInExConfigCheck.cs -------------------------------------------------------------------------------- /LibCommon/BepInExLoggerFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/BepInExLoggerFix.cs -------------------------------------------------------------------------------- /LibCommon/CallbackWaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/CallbackWaiter.cs -------------------------------------------------------------------------------- /LibCommon/CoroutineCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/CoroutineCoordinator.cs -------------------------------------------------------------------------------- /LibCommon/DictionaryCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/DictionaryCounter.cs -------------------------------------------------------------------------------- /LibCommon/DictionaryStackCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/DictionaryStackCounter.cs -------------------------------------------------------------------------------- /LibCommon/GameVersionCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/GameVersionCheck.cs -------------------------------------------------------------------------------- /LibCommon/GeneticsGrouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/GeneticsGrouping.cs -------------------------------------------------------------------------------- /LibCommon/GrabChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/GrabChecker.cs -------------------------------------------------------------------------------- /LibCommon/HarmonyIntegrityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/HarmonyIntegrityCheck.cs -------------------------------------------------------------------------------- /LibCommon/HashSetFast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/HashSetFast.cs -------------------------------------------------------------------------------- /LibCommon/LibCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/LibCommon.csproj -------------------------------------------------------------------------------- /LibCommon/MainMenuMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/MainMenuMessage.cs -------------------------------------------------------------------------------- /LibCommon/ModNetworking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/ModNetworking.cs -------------------------------------------------------------------------------- /LibCommon/ModPlanetLoaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/ModPlanetLoaded.cs -------------------------------------------------------------------------------- /LibCommon/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/NuGet.Config -------------------------------------------------------------------------------- /LibCommon/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/Plugin.cs -------------------------------------------------------------------------------- /LibCommon/SaveModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/SaveModInfo.cs -------------------------------------------------------------------------------- /LibCommon/StandardResourceSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/StandardResourceSets.cs -------------------------------------------------------------------------------- /LibCommon/UITranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/UITranslator.cs -------------------------------------------------------------------------------- /LibCommon/UnityExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/LibCommon/UnityExt.cs -------------------------------------------------------------------------------- /MiscCustomizeFlashlight/MiscCustomizeFlashlight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscCustomizeFlashlight/MiscCustomizeFlashlight.csproj -------------------------------------------------------------------------------- /MiscCustomizeFlashlight/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscCustomizeFlashlight/NuGet.Config -------------------------------------------------------------------------------- /MiscCustomizeFlashlight/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscCustomizeFlashlight/Plugin.cs -------------------------------------------------------------------------------- /MiscDebug/MiscDebug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscDebug/MiscDebug.csproj -------------------------------------------------------------------------------- /MiscDebug/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscDebug/NuGet.Config -------------------------------------------------------------------------------- /MiscDebug/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscDebug/Plugin.cs -------------------------------------------------------------------------------- /MiscModEnabler/MiscModEnabler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscModEnabler/MiscModEnabler.csproj -------------------------------------------------------------------------------- /MiscModEnabler/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscModEnabler/NuGet.Config -------------------------------------------------------------------------------- /MiscModEnabler/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscModEnabler/Plugin.cs -------------------------------------------------------------------------------- /MiscPluginUpdateChecker/MiscPluginUpdateChecker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscPluginUpdateChecker/MiscPluginUpdateChecker.csproj -------------------------------------------------------------------------------- /MiscPluginUpdateChecker/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscPluginUpdateChecker/NuGet.Config -------------------------------------------------------------------------------- /MiscPluginUpdateChecker/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscPluginUpdateChecker/Plugin.cs -------------------------------------------------------------------------------- /MiscPluginUpdateChecker/lib/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MiscPluginUpdateChecker/lib/System.Xml.Linq.dll -------------------------------------------------------------------------------- /MultiPlayerLocator/MultiPlayerLocator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MultiPlayerLocator/MultiPlayerLocator.csproj -------------------------------------------------------------------------------- /MultiPlayerLocator/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MultiPlayerLocator/NuGet.Config -------------------------------------------------------------------------------- /MultiPlayerLocator/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/MultiPlayerLocator/Plugin.cs -------------------------------------------------------------------------------- /PerfStartup/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/PerfStartup/NuGet.Config -------------------------------------------------------------------------------- /PerfStartup/PerfStartup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/PerfStartup/PerfStartup.csproj -------------------------------------------------------------------------------- /PerfStartup/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/PerfStartup/Plugin.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/README.md -------------------------------------------------------------------------------- /SaveAsyncSave/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAsyncSave/NuGet.Config -------------------------------------------------------------------------------- /SaveAsyncSave/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAsyncSave/Plugin.cs -------------------------------------------------------------------------------- /SaveAsyncSave/SaveAsyncSave.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAsyncSave/SaveAsyncSave.csproj -------------------------------------------------------------------------------- /SaveAutoBackup/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAutoBackup/NuGet.Config -------------------------------------------------------------------------------- /SaveAutoBackup/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAutoBackup/Plugin.cs -------------------------------------------------------------------------------- /SaveAutoBackup/SaveAutoBackup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAutoBackup/SaveAutoBackup.csproj -------------------------------------------------------------------------------- /SaveAutoSave/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAutoSave/NuGet.Config -------------------------------------------------------------------------------- /SaveAutoSave/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAutoSave/Plugin.cs -------------------------------------------------------------------------------- /SaveAutoSave/SaveAutoSave.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveAutoSave/SaveAutoSave.csproj -------------------------------------------------------------------------------- /SaveQuickSave/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveQuickSave/NuGet.Config -------------------------------------------------------------------------------- /SaveQuickSave/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveQuickSave/Plugin.cs -------------------------------------------------------------------------------- /SaveQuickSave/SaveQuickSave.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/SaveQuickSave/SaveQuickSave.csproj -------------------------------------------------------------------------------- /ThePlanetCrafterMods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ThePlanetCrafterMods.sln -------------------------------------------------------------------------------- /UIBeaconText/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIBeaconText/NuGet.Config -------------------------------------------------------------------------------- /UIBeaconText/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIBeaconText/Plugin.cs -------------------------------------------------------------------------------- /UIBeaconText/UIBeaconText.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIBeaconText/UIBeaconText.csproj -------------------------------------------------------------------------------- /UIContinue/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIContinue/NuGet.Config -------------------------------------------------------------------------------- /UIContinue/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIContinue/Plugin.cs -------------------------------------------------------------------------------- /UIContinue/UIContinue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIContinue/UIContinue.csproj -------------------------------------------------------------------------------- /UICustomInventorySortAll/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UICustomInventorySortAll/NuGet.Config -------------------------------------------------------------------------------- /UICustomInventorySortAll/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UICustomInventorySortAll/Plugin.cs -------------------------------------------------------------------------------- /UICustomInventorySortAll/UICustomInventorySortAll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UICustomInventorySortAll/UICustomInventorySortAll.csproj -------------------------------------------------------------------------------- /UIDeconstructPreventAccidental/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIDeconstructPreventAccidental/NuGet.Config -------------------------------------------------------------------------------- /UIDeconstructPreventAccidental/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIDeconstructPreventAccidental/Plugin.cs -------------------------------------------------------------------------------- /UIDeconstructPreventAccidental/UIDeconstructPreventAccidental.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIDeconstructPreventAccidental/UIDeconstructPreventAccidental.csproj -------------------------------------------------------------------------------- /UIHotbar/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIHotbar/NuGet.Config -------------------------------------------------------------------------------- /UIHotbar/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIHotbar/Plugin.cs -------------------------------------------------------------------------------- /UIHotbar/UIHotbar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIHotbar/UIHotbar.csproj -------------------------------------------------------------------------------- /UIInventoryMoveMultiple/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIInventoryMoveMultiple/NuGet.Config -------------------------------------------------------------------------------- /UIInventoryMoveMultiple/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIInventoryMoveMultiple/Plugin.cs -------------------------------------------------------------------------------- /UIInventoryMoveMultiple/UIInventoryMoveMultiple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIInventoryMoveMultiple/UIInventoryMoveMultiple.csproj -------------------------------------------------------------------------------- /UILogisticSelectAll/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UILogisticSelectAll/NuGet.Config -------------------------------------------------------------------------------- /UILogisticSelectAll/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UILogisticSelectAll/Plugin.cs -------------------------------------------------------------------------------- /UILogisticSelectAll/UILogisticSelectAll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UILogisticSelectAll/UILogisticSelectAll.csproj -------------------------------------------------------------------------------- /UIMenuShortcutKeys/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIMenuShortcutKeys/NuGet.Config -------------------------------------------------------------------------------- /UIMenuShortcutKeys/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIMenuShortcutKeys/Plugin.cs -------------------------------------------------------------------------------- /UIMenuShortcutKeys/UIMenuShortcutKeys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIMenuShortcutKeys/UIMenuShortcutKeys.csproj -------------------------------------------------------------------------------- /UIModConfigMenu/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIModConfigMenu/NuGet.Config -------------------------------------------------------------------------------- /UIModConfigMenu/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIModConfigMenu/Plugin.cs -------------------------------------------------------------------------------- /UIModConfigMenu/UIModConfigMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIModConfigMenu/UIModConfigMenu.csproj -------------------------------------------------------------------------------- /UIOverviewPanel/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIOverviewPanel/NuGet.Config -------------------------------------------------------------------------------- /UIOverviewPanel/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIOverviewPanel/Plugin.cs -------------------------------------------------------------------------------- /UIOverviewPanel/UIOverviewPanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIOverviewPanel/UIOverviewPanel.csproj -------------------------------------------------------------------------------- /UIPinRecipe/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIPinRecipe/NuGet.Config -------------------------------------------------------------------------------- /UIPinRecipe/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIPinRecipe/Plugin.cs -------------------------------------------------------------------------------- /UIPinRecipe/UIPinRecipe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIPinRecipe/UIPinRecipe.csproj -------------------------------------------------------------------------------- /UIQuickLoot/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIQuickLoot/NuGet.Config -------------------------------------------------------------------------------- /UIQuickLoot/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIQuickLoot/Plugin.cs -------------------------------------------------------------------------------- /UIQuickLoot/UIQuickLoot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIQuickLoot/UIQuickLoot.csproj -------------------------------------------------------------------------------- /UISaveOnQuit/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UISaveOnQuit/NuGet.Config -------------------------------------------------------------------------------- /UISaveOnQuit/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UISaveOnQuit/Plugin.cs -------------------------------------------------------------------------------- /UISaveOnQuit/UISaveOnQuit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UISaveOnQuit/UISaveOnQuit.csproj -------------------------------------------------------------------------------- /UIShowAutoCrafterRecipe/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowAutoCrafterRecipe/NuGet.Config -------------------------------------------------------------------------------- /UIShowAutoCrafterRecipe/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowAutoCrafterRecipe/Plugin.cs -------------------------------------------------------------------------------- /UIShowAutoCrafterRecipe/UIShowAutoCrafterRecipe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowAutoCrafterRecipe/UIShowAutoCrafterRecipe.csproj -------------------------------------------------------------------------------- /UIShowConsumableCount/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowConsumableCount/NuGet.Config -------------------------------------------------------------------------------- /UIShowConsumableCount/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowConsumableCount/Plugin.cs -------------------------------------------------------------------------------- /UIShowConsumableCount/UIShowConsumableCount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowConsumableCount/UIShowConsumableCount.csproj -------------------------------------------------------------------------------- /UIShowContainerInfo/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowContainerInfo/NuGet.Config -------------------------------------------------------------------------------- /UIShowContainerInfo/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowContainerInfo/Plugin.cs -------------------------------------------------------------------------------- /UIShowContainerInfo/UIShowContainerInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowContainerInfo/UIShowContainerInfo.csproj -------------------------------------------------------------------------------- /UIShowCrash/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowCrash/NuGet.Config -------------------------------------------------------------------------------- /UIShowCrash/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowCrash/Plugin.cs -------------------------------------------------------------------------------- /UIShowCrash/UIShowCrash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowCrash/UIShowCrash.csproj -------------------------------------------------------------------------------- /UIShowETA/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowETA/NuGet.Config -------------------------------------------------------------------------------- /UIShowETA/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowETA/Plugin.cs -------------------------------------------------------------------------------- /UIShowETA/UIShowETA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowETA/UIShowETA.csproj -------------------------------------------------------------------------------- /UIShowGrabNMineCount/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowGrabNMineCount/NuGet.Config -------------------------------------------------------------------------------- /UIShowGrabNMineCount/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowGrabNMineCount/Plugin.cs -------------------------------------------------------------------------------- /UIShowGrabNMineCount/UIShowGrabNMineCount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowGrabNMineCount/UIShowGrabNMineCount.csproj -------------------------------------------------------------------------------- /UIShowMultiToolMode/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowMultiToolMode/NuGet.Config -------------------------------------------------------------------------------- /UIShowMultiToolMode/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowMultiToolMode/Plugin.cs -------------------------------------------------------------------------------- /UIShowMultiToolMode/UIShowMultiToolMode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowMultiToolMode/UIShowMultiToolMode.csproj -------------------------------------------------------------------------------- /UIShowPlayerInventoryCount/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowPlayerInventoryCount/NuGet.Config -------------------------------------------------------------------------------- /UIShowPlayerInventoryCount/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowPlayerInventoryCount/Plugin.cs -------------------------------------------------------------------------------- /UIShowPlayerInventoryCount/UIShowPlayerInventoryCount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowPlayerInventoryCount/UIShowPlayerInventoryCount.csproj -------------------------------------------------------------------------------- /UIShowPlayerTooltipItemCount/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowPlayerTooltipItemCount/NuGet.Config -------------------------------------------------------------------------------- /UIShowPlayerTooltipItemCount/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowPlayerTooltipItemCount/Plugin.cs -------------------------------------------------------------------------------- /UIShowPlayerTooltipItemCount/UIShowPlayerTooltipItemCount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowPlayerTooltipItemCount/UIShowPlayerTooltipItemCount.csproj -------------------------------------------------------------------------------- /UIShowRocketCount/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowRocketCount/NuGet.Config -------------------------------------------------------------------------------- /UIShowRocketCount/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowRocketCount/Plugin.cs -------------------------------------------------------------------------------- /UIShowRocketCount/UIShowRocketCount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UIShowRocketCount/UIShowRocketCount.csproj -------------------------------------------------------------------------------- /UISortSaves/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UISortSaves/NuGet.Config -------------------------------------------------------------------------------- /UISortSaves/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UISortSaves/Plugin.cs -------------------------------------------------------------------------------- /UISortSaves/UISortSaves.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UISortSaves/UISortSaves.csproj -------------------------------------------------------------------------------- /UITelemetryFontSizer/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITelemetryFontSizer/NuGet.Config -------------------------------------------------------------------------------- /UITelemetryFontSizer/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITelemetryFontSizer/Plugin.cs -------------------------------------------------------------------------------- /UITelemetryFontSizer/UITelemetryFontSizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITelemetryFontSizer/UITelemetryFontSizer.csproj -------------------------------------------------------------------------------- /UITranslationCzech/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationCzech/NuGet.Config -------------------------------------------------------------------------------- /UITranslationCzech/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationCzech/Plugin.cs -------------------------------------------------------------------------------- /UITranslationCzech/UITranslationCzech.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationCzech/UITranslationCzech.csproj -------------------------------------------------------------------------------- /UITranslationCzech/labels-cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationCzech/labels-cz.txt -------------------------------------------------------------------------------- /UITranslationEstonian/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationEstonian/NuGet.Config -------------------------------------------------------------------------------- /UITranslationEstonian/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationEstonian/Plugin.cs -------------------------------------------------------------------------------- /UITranslationEstonian/UITranslationEstonian.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationEstonian/UITranslationEstonian.csproj -------------------------------------------------------------------------------- /UITranslationEstonian/labels-et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationEstonian/labels-et.txt -------------------------------------------------------------------------------- /UITranslationHungarian/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/NuGet.Config -------------------------------------------------------------------------------- /UITranslationHungarian/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/Plugin.cs -------------------------------------------------------------------------------- /UITranslationHungarian/UITranslationHungarian.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/UITranslationHungarian.csproj -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_04008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_04008.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_04011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_04011.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_04014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_04014.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_05005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_05005.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_05006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_05006.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06001.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06002.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06003.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06004.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06005.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06006.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06006a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06006a.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_06008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_06008.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07001.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07003.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07004.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07005.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07006.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07007.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_07009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_07009.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08001.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08002.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08004.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08005.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08006.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08007.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08008.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_08009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_08009.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09002.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09003.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09004.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09006.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09011.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09020.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09021.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09022.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09023.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09025.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09026.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09027.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09028.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09031.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09032.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09033.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09034.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_09035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_09035.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10000.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10001.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10001a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10001a.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10003.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10004.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10005.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10005a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10005a.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10005b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10005b.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10005c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10005c.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10005d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10005d.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10100.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10101.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10103.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10209.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10210.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10211.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10212.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10214.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10307.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10310.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10313.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10313.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10400.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10401.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10401.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10402.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10402.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10403.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10403.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10405.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10405.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10406.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10408.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10408.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10410.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10507.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10508.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10508.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10510.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10512.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10513.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10513.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10514.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10516.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10516.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10517.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10519.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10521.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10523.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10523.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10525.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10526.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10526.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10600.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10601.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10602.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10602.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10603.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10603.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10604.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10604.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10605.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10605.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10606.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10606.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10609.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10609.txt -------------------------------------------------------------------------------- /UITranslationHungarian/history/labels.english_10610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/history/labels.english_10610.txt -------------------------------------------------------------------------------- /UITranslationHungarian/labels-hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationHungarian/labels-hu.txt -------------------------------------------------------------------------------- /UITranslationItalian/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationItalian/NuGet.Config -------------------------------------------------------------------------------- /UITranslationItalian/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationItalian/Plugin.cs -------------------------------------------------------------------------------- /UITranslationItalian/UITranslationItalian.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationItalian/UITranslationItalian.csproj -------------------------------------------------------------------------------- /UITranslationItalian/labels-it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationItalian/labels-it.txt -------------------------------------------------------------------------------- /UITranslationKorean/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationKorean/NuGet.Config -------------------------------------------------------------------------------- /UITranslationKorean/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationKorean/Plugin.cs -------------------------------------------------------------------------------- /UITranslationKorean/UITranslationKorean.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationKorean/UITranslationKorean.csproj -------------------------------------------------------------------------------- /UITranslationKorean/labels-ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationKorean/labels-ko.txt -------------------------------------------------------------------------------- /UITranslationPolish/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationPolish/NuGet.Config -------------------------------------------------------------------------------- /UITranslationPolish/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationPolish/Plugin.cs -------------------------------------------------------------------------------- /UITranslationPolish/UITranslationPolish.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationPolish/UITranslationPolish.csproj -------------------------------------------------------------------------------- /UITranslationPolish/labels-pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationPolish/labels-pl.txt -------------------------------------------------------------------------------- /UITranslationRomanian/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationRomanian/Plugin.cs -------------------------------------------------------------------------------- /UITranslationRomanian/UITranslationRomanian.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationRomanian/UITranslationRomanian.csproj -------------------------------------------------------------------------------- /UITranslationRomanian/labels-ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationRomanian/labels-ro.txt -------------------------------------------------------------------------------- /UITranslationUkrainian/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationUkrainian/NuGet.Config -------------------------------------------------------------------------------- /UITranslationUkrainian/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationUkrainian/Plugin.cs -------------------------------------------------------------------------------- /UITranslationUkrainian/UITranslationUkrainian.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationUkrainian/UITranslationUkrainian.csproj -------------------------------------------------------------------------------- /UITranslationUkrainian/labels-ua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/UITranslationUkrainian/labels-ua.txt -------------------------------------------------------------------------------- /XTestPlugins/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/XTestPlugins/GlobalUsings.cs -------------------------------------------------------------------------------- /XTestPlugins/RandomTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/XTestPlugins/RandomTests.cs -------------------------------------------------------------------------------- /XTestPlugins/ReplaceUnityEngineText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/XTestPlugins/ReplaceUnityEngineText.cs -------------------------------------------------------------------------------- /XTestPlugins/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/XTestPlugins/UnitTest1.cs -------------------------------------------------------------------------------- /XTestPlugins/VersionInfoRepository_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/XTestPlugins/VersionInfoRepository_Test.cs -------------------------------------------------------------------------------- /XTestPlugins/XTestPlugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/XTestPlugins/XTestPlugins.csproj -------------------------------------------------------------------------------- /ZapModVersions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ZapModVersions/Program.cs -------------------------------------------------------------------------------- /ZapModVersions/ZapModVersions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ZapModVersions/ZapModVersions.csproj -------------------------------------------------------------------------------- /ZipRest/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ZipRest/NuGet.Config -------------------------------------------------------------------------------- /ZipRest/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ZipRest/Plugin.cs -------------------------------------------------------------------------------- /ZipRest/ZipRest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/ZipRest/ZipRest.csproj -------------------------------------------------------------------------------- /create_plugin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/create_plugin.bat -------------------------------------------------------------------------------- /solution_private.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/solution_private.targets -------------------------------------------------------------------------------- /version_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/version_info.txt -------------------------------------------------------------------------------- /version_info_repository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarnokd/ThePlanetCrafterMods/HEAD/version_info_repository.xml --------------------------------------------------------------------------------