Question how to get the orion in orbit with the CM and SM attached?

Lydia

Cynder Fan
Joined
Dec 21, 2011
Messages
102
Reaction score
0
Points
0
Location
London
so i download this mod : [ame="http://www.orbithangar.com/searchid.php?ID=4532"]Side-Mount SDHLV[/ame] but i cant get the HLV in orbit when its loaded with the orion, i wanna get the orion in another scenario but when i spawn it, it spawns as 2 parts and i cant put them together, can someone help me please?
 
post scenario
 
note the orion SM and CM moduels are converted to DLL from SC3 but i still cant attach, Scenario below
Code:
BEGIN_DESC

END_DESC

BEGIN_ENVIRONMENT
  System Sol
  Date MJD 51982.5317123227
END_ENVIRONMENT

BEGIN_FOCUS
  Ship OrionCM
END_FOCUS

BEGIN_CAMERA
  TARGET OrionCM
  MODE Extern
  POS 0.24 -1.47 -67.90
  TRACKMODE TargetRelative
  FOV 60.00
END_CAMERA

BEGIN_HUD
  TYPE Surface
END_HUD

BEGIN_MFD Left
  TYPE Orbit
  PROJ Ship
  FRAME Ecliptic
  REF Earth
END_MFD

BEGIN_MFD Right
  TYPE Surface
  SPDMODE 1
END_MFD

BEGIN_SHIPS
GL-01:DeltaGlider
  STATUS Orbiting Earth
  RPOS 4884163.04 3464578.50 -2672584.07
  RVEL 5352.886 -4595.075 3551.519
  AROT -78.23 -32.84 112.49
  AFCMODE 7
  PRPLEVEL 0:0.553000 1:0.900000
  NAVFREQ 0 0 0 0
  XPDR 0
  NOSECONE 1 1.0000
  AAP 0:0 0:0 0:0
END
OrionSM-1:OrionSM
  STATUS Orbiting Earth
  RPOS 4884379.93 3464243.32 -2672515.43
  RVEL 5352.774 -4595.025 3551.537
  AROT -52.67 -56.93 90.32
  AFCMODE 7
  NAVFREQ 0 0 0 0
  XPDR 0
  ANIM_0 -2 0.0000
  ANIM_1 -2 0.0000
END
OrionCM:OrionCM
  STATUS Orbiting Earth
  RPOS 4884171.69 3464564.58 -2672581.01
  RVEL 5352.993 -4595.240 3551.552
  AROT -78.22 -32.83 112.49
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0 0 0
  XPDR 0
  ANIM_0 -2 0.0000
  ANIM_1 -2 0.0000
END
END_SHIPS

BEGIN_ExtMFD
END
 
They're not attached in the scenario.
 
um, mind giving the code to attach them please Donamy?
 
Try this:
Code:
BEGIN_DESC
 
END_DESC
 
BEGIN_ENVIRONMENT
  System Sol
  Date MJD 51982.5317123227
END_ENVIRONMENT
 
BEGIN_FOCUS
  Ship OrionCM
END_FOCUS
 
BEGIN_CAMERA
  TARGET OrionCM
  MODE Extern
  POS 0.24 -1.47 -67.90
  TRACKMODE TargetRelative
  FOV 60.00
END_CAMERA
 
BEGIN_HUD
  TYPE Surface
END_HUD
 
BEGIN_MFD Left
  TYPE Orbit
  PROJ Ship
  FRAME Ecliptic
  REF Earth
END_MFD
 
BEGIN_MFD Right
  TYPE Surface
  SPDMODE 1
END_MFD
 
BEGIN_SHIPS
GL-01:DeltaGlider
  STATUS Orbiting Earth
  RPOS 4884163.04 3464578.50 -2672584.07
  RVEL 5352.886 -4595.075 3551.519
  AROT -78.23 -32.84 112.49
  AFCMODE 7
  PRPLEVEL 0:0.553000 1:0.900000
  NAVFREQ 0 0 0 0
  XPDR 0
  NOSECONE 1 1.0000
  AAP 0:0 0:0 0:0
END
OrionSM-1:OrionSM
  STATUS Orbiting Earth
  RPOS 4884379.93 3464243.32 -2672515.43
  RVEL 5352.774 -4595.025 3551.537
  AROT -52.67 -56.93 90.32
  AFCMODE 7
  NAVFREQ 0 0 0 0
  XPDR 0
  ANIM_0 -2 0.0000
  ANIM_1 -2 0.0000
END
OrionCM:OrionCM
  STATUS Orbiting Earth
  RPOS 4884171.69 3464564.58 -2672581.01
  RVEL 5352.993 -4595.240 3551.552
  AROT -78.22 -32.83 112.49
  AFCMODE 7
  [COLOR=red]ATTACHED 0:0,OrionSM-1[/COLOR]
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0 0 0
  XPDR 0
  ANIM_0 -2 0.0000
  ANIM_1 -2 0.0000
END
END_SHIPS
 
BEGIN_ExtMFD
END
 
Back
Top