Jump to content

JackQW

Members
  • Posts

    6
  • Joined

  • Last visited

Reputation

0 Neutral

Profile Information

  • About me
    Bottle Rocketeer
  1. Would a scenario like Pluto-Charon be possible to generate in KSP? These kinds of orbits would make for loads of fun. Especially where one orbiting body overlaps (or almost overlaps) the other's orbit...
  2. That's fallacious thinking; I think we've proved MFT is a culprit, it does not rule out others. I removed MFT and it resolved my issues. It's not a KSPAPIExtensions version problem either.
  3. Might want to extend that elseif with a plain else case under it with addToModCategory(part,"Control/RCS/[something goes here]"), or there will be other missing RCS parts... Strange though, if resourceName is nil, then that means that the RCS has no fuel, thus no category? --RCS for rcs in modulesByName(part,"ModuleRCS") do if containsNodeTypeName(rcs,"resourceName","MonoPropellant") then addToModCategory(part,"Control/RCS/MonoPropellant") elseif rcs.values.resourceName == nil then addToModCategory(part,"Control/RCS/Misc") else addToModCategory(part,"Control/RCS/"..rcs.values.resourceName,rcs.values.resourceName, "Categories/Control/RCS_Misc") end end Maybe something like that? *Did not test.
  4. I should also note, you may have to ctrl+click on Autotag to regenerate the partString.lua, or delete it and relaunch the game to have it recreated.
  5. Is there some glitch that causes backslashes to show up as pipe characters on the forums? This fixed a lot of problems I encountered with bigger part packs, I have SXT (by the maker of LLL), but no LLL or AlchemyTechnologies ... partString is found at GameData\PartCatalog\Plugins\PluginData\PartCatalog\partString.lua Paste line 147 from partString? Syntax check the whole file, and paste any other errors? Or upload the whole thing somewhere...
  6. Adding a 'Replace' call to escape slashes fixes breakage on text descriptions or paths that end in \ escaping a closing quote, fouling up partsString.lua... From line 326 of LuaRuleHandler.cs; private static string escapeString(object toEscape) { return toEscape.ToString().Replace("\\","\\\\").Replace("\"", "\\\""); }
×
×
  • Create New...