omelaw Posted December 19, 2016 Share Posted December 19, 2016 8 minutes ago, Jacke said: There's a table in the Wiki CommNet article. http://wiki.kerbalspaceprogram.com/wiki/CommNet Here's a good topic discussing how to handle CommNet. but that isn't say much about their stockRT range Link to comment Share on other sites More sharing options...
Jacke Posted December 19, 2016 Share Posted December 19, 2016 23 minutes ago, omelaw said: but that isn't say much about their stockRT range Ooops! I completely misinterpreted your original request as being about CommNet. The stock probes and antennas' stockRT range can be seen in the Module Manager script to modify them, 'StockRT.cfg', including here in the spoiler. Spoiler // StockRT // Copyright 2016 Malah // This is free and unencumbered software released into the public domain. // All the code from RemoteTech is in GPLv2 // All the code from AsteroidDay is in the Public Domain // Tweak the stock Antenna / Dish // longAntenna(Communotron 16) replaces RTLongAntenna2(Communotron 32) @PART[longAntenna]:HAS[@MODULE[ModuleRTAntenna]]:NEEDS[RemoteTech&!RealSolarSystem]:AFTER[RemoteTech] { @MODULE[ModuleRTAntenna] { @Mode1OmniRange = 5000000 @MaxQ = 3000 @EnergyCost = 0.6 } } // commDish(Communotron 88-88) replaces RTGigaDish1(Reflectron GX-128) @PART[commDish]:HAS[@MODULE[ModuleRTAntenna]]:NEEDS[RemoteTech&!RealSolarSystem&!OPM]:AFTER[RemoteTech] { @MODULE[ModuleRTAntenna] { @Mode1DishRange = 400000000000 @EnergyCost = 2.80 @DishAngle = 5.0 } } // Unlock PassiveAntenna in survivability tech. @PART[RTPassiveAntennaTech]:NEEDS[RemoteTech]:AFTER[RemoteTech] { @title = Communication Tech @description = Allows RemoteTech probe and command pods cores to contact ships within 100 km without the need for a dedicated antenna. } @PART[RTPassiveAntennaTech]:NEEDS[RemoteTech&!UnmannedBeforeManned]:AFTER[RemoteTech] { @TechRequired = survivability } @PART[*]:HAS[@MODULE[ModuleRTAntennaPassive]]:NEEDS[RemoteTech&!UnmannedBeforeManned]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @TechRequired = survivability } } // Add the control capacity to all probe to replace RTShortAntenna1(Reflectron DP-10). @PART[*]:HAS[@MODULE[ModuleCommand],!MODULE[ModuleSPU],#CrewCapacity[0]]:NEEDS[RemoteTech]:AFTER[RemoteTech] { MODULE[ModuleSPU] {} } // Add an antenna to all the Commands Pods to replace RTShortAntenna1(Reflectron DP-10). @PART[*]:HAS[@MODULE[ModuleCommand]]:NEEDS[RemoteTech&!RealSolarSystem]:AFTER[RemoteTech] { %MODULE[ModuleRTAntennaPassive] { %TechRequired = survivability %OmniRange = 100000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // Tweak probeCores to replace RTShortAntenna1(Reflectron DP-10) and to have a better techtree integration. @PART[probeCoreSphere]:NEEDS[RemoteTech&!UnmannedBeforeManned]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 100000 } } @PART[probeCoreOcto]:NEEDS[RemoteTech&!UnmannedBeforeManned]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 500000 } } @PART[probeCoreOcto2]:NEEDS[RemoteTech]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 250000 } } @PART[probeCoreHex|probeStackSmall]:NEEDS[RemoteTech&!UnmannedBeforeManned]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 1000000 } } @PART[probeCoreCube]:NEEDS[RemoteTech&!UnmannedBeforeManned]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 2000000 } } @PART[probeStackLarge]:NEEDS[RemoteTech]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 3000000 } } @PART[mk2DroneCore]:NEEDS[RemoteTech]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 1500000 } } @PART[HECS2_ProbeCore]:NEEDS[RemoteTech]:AFTER[RemoteTech] { @MODULE[ModuleRTAntennaPassive] { @OmniRange = 3000000 } } // Disable the RemoteTech parts. @PART[RTShortDish1|RTShortDish2|RTShortAntenna1|RTLongDish1|RTLongDish2|RTLongAntenna2|RTLongAntenna3|RTGigaDish1|RTGigaDish2]:NEEDS[RemoteTech]:FINAL { @TechRequired = Unresearcheable @category = none } Link to comment Share on other sites More sharing options...
Malah Posted December 19, 2016 Author Share Posted December 19, 2016 (edited) 8 hours ago, omelaw said: how's the range of new stock antannas in 1.2.x ? And a week before ... On 14/12/2016 at 6:21 PM, Malah said: I don't know if StockSCANsat/StockRemoteTech work with KSP 1.2.X I think I need to test them ... (and range are explained on the first post ...) Edited December 19, 2016 by Malah Link to comment Share on other sites More sharing options...
omelaw Posted December 19, 2016 Share Posted December 19, 2016 4 hours ago, Malah said: And a week before ... (and range are explained on the first post ...) after I tested StockRT, it has no mention about new antannas added in 1.2, so it will use remotetech's default setting, 20Mm for hg-5, 200Mm for RA-2, 10Gm for RA-15, RA-100 has 100Gm, Communotron HG-55 25Gm Link to comment Share on other sites More sharing options...
Malah Posted December 20, 2016 Author Share Posted December 20, 2016 17 hours ago, omelaw said: after I tested StockRT, it has no mention about new antannas added in 1.2, so it will use remotetech's default setting, 20Mm for hg-5, 200Mm for RA-2, 10Gm for RA-15, RA-100 has 100Gm, Communotron HG-55 25Gm as it's explained on the OP ... Link to comment Share on other sites More sharing options...
Malah Posted January 15, 2017 Author Share Posted January 15, 2017 Hello, I've updated StockPlugins and StockNoContracts. StockRT & StockSCANsat will be updated for the next week. StockPlugins Download: SpaceDockGitHub Changelog - v1.23 - 2017.01.14 Fix: Corrected the TechRequired spam at the loading of the VAB/SPH, Fix: Corrected the Graphotron mod name, Fix: Updated for DeadlyReentry 7.5, Fix: Put the diskspace of kOS to 10 000, Fix: Deleted all un-updated mods (KerbalGPS and RocketWatch), Update ModuleManager to 2.7.5, Update to KSP 1.2.2 StockNoContracts Download: SpaceDockGitHub Changelog - v1.03 - 2017.01.14 Update ModuleManager to 2.7.5, Update to KSP 1.2.2 Link to comment Share on other sites More sharing options...
justjr Posted March 5, 2017 Share Posted March 5, 2017 I would like to add the Smobodobodyne from CatEyes mod, it is possible to do that editing the cfg file? Can someone help me with that? Ty. Link to comment Share on other sites More sharing options...
argentrolf Posted May 19, 2017 Share Posted May 19, 2017 ok... so im trying out rt... and the antennae dont register... im not using stock rt, but the only thread i can find for remote tech is closed... im stumped and id really like to use rt. but in unmanned before manned remote tech is unplayable with that problem. cant even get the first launch because no signal to the probe to ignite the engine. ive even tried with JUST remote tech and still get the same problem. Link to comment Share on other sites More sharing options...
Deddly Posted June 16, 2018 Share Posted June 16, 2018 Locked at OP request Link to comment Share on other sites More sharing options...
Recommended Posts