OrdinaryKerman Posted June 8, 2022 Share Posted June 8, 2022 19 minutes ago, Brainpop14 said: I wish I could just get the core structures Just delete the ExampleBases folder inside KerbinSideRemastered/Statics Quote Link to comment Share on other sites More sharing options...
Rutabaga22 Posted June 24, 2022 Share Posted June 24, 2022 Is there a version that just gives the statics? I'm playing on ksrss and want to build my ksc on my own. Quote Link to comment Share on other sites More sharing options...
Aelfhe1m Posted June 24, 2022 Share Posted June 24, 2022 1 hour ago, Rutabaga22 said: Is there a version that just gives the statics? I'm playing on ksrss and want to build my ksc on my own. See previous post. Quote Link to comment Share on other sites More sharing options...
AloE Posted July 4, 2022 Share Posted July 4, 2022 (edited) On 9/18/2021 at 8:18 AM, Caerfinon said: You can launch from any KK launch site that is "Open". @Eskandare This is a very nice mod. Thank you. I would be grateful for insights from anyone familiar with the code of this mod as to whether there happens to be something similar to "SpaceCenter.Instance.transform.position" for the bases created by this mod...or perhaps even a better way to accomplish the following objective. Ideally I would like to modify the mod SimpleRefuel slightly for myself so that I may easily refuel when landed at any of the Kerbin Side Remastered bases. However, I recognize that to keep the condition list simple, I might need to choose just a few preferred bases to add to the SimpleRefuel condition list pasted below...which would also be great. Thanks for any insights that may help me with this objective (or if it is simply not possible). if ((int)vessel.srfSpeed == 0 && (vessel.situation == Vessel.Situations.LANDED || vessel.situation == Vessel.Situations.PRELAUNCH) && (vessel.transform.position - SpaceCenter.Instance.transform.position).sqrMagnitude <= SpaceCenter.Instance.AreaRadius * SpaceCenter.Instance.AreaRadius ) { canRefuel = true; ChangeButtonTexture(icon_green); } Edited July 4, 2022 by AloE Quote Link to comment Share on other sites More sharing options...
Aelfhe1m Posted July 4, 2022 Share Posted July 4, 2022 6 hours ago, AloE said: @Eskandare This is a very nice mod. Thank you. I would be grateful for insights from anyone familiar with the code of this mod as to whether there happens to be something similar to "SpaceCenter.Instance.transform.position" for the bases created by this mod...or perhaps even a better way to accomplish the following objective. Ideally I would like to modify the mod SimpleRefuel slightly for myself so that I may easily refuel when landed at any of the Kerbin Side Remastered bases. However, I recognize that to keep the condition list simple, I might need to choose just a few preferred bases to add to the SimpleRefuel condition list pasted below...which would also be great. Thanks for any insights that may help me with this objective (or if it is simply not possible). if ((int)vessel.srfSpeed == 0 && (vessel.situation == Vessel.Situations.LANDED || vessel.situation == Vessel.Situations.PRELAUNCH) && (vessel.transform.position - SpaceCenter.Instance.transform.position).sqrMagnitude <= SpaceCenter.Instance.AreaRadius * SpaceCenter.Instance.AreaRadius ) { canRefuel = true; ChangeButtonTexture(icon_green); } I'd suggest using KerbalKonstructs.Core.LaunchSiteManager.getNearestBase to find the nearest KK base. Quote Link to comment Share on other sites More sharing options...
AloE Posted July 5, 2022 Share Posted July 5, 2022 16 hours ago, Aelfhe1m said: I'd suggest using KerbalKonstructs.Core.LaunchSiteManager.getNearestBase to find the nearest KK base. 'out string sBase, out float flRange' does look promising. Thank you! // Returns the nearest Launchsite to a position and range in m to the Launchsite, regardless of whether it is open or closed public static void getNearestBase(Vector3 position, out string sBase, out string sBase2, out float flRange, out KKLaunchSite lSite, out KKLaunchSite lSite2) ... rangeNearestBase = (float)smallestDist; sBase = sNearestBase; sBase2 = sLastNearest; flRange = rangeNearestBase; lSite = lTargetSite; lSite2 = lLastSite; Quote Link to comment Share on other sites More sharing options...
Hotel26 Posted July 5, 2022 Share Posted July 5, 2022 On 7/4/2022 at 2:59 PM, AloE said: easily refuel when landed at any of the Kerbin Side Remastered bases Had you considered refueling from the fuel tanks at most KSR bases? If the facility to do so is opened, it's a matter of clicking on the fuel tank. (If you think that might be what you want, but have trouble with it, I can help. (I am no KK expert, though!) I personally use a mod called Telemagic that allows you to refuel from a fuel tanker (when both vehicles are parked within 30m of each other). It requires you build the infrastructure to ship fuel to key airports which just gives you one more reason to fly missions. Quote Link to comment Share on other sites More sharing options...
AloE Posted July 5, 2022 Share Posted July 5, 2022 (edited) On 7/5/2022 at 10:49 AM, Hotel26 said: Had you considered refueling from the fuel tanks at most KSR bases? If the facility to do so is opened, it's a matter of clicking on the fuel tank. (If you think that might be what you want, but have trouble with it, I can help. (I am no KK expert, though!) OK...thanks! Yes, that is the more appropriate way...where i got stuck was that I use the Real Fuels mod in my various GameData/craft configurations...and by default the fuel stations were not offering Kerosene. However, by using the KK quick start tutorial (link) I learned that I may quickly add Kerosene and any other resources I need to the station (then I can also copy/past directly in the .cfg's with various fuel merchants for the bases I have not yet visited): Adding resources to a KK Refueling Station Edited July 6, 2022 by AloE fix imgur link Quote Link to comment Share on other sites More sharing options...
Caerfinon Posted July 5, 2022 Share Posted July 5, 2022 2 hours ago, AloE said: Yes, that is the more appropriate way There are some KSR bases that do not have an active fuel depot by default. Kola Island Naval Air Station is one that comes to mind. It has a fuel depot static but the merchant configuration was not deployed. Also if you are trying to refuel boats or subs at a base near the water the refuel option in the KK menu doesn't work because the ships are "Splashed Down" rather than landed. It you click the static that has the fuel merchant however, you are able to fuel up successfully. (I cheated with boats/subs as all of mine were nuclear powered ) Quote Link to comment Share on other sites More sharing options...
AloE Posted July 9, 2022 Share Posted July 9, 2022 On 7/6/2022 at 12:18 AM, Caerfinon said: boats/subs as all of mine were nuclear powered fair in my book ;-) Also, I would be grateful for any tips on how to use the KK 'worker kerbals'...when we click the hire button we just get a NRE (we are using KSP 1.12.3 in sandbox games for now)...is there some specific sequence of things we need to do to be able to hire 'worker kerbals' from a given building configured with barracks with which to populate the research observatories? Thanks! Quote Link to comment Share on other sites More sharing options...
Caerfinon Posted July 10, 2022 Share Posted July 10, 2022 12 hours ago, AloE said: how to use the KK 'worker kerbals'. To be honest I've never really used that feature of the KK mod. I was primarily only interested in the refueling facilities and the launch pads/runways. Quote Link to comment Share on other sites More sharing options...
maledin Posted July 26, 2022 Share Posted July 26, 2022 Where the heck do I find the latest version of this mod? I see people talking about a version for 1.12 in the comments, yet there appears to be no link to it, in the OP or otherwise. The most recent version I've been able to find is version 1.0.1_1.7.3, but that was uploaded in July 2019 and the mod has clearly been updated since. Can someone point me in the right direction? Quote Link to comment Share on other sites More sharing options...
Caerfinon Posted July 26, 2022 Share Posted July 26, 2022 56 minutes ago, maledin said: Where the heck do I find the latest version of this mod? https://github.com/KSP-RO/Kerbal-Konstructs/releases or on CKAN Quote Link to comment Share on other sites More sharing options...
maledin Posted July 26, 2022 Share Posted July 26, 2022 (edited) 45 minutes ago, Caerfinon said: https://github.com/KSP-RO/Kerbal-Konstructs/releases or on CKAN That's for Kerbal Konstructs though, not Kerbin Side Remastered, which this thread is about. I have KK installed with no issue, I just want the additional buildings/models of KS-R. For reference, whenever I install the most recent version of KS-R, even just copying over the Statics folder alone, I get multiple errors upon loading, followed shortly thereafter by a crash. This is the last thing my KSP.log logs before crashing: [LOG 13:12:24.580] KK: [MapDecalUtils] GetSquadMaps: Imported 11 Maps from around the universe [LOG 13:12:24.837] KK: [LaunchSiteManager] RegisterLaunchSite: Registering LaunchSite: KSC2 isHidden: True [LOG 13:12:24.866] KK: [ConfigParser] LoadAllMapDecals: Rebuilding PQS sphere on: Laythe [ERR 13:12:24.943] Triggers on concave MeshColliders are not supported [ERR 13:12:24.944] Triggers on concave MeshColliders are not supported [ERR 13:12:24.944] Triggers on concave MeshColliders are not supported [ERR 13:12:24.945] Triggers on concave MeshColliders are not supported [ERR 13:12:24.946] Triggers on concave MeshColliders are not supported [ERR 13:12:24.946] Triggers on concave MeshColliders are not supported EDIT: And for additional clarification, I do not get these errors nor does the game crash when I remove the KS-R Statics folder from my GameData, so I can be certain this mod is causing the issue, Edited July 26, 2022 by maledin Quote Link to comment Share on other sites More sharing options...
Caerfinon Posted July 26, 2022 Share Posted July 26, 2022 19 minutes ago, maledin said: Kerbin Side Remastered, which this thread is about My bad. The latest version of KSR is https://github.com/Eskandare/KerbinSideRemastered/releases/tag/1.0.1 which is the one you referenced. You would need to post your complete KSP.log and Player.log (in a zip file) to get a better understanding of what might be going on . Quote Link to comment Share on other sites More sharing options...
maledin Posted July 26, 2022 Share Posted July 26, 2022 10 minutes ago, Caerfinon said: My bad. The latest version of KSR is https://github.com/Eskandare/KerbinSideRemastered/releases/tag/1.0.1 which is the one you referenced. You would need to post your complete KSP.log and Player.log (in a zip file) to get a better understanding of what might be going on . Gotcha, thanks for that at least. Where could I even find the player.log file? ...not that it matters right now, of course; I managed to get the game running after a clean reinstall of both KK and KS-R. I'm not entirely sure what the problem was, but at least it appears to be solved for now. I guess the main reason I'd assumed there was a newer version was because Eskandare had made a post showing off some new models last July. I'm guessing they got busy in the intervening time and nothing was released since? Quote Link to comment Share on other sites More sharing options...
Caerfinon Posted July 26, 2022 Share Posted July 26, 2022 2 hours ago, maledin said: Where could I even find the player.log file? See: How To Get Support Read First Has locations of all relevant support info Glad the reinstall worked. Sometimes stuff gets developed but never rolled out into production. usually the hobby time vs RL time is the cause. Fly safe. Quote Link to comment Share on other sites More sharing options...
maledin Posted July 28, 2022 Share Posted July 28, 2022 (edited) On 7/26/2022 at 5:04 PM, Caerfinon said: See: How To Get Support Read First Has locations of all relevant support info Glad the reinstall worked. Sometimes stuff gets developed but never rolled out into production. usually the hobby time vs RL time is the cause. Fly safe. So, it turns out that the error is stemming from KK's NewInstances directory in some way; i.e., whenever I have saved new statics/mapdecals there, the game fails to load presumably because of the aforementioned "Triggers on concave MeshColliders are not supported" error. The reason why my clean reinstall worked is because I deleted all of the stuff I had worked on previously. This means that the mod(s) work just fine as long as I never quit the game, but I have to start from the beginning if I ever reset... not ideal. I know I should probably post this in the KK thread instead, but I thought it might be of interest. I'm doing some trial and error now to figure out if I can isolate the exact issue that's messing everything up; i.e., looking through the KS-R ExampleBases statics/mapdecals I know load without incident and trying to figure out what's different about the ones I'm making. So far, all I got is that mine are on Laythe rather than Kerbin. That can't really be the problem, right....? EDIT: I've since isolated the issues to KS-R statics only -- existing MapDecals and GroupCenter cfgs seem to load just fine. Now, for the long process of trying to isolate which static(s) is/are causing the problem... EDIT 2: I've identified the problem static as the 1700m runway from KS-R. I have no idea why, but the game loads fine once I remove the one I previously placed from the NewInstances directory. My only theory is that I told other statics to snap to it at one point and that messed everything up. I'll try placing another iteration of that object without that option checked and see what happens. Edited July 29, 2022 by maledin Update on issue Quote Link to comment Share on other sites More sharing options...
Eskandare Posted September 19, 2022 Author Share Posted September 19, 2022 Hello everyone! Yes! I'm still alive. I'm still working on upgrades to KSR and a few other things. Sorry for being away. I'm hoping to get my Mega Structures in Space project working. Quote Link to comment Share on other sites More sharing options...
Caerfinon Posted September 19, 2022 Share Posted September 19, 2022 (edited) 22 hours ago, Eskandare said: Yes! I'm still alive. Good to know. Looking forward to your new stuff! Edited September 20, 2022 by Caerfinon Quote Link to comment Share on other sites More sharing options...
doctorbai Posted September 20, 2022 Share Posted September 20, 2022 23 hours ago, Eskandare said: Hello everyone! Yes! I'm still alive. I'm still working on upgrades to KSR and a few other things. Sorry for being away. I'm hoping to get my Mega Structures in Space project working. Wow that is unbelieveable~ welcome to back ! expect ksr and cvx update soon~ Quote Link to comment Share on other sites More sharing options...
Manul Posted September 20, 2022 Share Posted September 20, 2022 15 minutes ago, doctorbai said: cvx update CVX is working just fine in 1.12.3 so the only update it needs is MOAR carriers and parts Quote Link to comment Share on other sites More sharing options...
doctorbai Posted September 21, 2022 Share Posted September 21, 2022 13 hours ago, Manul said: CVX在1.12.3中工作正常,因此它唯一需要的更新是MOAR载体和零件 Such is the case Quote Link to comment Share on other sites More sharing options...
Eskandare Posted September 21, 2022 Author Share Posted September 21, 2022 22 hours ago, Manul said: CVX is working just fine in 1.12.3 so the only update it needs is MOAR carriers and parts CVX definitely needs an update. The carriers such a complex models that I typically do a little bit of at a time. Quote Link to comment Share on other sites More sharing options...
doctorbai Posted September 21, 2022 Share Posted September 21, 2022 41 minutes ago, Eskandare said: CVX 肯定需要更新。载体是如此复杂的模型,我通常一次做一点点。 Thank you for your efforts Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.