Jump to content

linuxgurugamer

Bug Hunter
  • Posts

    24,969
  • Joined

  • Last visited

Everything posted by linuxgurugamer

  1. For improved editing, I'd also recommend the WASDEditorCamera, and EditorExtensionsRedux
  2. I think I have it: DATA { type = CelestialBody uniqnessCheck = CONTRACT_ALL contractBody = @targetBody }
  3. Is there a way to have a maxCompletions =1 for each planet? In other words, when targetBody = @/planet DATA { type = CelestialBody home = HomeWorld() planet = OrbitedBodies().Where(b => b.HasSurface()).Random() } to have the contract be completable one time for each targetBody?
  4. Get KerbalEngineer and Kerbal Alarm Clock as early mods.
  5. @JPLRepo This mod used to be able to work with the KerbalGPS mod to get exact GPS locations. I'll be releasing a revival on Sunday of the KerbalGPS (been in beta the past week or so), do you know if the code is still there and if it still works? Edit: I just looked at the code and it still seems to be there. Could you add something to the OP about the integration?
  6. Good luck on the virginity of the game. IMHO, it's the mods which keep this game going and welcome
  7. Upcoming contract pack will now provide contracts for putting a constellation around Kerbin and then other planets
  8. New release, 2.2.0.1 Version bump to fix error in .version file
  9. No, in multiple ways. I didn't say "verbose" The toolbar Controller has it's own settings page. On that page, there is a debug mode flag specifically for the toolbar controller Second, you sent me the wrong file. I don't mind that one, but for this, I need the output_log.txt, see the following on how/where to get it: Read this BEFORE asking for support: http://forum.kerbalspaceprogram.com/index.php?/topic/83212-how-to-get-support-read-first/ Please resist the temptation to pre-sort the log file. Those files you provided are useless to me. As I said to @marioluigi653, please turn on debug mode for the toolbar controller, restart the game, and then send me the output_log.txt file Read this BEFORE asking for support: http://forum.kerbalspaceprogram.com/index.php?/topic/83212-how-to-get-support-read-first/
  10. Nope. Those are all Realchute exceptions, I suggest you go to that thead for help
  11. Please turn on the debug flag in the stock settings page for the ToolbarController, restart the game and send me the log file
  12. Which items? Try deleting the file: GameData\001_ToolbarControl\PluginData\ToolbarControl.cfg If a mod requires this, then it will NOT load if this isn't installed
  13. I am not the maintainer of tweak scale. It would be best to post a message in the tweak scale forum with requests like that.
  14. Looks like you have too many version of the ToolbarController installed, please check your install [LOG 15:06:02.026] ADDON BINDER: Create binding redirect: ToolbarControl, Version=0.1.6.6, Culture=neutral, PublicKeyToken=null => ToolbarControl, Version=0.1.6.13, Culture=neutral, PublicKeyToken=null [LOG 15:06:02.033] ADDON BINDER: Create binding redirect: ToolbarControl, Version=0.1.6.10, Culture=neutral, PublicKeyToken=null => ToolbarControl, Version=0.1.6.13, Culture=neutral, PublicKeyToken=null [LOG 15:06:02.066] ADDON BINDER: Create binding redirect: ToolbarControl, Version=0.1.6.7, Culture=neutral, PublicKeyToken=null => ToolbarControl, Version=0.1.6.13, Culture=neutral, PublicKeyToken=null [LOG 15:06:02.101] ADDON BINDER: Create binding redirect: ToolbarControl, Version=0.1.6.5, Culture=neutral, PublicKeyToken=null => ToolbarControl, Version=0.1.6.13, Culture=neutral, PublicKeyToken=null
  15. It was an interesting issue. It actually wasn't hung, but it would have taken hours to finish the calculation it was doing
  16. @nightingale Ignore this, the problem was with the grey matter between my ears. I'm having a problem with some contracts, the relevant lines are:: DATA { type = List<CelestialBody> easyPlanets = HomeWorld().Children() mediumPlanets = OrbitedBodies().Where(b => b.HasSurface()).ExcludeAll(@easyPlanets).Exclude(HomeWorld()) hardPlanetsTemp = AllBodies().Where(b => b.HasSurface()).ExcludeAll(@mediumPlanets) hardPlanets = @hardPlanetsTemp.ExcludeAll(@easyPlanets).Exclude(HomeWorld()) } DATA { type = CelestialBody //planet = Prestige() == Trivial ? @/easyPlanets.Random() : Prestige() == Significant ? @/mediumPlanets.Random() : @/hardPlanets.Random() planet = @/easyPlanets.Random() } And the result is below: The key mediumPlanets is not fulfilled since everything is fulfilled, but because of this, the contract is not being generated. If I comment out the mediumPlanets and the hardPlanets (since it depends on mediumPlanets), it then generates a contract
  17. Then it sounds like it wasn't installed properly the first time. Glad it's working
  18. New release, 0.2.1.4 Replaced some Debug.Log statements with LogsManager.Info to reduce log spam Replaced some extremely inefficient code to adjust a value to within a range in CreateOrbit with a simple Modulo operator (was causing a hang when extreme time values existed, such as 25,000 years) @antgeth This fixes your issue
  19. The log file is incomplete, it ends while you are in the editor. I just reread your initial post and saw it WAS in the editor I need the save file unedited. Looks like it might be something inside the game itself, the only place where the time is referenced is when it's calculating orbits I was just able to reproduce this in a mostly stock game
  20. This is very strange. Have you changed anything recently (modwise)? The error is happening because the government isn't set, but it obviously was because you've been playing the game. So, two things: First, try restarting and see if that fixes it If it doesn't, then please send me the save file
  21. Interesting, sounds like an overflow in a time counter
×
×
  • Create New...