There is a manual launch scenerio which doesn't allow other addons placed in
I can't quite make out what your problem is here; though taking a guess at it I'd wager your having a problem adding a payload?
Til you elaborate about that, I'll try my hand at your guidance problem. There's two ways I can think of to go about this:
1)
Learn how to put a rocket in the desired orbit by flying it "seat of your pants"-style. This is usually fun, and once you get good at it you can often do better than than a autopilot would. It does depend on you having a bit of knowledge, skill, and of course willingness to learn the ropes.
2)
Borrow information from various sources. Let's say you don't want to play intrepid rocket jockey, and just want a simple pitch program to follow. Multistage-based rockets also want a pitch program to follow, and thankfully there is guidance files for them, which you can use for yourself.
Download this Ares addon([ame="http://www.orbithangar.com/searchid.php?ID=4584"]link[/ame]) and after extracting navigate to Cofig\Multistage\ then inside there's a file called "AresV_Guidance.txt". Thank the people who did made this autopilot file, then open it.(The people in particular you should thank are PhantomCruiser, Cymrych, and Columbia42, :hail: them.) Anyway, look for lines like this:
Code:
70=pitch(41,33,10)
80=pitch(33,33,10)
90=pitch(33,33,10)
100=pitch(33,33,10)
You might be asking what the lines mean. From the Multistage manual:
Each line as the following format:
<mission elapsed time>=<command>(param1,param2,...)
..........
pitch(starting_pitch,final_pitch,pitch_time)
This will control the pitch program. The launcher is pitched from the “starting_pitch” to the “final_pitch” in a time duration set by “pitch_time” Note that the pitch segments should join gently to gether(that isthe final_pitch of the previous segment should be the starting_pitch of the next segment)
So "70=pitch(41,33,10)" means "70 seconds of mission elapsed time=41 degrees for starting_pitch,33 degrees for final_pitch, in 10 seconds of pitch_time".
BTW, I've haven't flown a rocket using a multistage guidance file, but if a algorithm can fly by numbers a human ought to be able to. Let me know how this method works out for you.
