General Question adding payload problem

IronRain

The One and Only (AFAIK)
Administrator
Moderator
Orbiter Contributor
News Reporter
Donator
Joined
Oct 11, 2009
Messages
3,488
Reaction score
407
Points
123
Location
Utrecht
Website
www.spaceflightnewsapi.net
hello everyone,

I tried to add the Carina satellite to Jarvis-H but when I tried to launched it, the launcher crashed and didn't get above 10M

I don't want to use Universal Cargo Deck, because I want to try to do it in the config file ;)

this is the code I used:

Code:
[PAYLOAD_1]
off=(0,0,36.10)
speed=(0,0,1.0)
rot_speed=(0.0,0.0,0.0)
MeshName="Meshes\Carina"
Module="spacecraft\spacecraft3"
name="Carina"
Diameter=2.9
Height=10
Mass=5000

what am I doing wrong??
 
Is Carina in the meshes directory and do you have a carina.ini in config\spacecraft?
 
Is Carina in the meshes directory and do you have a carina.ini in config\spacecraft?

wow, that was fast :P

Carina is in the Meshes directory, yes, but I don't have a Carina.ini file... what must be written in it?
 
If you are using spacecraft3 as the module then you absolutely MUST have the corresponding config file in the config\spacecraft directory otherwise when it goes to spawn carina:spacecraft\spacecraft3 it has no information on what that actually is.

Use this as a carina.ini

Code:
[CONFIG]
MESHNAME="carina"
SIZE=2.6
EMPTY_MASS=200
FUEL_MASS=250
 
Back
Top