Jump to content

BeafSalad

Members
  • Posts

    26
  • Joined

  • Last visited

Reputation

11 Good

Profile Information

  • About me
    Bottle Rocketeer

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. When starting the game and loading a save I have got the X science icon in the stock toolbar as expected. If I quit to the main menu and then reload the save the stock toolbar icon is gone from the space centre, VAB and flight.
  2. I have the same problem as TK421d and I have noticed that I do not have a fuel tank catagory in the filter by function.
  3. I have many non part mods installed and at the moment just KW and interstellar installed. One thing I have noticed is that on first starting the game and loading a save at the space centre I have the the X science icon. In the VAB all the custom catagories are there from filter extensions but filter by function there is no fuel tank catagory and I have the terrible flicker. Now I exit to the main screen and reload the save and the X science icon is gone from the space centre, VAB and flight stock toolbar. In the VAB filter extensions is not working and no flicker.
  4. There may be a problem with the KSC Science contract if it happens to pick the Dmagic Seismic Hammer as the hammer does not detect KSC biomes. I do find the breifing a little confusing as it may say some like collect seismic data. The problem being that apart from stock I also have Dmagic and suface experiments that have seismic experiments so I was uncertain which one it wanted. I had to look into the persistence file to find out.
  5. The Agent is Field Research Team so I assume it comes from the Field Research contract pack. The information in the breifing just says Experiment : Seismic Data so I wasn't sure which experiment I needed so I looked in the persistence file. CONTRACT { guid = d6c68f78-1d4e-482b-85a3-5e2becbd59be type = ConfiguredContract prestige = 0 seed = 522160876 state = Active agent = Field Research Team deadlineType = None expiryType = Floating ignoresWeight = True values = 536580,0,0,30000,0,0,2,0,7020224.22391187,6920943.16789333,0,0 subtype = FS_KSC title = Perform experiments around KSC description = There are lots of opportunities to do science around the Kerbal Space Center. Wernher needs us to run a few tests at different locations as a control test of our experiments. synopsis = Run the required tests around the Kerbal Space Center and recover the data. completedMessage = Everything is looking good with these experiments, time to get them into space! hash = 1338354939 targetBody = Kerbin PARAM { name = CollectScienceCustom id = CollectScience state = Incomplete disableOnStateChange = False values = 7302,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = notes = completedMessage = allowStateReset = False targetBody = Kerbin biome = LaunchPad situation = SrfLanded experiment = dmseismicHammer recoveryMethod = Ideal PARAM { name = ParameterDelegate`1 id = Location: KSC's Launch Pad state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Location: KSC's Launch Pad notes = completedMessage = } PARAM { name = ParameterDelegate`1 id = Situation: Landed state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Situation: Landed notes = completedMessage = } PARAM { name = ParameterDelegate`1 id = Experiment: Seismic Data state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Experiment: Seismic Data notes = completedMessage = PARAM { name = ParameterDelegate`1 id = dmseismicHammerSubject state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = notes = completedMessage = } PARAM { name = ParameterDelegate`1 id = Recovery: Recover or transmit state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Recovery: Recover or transmit notes = completedMessage = } } } PARAM { name = CollectScienceCustom id = CollectScience state = Incomplete disableOnStateChange = False values = 7829,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = notes = completedMessage = allowStateReset = False targetBody = Kerbin biome = VAB situation = SrfLanded experiment = dmseismicHammer recoveryMethod = Ideal PARAM { name = ParameterDelegate`1 id = Location: KSC's VAB state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Location: KSC's VAB notes = completedMessage = } PARAM { name = ParameterDelegate`1 id = Situation: Landed state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Situation: Landed notes = completedMessage = } PARAM { name = ParameterDelegate`1 id = Experiment: Seismic Data state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Experiment: Seismic Data notes = completedMessage = PARAM { name = ParameterDelegate`1 id = dmseismicHammerSubject state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = notes = completedMessage = } PARAM { name = ParameterDelegate`1 id = Recovery: Recover or transmit state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = FieldResearch.FS_KSC title = Recovery: Recover or transmit notes = completedMessage = } } }
  6. I have a problem with the Seismic Impact Hammer. I have a contract to collect data from ksc VAB and launch pad but no matter which ksc biome I am in the hammer only returns ksc shore biome.
  7. I have just recently changed my launch script to regulate the TWR of the ship. All seemed well until yesterday I launched a old rocket that has the thrust limiter on the engines set around to 50% so that the SLT is 1.4. I usually set the thrust to be regulated at 1.8 but immediately after launch the throttle is set right back to 50%. The thrust is being worked out like so : LOCAL G IS body:mu / ((ship:altitude + body:radius)^2). LOCAL MaxTWR IS ship:availablethrust / (G * ship:mass). I printed out the value of MaxTWR so I could check it value and found that it was reporting the full thrust of the engines even though the thrust limiter was set. After some investigation I found what the problem was. G was correct, ship:availablethrust was correct, ship:mass was correct but MaxTWR was not so I change the code to : LOCAL G IS body:mu / ((ship:altitude + body:radius)^2). local maxtwr is 0. set MaxTWR to ship:availablethrust / (G * ship:mass). And all is well.
  8. I am aware of the release candidate and have tried it only to find a bug that cripples some of my scripts. I was asking if anyone has done a unofficial build of v0.20.1 for ksp 1.1.3. I know you guys are too busy with the v1.0.0 release. As far as I am aware the only thing broken in 1.1.3 is the time warp and I am sure I read somewhere that a recompile works. I have just been atempting it myself with msbuild as I do not want to mess around with Visual Studio but I am getting many errors and have been unsuccessful as yet.
  9. Has anyone not noticed that everytime you update this your custom presets stop working. In fact they get deleted but it just gets better because in your saved game persistance file it saves which preset you are using. If you are using a custom preset and after updating not even the default presets will show. To get it working you have it edit the entry in your persistance file as to which preset is being used. With the latest update even after doing that it would not save a custom preset because it could not find Krash-custom.cfg in the plugingdata folder. When I copied the file over it worked, well thats until the next update.
  10. After making changes I am testing this in windows on a KSP install with just this addon and two others so that it is quick to load. On my test it worked just fine but then I tested it on my main career game which is linux64. It didn't work so I copied dll from the windows test install and it worked, I don't know why as the dll in the zip should be the same. I did redo the zip and I am sure I uploaded it, I just tested the zip from the mega link in the previous post and it was fine. The problem with this version is that if you have a lot of science addons and I do have a s**t load in my linux install it gets really slugish. I have been working on that over the last day to try and remedy that. Basically it is just a seperate list of experiments for just the active vessel and rather than all experiments being updated when science is collected it is just the few that you have on the active vessel. I have it working but the list not updating correctly when science is collected plus it would need to be tested in my linux install to make sure that there is some speed improvements.
  11. Been working on this tonight and got all biomes working with current vessel. https://mega.co.nz/#!kM9zWJIB!dT8wJ4OpOZPVeNftdOiAIiTbBCV3skG0gch3OnZgDec Update: Sorry guys I just noticed now there is a problem with some KSC biomes. Will work on it tonight. Ok seems that it is working now. I tried to filter out some KSC biomes that show twice but it did not like that and didn't work so right now on the full list you will see duplicate entries for Launch Pad, Runway and KSC. The previous problem that I noticed with some experiments in various biomes of the Mun not being filtered for the current situation is now fixed. For example eva report while in space over Mun's Midlands would work but not for Twin Craters. I have not tested every biome but hopefully it will work.
  12. Yep I had same problem with mine with one more complication, the throttle would never really go down to zero. I had to edit the settings.cfg and set the scale value on all joystick axis to 1.1.
  13. The reason it is slow is because of the experiment update function updates every experiment and gets the science data of every vessel. That is fine if you are at the space centre and are just checking the list but when you are flying and filtering active vessel all you are interested in the ship you are flying. I have noticed a bug as well in the way it filters the experiment list of the active vessel. When I was orbiting the Mun it was showing my current situation and biome but the experiments were not showing for some biomes. I think it was eva report while flying low over Nortern Crater or something. To be honest I have not looked at it for a while as it was doing my head in but it sure is in need of optimisation. At the moment I am just playing the game and are using science library but I do prefer the UI on this one.
  14. Thought I would give this a go as I was reaching the memory limits in win32. Initially what a traumatic experience as I have really never used linux before. I decided on Kubuntu as it starts with a k. Day 1. Tying to figure out how to install on a external hard drive. Problem 1 would not even boot off usb stick. I got the boot menu but then a blank screen. Seems ubuntu does not like Nvidia cards. Finally got this one sorted with nomodeset. Day 2. Finally got it installed then spent hours trying to find out how to install the Nvidia drivers. Got that done rebooted and the text is so small you cannot read anything. That was another 3 hour exercise to sort out. Next was how the hell do I start ksp, I don't even know to run programs in linux. Well found this tread and voidi's installation script. Ksp still would not run, it seemed to just start and then stop. Turned out to just be a permission issue on the folder where ksp resides. After all that it seems to be running ok with a s**t load of addons the process taking just over 4gig. Question is now what to do with my windows ksp install?
×
×
  • Create New...