Advanced Question Rotation comands in multistage2

Interceptor

Well-known member
Joined
Mar 28, 2008
Messages
2,719
Reaction score
78
Points
63
Location
Michigan,Florida
Hello,all multistage Gurus,I need some help, I am a newbe with multistage2.
Ok I have the shuttle performing exactly how I want it,all except I would either like to rotate heads up while still moving for the ET seperation,or I would like the shuttle to stop first wait a few seconds,and then rotate heads up,and seperate from the ET.,but it loses control and spins out towards the end of it's programed manuvers, the first guidance file shown is the rotate heads up while still moving,and the second one is the stop first then rotate heads up to drop ET.What am I doing wrong?thanks

Code:
-6=engine(0,100,6
-5=PlaySound(sound\multistage\atlantis_launch.wav)
0=disable(jettison)
4=roll(4,82,43,65,-1)
20=pitch(78,66,10)
30=pitch(72,66,10)
40=pitch(66,61,10)
50=pitch(61,55,10)
60=pitch(55,50,10)
70=pitch(50,43,10)
80=pitch(43,36,10)
90=pitch(36,29,10)
100=pitch(29,20,10)
110=pitch(20,16,10)
120=pitch(16,17,10)
126=jettison()
130=pitch(17,18,10)
140=pitch(18,19,10)
150=pitch(19,19,30)
180=pitch(19,17,10)
190=pitch(17,-2,160)
350=pitch(-2,33,40)
390=pitch(33,16,100)
490=pitch(16,16,14)
491=spin(1)
492=spin(3)
493=spin(5)
494=spin(3)
495=spin(2)
496=spin(1)
497=spin(0)
498=jettison()
520=engine(100,0,0.1)

Code:
-6=engine(0,100,6)
-5=PlaySound(sound\multistage\atlantis_launch.wav)
0=disable(jettison)
4=roll(4,82,43,65,-1)
20=pitch(78,66,10)
30=pitch(72,66,10)
40=pitch(66,61,10)
50=pitch(61,55,10)
60=pitch(55,50,10)
70=pitch(50,43,10)
80=pitch(43,36,10)
90=pitch(36,29,10)
100=pitch(29,20,10)
110=pitch(20,16,10)
120=pitch(16,17,10)
126=jettison()
130=pitch(17,18,10)
140=pitch(18,19,10)
150=pitch(19,19,30)
180=pitch(19,17,10)
190=pitch(17,-2,160)
350=pitch(-2,33,40)
390=pitch(33,16,100)
490=pitch(16,16,14)
491=pitch(0,0,50)
492=spin(5)
493=spin(2)
494=spin(1)
495=Spin(0)
500=spin(0)
510=jettison()
 
Last edited:
This worked pretty well for me.

Code:
-7=engine(0,100,6)
-4.1=PlaySound(sound\multistage\atlantis_launch.wav)
0=disable(jettison)
0.1=disable(roll)
6=roll(6,86,43,78,-1)
6=PlaySound(sound\multistage\rollprogram.wav)
20=pitch(82,72,10)
30=pitch(76,70,20)
31=engine(100,65,6)
50=pitch(70,65,20)
61=engine(65,100,6)
68=PlaySound(sound\multistage\gothrottleup.wav)
70=pitch(65,60,20)
90=pitch(60,40,20)
110=pitch(40,40,20)
124=jettison()
130=pitch(40,32,10)
140=pitch(32,26,10)
150=pitch(26,20,30)
160=fairing()
180=pitch(20,14,10)
190=pitch(14,10,10)
200=pitch(10,5,10)
210=pitch(5,3,40)
260=pitch(3,10,20)
280=pitch(10,20,300)
300=spin(5)
335=spin(3)
336=spin(1)
337=spin(0)
524=engine(100,0,1)
526=jetison()
 
Thanks Donamy, I will give it a try.

---------- Post added at 05:02 PM ---------- Previous post was at 04:57 PM ----------

Are there any addons on OH that have multistage files for the shuttle?maybe I can learn from looking at them,also
 
I just realized, why the ET never detaches. I left a "t" out of Jettison at 526. :facepalm:

Did that work for you ? It was pretty much trial and error. My resolve has a guidence file.
 
Yeah,Donamy that worked great,do you happen to have a night launch guidance file to the ISS, also.Thanks:cheers:
 
Back
Top