Bug old add-ons

MaxBuzz

Well-known member
Joined
Sep 19, 2016
Messages
1,402
Reaction score
2,130
Points
128
Location
Kursk
Payload appears away from the rocket (old add-ons) how can this be fixed? (Multistage2015 / Orbiter 2016)
picture.php
 

MaxBuzz

Well-known member
Joined
Sep 19, 2016
Messages
1,402
Reaction score
2,130
Points
128
Location
Kursk
add-on "GEP - Pioneer 10 and 11"
https://www.orbithangar.com/showAddon.php?id=b8248a0d-f879-4e1e-8576-dfb4bd7342f5

Pioneer10.cfg
classname = Pioneer10
Module = spacecraft3
ACpioneer10.cfg
classname = ACpioneer10
Module = multistage2015

SCN
BEGIN_DESC

END_DESC

BEGIN_ENVIRONMENT
System Sol
Date MJD 41379.0420422749
Help CurrentState_img
END_ENVIRONMENT

BEGIN_FOCUS
Ship ACpioneer10
END_FOCUS

BEGIN_CAMERA
TARGET ACpioneer10
MODE Extern
POS 4.000000 6.801462 -133.844132
TRACKMODE AbsoluteDirection
FOV 40.00
END_CAMERA

BEGIN_MFD Left
TYPE Map
REF Earth
TARGET Cape Canaveral
END_MFD

BEGIN_MFD Right
TYPE Launch
NAV 0
END_MFD

BEGIN_SHIPS
ACpioneer10:ACpioneer10
STATUS Landed Earth
POS -80.5349590 28.4654510
HEADING 90.00
ALT -0.016
AROT 151.204 -8.312 -85.457
ATTACHED 0:0,MS_LaunchPad_ACpioneer10
AFCMODE 7
PRPLEVEL 0:1.000000 1:1.000000 2:1.000000 3:1.000000
NAVFREQ 0 0 0 0
XPDR 0
CONFIG_FILE Config\boosters\ACpioneer10.ini
CONFIGURATION 0
CURRENT_BOOSTER 1
CURRENT_STAGE 1
CURRENT_INTERSTAGE 1
CURRENT_PAYLOAD 1
FAIRING 1
MET 0.000
STAGE_IGNITION_TIME 0.000000
STAGE_STATE 1
ALT_STEPS 100.0,350.0,1400.0,35000.0
PEG_PITCH_LIMIT 35.000
PEG_MC_INTERVAL 0.100
RAMP
END
MS_LaunchPad_ACpioneer10:EmptyModule
STATUS Landed Earth
POS -80.5349590 28.4654510
HEADING 90.00
ALT -0.021
AROT 151.204 -8.312 -85.457
AFCMODE 7
NAVFREQ 0 0
END
END_SHIPS


---------- Post added 05-31-20 at 10:47 AM ---------- Previous post was 05-30-20 at 06:47 PM ----------

(solved) The error is due to the lack of a - guidance Multistage2015
I did not find - guidance Atlas-Centaur and I don’t know how to create them

example guidance Atlas V 401
https://www.orbiter-forum.com/showthread.php?p=519059&postcount=327
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,702
Reaction score
2,679
Points
203
Location
Dallas, TX
The guidance file tells what to do in flight. So I finally got it to load. I made a change to the scn.
But the file that tells where the payload goes is the
Code:
CONFIG_FILE Config\boosters\ACpioneer10.ini
I made this change to the scn.
Code:
BEGIN_SHIPS
ACpioneer10:Multistage2015
  STATUS Landed Earth
  BASE Cape Canaveral:5
  HEADING 90.00
  FUEL 1.000
  CONFIG_FILE Config\boosters\ACpioneer10.ini
GUIDANCE_FILE Config\Multistage2015\Guidance\guidance_AC10.txt
  CONFIGURATION 0
  CURRENT_BOOSTER 0
  CURRENT_STAGE 1
  CURRENT_PAYLOAD 0
  FAIRING 1
END

A simple guidance file:
Code:
-30.000 =orbit(307,317,28.5,-1)
-6.0 =engine(0,100,6)
 
Last edited:
Top