Telanor
Members-
Posts
35 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by Telanor
-
I'm trying to make a shiny sputnik like in the 2nd post of this thread but it ends up really dark. I'm using the SXT part which has this specified in its config: texture = model000 , Squad/Parts/Command/probeStackSphere/model000 That model000 texture is pure black, so I tried overriding it in my config, but that had no effect. Im on KSP 1.3.1 using TU 1.0.0.8 What am I doing wrong?
-
Ah, same symptoms, different issue I guess. I haven't played with RT in a while but I don't think "signal processor" is what's needed for a connection. Its the "technology perk" with the omni antenna that does that. Try sticking the DP-10 on the probe and see if that fixes it.
-
Read the posts directly above yours. I think I've figured out what the issue is with this. I took a look at the RT config that comes with RO and noticed a bunch of base stations listed. I opened up the map and saw they were everywhere BUT where the KSC is. Looks like the RO configs assume RSS is installed, so if you play without RSS like I do, you end up with no base stations near the stock KSC. This reddit thread links to a newer version of RO that seems to fix this issue. It doesn't seem to be an officially released version though.
-
For me, if I install only RO and select RemoteTech as the only optional mod, it still doesn't work. I created a rocket with only a sounding rocket telemetry unit and tinytim booster. The flight computer always says it has no connection.
-
I'm having the exact same issue. I installed RO v10.4.1 and RP-0 v0.39 (no RSS) as well (via ckan).
-
[1.12.x] Transfer Window Planner v1.8.0.0 (April 11)
Telanor replied to TriggerAu's topic in KSP1 Mod Releases
http://wiki.kerbalspaceprogram.com/wiki/Setting_up_MonoDevelop. Looks like step 3 is the one to pay attention to there -
[1.12.x] Transfer Window Planner v1.8.0.0 (April 11)
Telanor replied to TriggerAu's topic in KSP1 Mod Releases
Yes, and it will probably require more UT adjustment the more eccentric your orbit, but it still saves a lot of time. Visual studio is free, you can install it and compile the mod yourself. The KSP wiki has a guide on compiling mods. Step 6 is the important one. In the code, you only need to change TWPWindow.cs: if (GUI.Button(new Rect(132 + 15, WindowRect.height - 30, 120, 20), new GUIContent(" Copy Details", Resources.btnCopy))) { CopyAllDetailsToClipboard(); } to if(GUI.Button(new Rect(132 + 15, WindowRect.height - 30, 120, 20), new GUIContent(" Create Node", Resources.btnCopy))) { var transfer = mbTWP.windowMain.TransferSelected; var node = FlightGlobals.ActiveVessel.patchedConicSolver.AddManeuverNode(transfer.DepartureTime); node.OnGizmoUpdated(new Vector3d(0, transfer.EjectionDVNormal, transfer.EjectionDVPrograde), transfer.DepartureTime); } -
[1.12.x] Transfer Window Planner v1.8.0.0 (April 11)
Telanor replied to TriggerAu's topic in KSP1 Mod Releases
So I replaced the 'copy to clipboard' button code with this: var transfer = mbTWP.windowMain.TransferSelected; var node = FlightGlobals.ActiveVessel.patchedConicSolver.AddManeuverNode(transfer.DepartureTime); node.OnGizmoUpdated(new Vector3d(0, transfer.EjectionDVNormal, transfer.EjectionDVPrograde), transfer.DepartureTime); And now I have one-click node creation that just requires some simple UT +/- adjustment via precisenode. It would be nice if you could add this to the mod officially, it simplifies the entire process greatly. -
[1.8.x] DMagic Orbital Science: New Science Parts [v1.4.3] [11/2/2019]
Telanor replied to DMagic's topic in KSP1 Mod Releases
They're not working for me either. The US versions of stock experiments don't even work. Output log shows this error when you try to run an experiment: MissingFieldException: Field '.CelestialBody.BiomeMap' not found. at DMagic.Part_Modules.DMModuleScienceAnimate.makeScience (Single boost) [0x00000] in <filename unknown>:0 at DMagic.Part_Modules.DMModuleScienceAnimate.runExperiment () [0x00000] in <filename unknown>:0 at DMagic.Part_Modules.DMModuleScienceAnimate.DeployExperiment () [0x00000] in <filename unknown>:0 at BaseEvent.Invoke () [0x00000] in <filename unknown>:0 at UIPartActionButton.OnClick () [0x00000] in <filename unknown>:0 (Filename: Line: -1) -
[1.3.0] Kerbal Engineer Redux 1.1.3.0 (2017-05-28)
Telanor replied to cybutek's topic in KSP1 Mod Releases
I didn't even have maneuver nodes capability unlocked when I made that log. Actually I just tested again now that I upgraded the radar station and it's working, so maybe it has something to do with that? -
[1.3.0] Kerbal Engineer Redux 1.1.3.0 (2017-05-28)
Telanor replied to cybutek's topic in KSP1 Mod Releases
Also having this problem with only this mod installed. Here's my log file: https://dl.dropboxusercontent.com/u/41104/Temp/output_log.rar. I also noticed some weirdness with the delta-v display in the VAB. Sometimes it would flicker between 2 numbers when I wasn't doing anything. -
NullReferenceException spam
Telanor replied to Telanor's topic in KSP1 Technical Support (PC, modded installs)
Well I found the cause. I ripped apart the base until I only had 3 lander modules left and then started pulling off docking ports. One specific "Kerbtrail Dock Port" part was doing it. As soon as I pulled it off, the error stopped. I wasn't even using them, they're just sitting on the sides of the MKS Integrated Module Base of each of my modules. -
[WIN] KSP to DDS texture converter
Telanor replied to Lilleman's topic in KSP1 Tools and Applications
For some strange reason, my C# version crashes when converting some textures, like a 64x64 pure white png file from FTT, saying something about index out of bounds when it calls TextureLoader.FromStream. And yet somehow the VB version converts it just fine... I left in all the dispose calls, I only converted a few of the close/dispose sets into 'using' blocks which should do the same thing. It's really weird... -
[WIN] KSP to DDS texture converter
Telanor replied to Lilleman's topic in KSP1 Tools and Applications
Yea the program only works in 32bit mode. Somehow while coding the build mode got flipped back to AnyCPU and I must have uploaded that build. I've updated the release on github so it should work now. -
NullReferenceException spam
Telanor replied to Telanor's topic in KSP1 Technical Support (PC, modded installs)
Yea it does seem like the error is in squad code. Is there anything I can do about this? I only have about 110 parts on my base but its killing the performance, I only get 9 fps. -
NullReferenceException spam
Telanor replied to Telanor's topic in KSP1 Technical Support (PC, modded installs)
Here you go: https://dl.dropboxusercontent.com/u/41104/output_log.txt Edit: ninja'd apparently -
NullReferenceException spam
Telanor replied to Telanor's topic in KSP1 Technical Support (PC, modded installs)
Kinda doubt it. If it was ATM, I'm sure a lot more people would be having this issue. There are no results on google for this error though, aside from one pastebin-type site, which is useless. And I haven't converted the resource pack files (or any of the USI files since updating) to dds. Besides I tried with ATM disabled and it still errored. -
I'm getting this endless spam to my log file about a NullReferenceException every time I load up my MKS base on minmus. The error in the log is extremely vague and seems like it's occurring in SQUAD code. I tried removing all the dll's from the mods I have installed (since removing the parts would mean the base couldn't be loaded) and the error was still there. There's two variations of the error that are being spammed: NullReferenceException: Object reference not set to an instance of an object at ModuleDockingNode.<SetupFSM>m__D1 () [0x00000] in <filename unknown>:0 at KerbalFSM.FixedUpdateFSM () [0x00000] in <filename unknown>:0 at ModuleDockingNode.FixedUpdate () [0x00000] in <filename unknown>:0 (Filename: Line: -1) and NullReferenceException: Object reference not set to an instance of an object at ModuleDockingNode.<SetupFSM>m__DF (.KFSMState st) [0x00000] in <filename unknown>:0 at KerbalFSM.updateFSM (KFSMUpdateMode mode) [0x00000] in <filename unknown>:0 at KerbalFSM.UpdateFSM () [0x00000] in <filename unknown>:0 at ModuleDockingNode.Update () [0x00000] in <filename unknown>:0 (Filename: Line: -1) Log file: http://www.filedropper.com/outputlog_3 I'm on KSP 0.25, 32bit. Windows 7 x64. All AVC-enabled addons are up-to-date. Mods list: X Science Toolbar USI Tools ActiveTextureManagement ART ATC AviationLights BoulderCo CIT Community Resource Pack DDSLoader DeadlyReentry EditorExtensions RealRoster EVE FinePrint Firespitter (just the dll from USI) KAS KerbalEngineer Hyperedit KSP-AVC KSPLua MechJeb2 NavHud NavyFish docking port alignment ORSX PartCatalog PlanetShine PreciseNode ProceduralFairings RCSBuildAid RealChute RemoteTech Science Revisited Science Alert SelectRoot ShipManifest StockBugFixModule TacFuelBalancer TacSelfDestruct Tac Life Support Trajectories Alarm Clock USI - FTT, Karbonite, Karbonite Plus, MKS
-
[WIN] KSP to DDS texture converter
Telanor replied to Lilleman's topic in KSP1 Tools and Applications
Just updated and pushed the ModsExceptions changes. Absolutely, please do. If you want me to add you as a collaborator I can, or you can just fork it, whatever works for you. -
[WIN] KSP to DDS texture converter
Telanor replied to Lilleman's topic in KSP1 Tools and Applications
I was bored today, so I converted the converter to C# and uploaded it to github: https://github.com/Telanor/DDS4KSP. Release is here. I did some light testing of it and it seems to work properly, but there might be some issues I missed, VB is a strange language... -
[WIN] KSP to DDS texture converter
Telanor replied to Lilleman's topic in KSP1 Tools and Applications
Don't bother, that's the point of png, compressing images. Compressing it again in a zip/rar isn't going to make it any smaller (it might even make it bigger) -
[1.3.0] Kerbal Engineer Redux 1.1.3.0 (2017-05-28)
Telanor replied to cybutek's topic in KSP1 Mod Releases
Well that fixed it. Not the first time this has happened, though I have no clue what causes it. -
[1.3.0] Kerbal Engineer Redux 1.1.3.0 (2017-05-28)
Telanor replied to cybutek's topic in KSP1 Mod Releases
Not sure if this has been reported before but I'm having an issue with the vessel info panel not showing up anymore, the one in the bottom left of the VAB. The resources panel shows up just fine, but the vessel one for some reason just doesn't want to show up. -
Looks like another set to add to the exceptions: ORS(X) textures need to be readable in order for the resource maps to work: Stop Doing Dumb Things With Your Map Textures: UnityEngine.UnityException: Texture 'CommunityResourcePack/Karbonite/Minmus_Karbonite' is not readable, the texture memory can not be accessed from scripts. You can make the texture readable in the Texture Import Settings. at (wrapper managed-to-native) UnityEngine.Texture2D:GetPixel (int,int) at ORSX.ORSX_PlanetaryResourceMapData.loadPlanetaryResourceData (Int32 body) [0x00000] in <filename unknown>:0 KSP-AVC also appears to be hardcoded to look for a png file KSP-AVC -> System.IO.IsolatedStorage.IsolatedStorageException: Could not find file "C:\KSP 0.25 - Copy\GameData\KSP-AVC\Textures\OverlayBackground.png".