SDK Question Adding Gas to Roger Long's Ships!

CTarana45

Active member
Joined
Nov 7, 2018
Messages
188
Reaction score
41
Points
28
MaxFuel = 30e6 ; max fuel mass [kg]
Isp = 11e8 ; fuel specific impulse [m/s], aka fuel efficiency

I'm trying to add fuel to four of Roger's vessels! I added the above lines to the .cfg files, nothing happens when I load up Orbiter 2003?
Do I have edit the scenarios too?

Thanks, Guys!

Christopher Tarana

PRPLEVEL 0:1.000

I added the above line to the scenarios and it worked! Roger also used Fuel 1 for the same thing!

You need fuel for the autopilots!
 
Last edited:

jedidia

shoemaker without legs
Addon Developer
Joined
Mar 19, 2008
Messages
10,875
Reaction score
2,129
Points
203
Location
between the planets
I am not familiar with the vessels in question. If they come with a dll, it's entirely up to the implementation whether or not it respects any cfg parameters. And ususally they don't, because they just hard-code their properties.
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,615
Reaction score
2,335
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
I am not familiar with the vessels in question. If they come with a dll, it's entirely up to the implementation whether or not it respects any cfg parameters. And ususally they don't, because they just hard-code their properties.

I think those didn't, they had been really simple but the scenarios used the old single default propellant resource level format and not the list of filled propellent resources, we use today.
 

CTarana45

Active member
Joined
Nov 7, 2018
Messages
188
Reaction score
41
Points
28
ng
I am not familiar with the vessels in question. If they come with a dll, it's entirely up to the implementation whether or not it respects any cfg parameters. And ususally they don't, because they just hard-code their properties.
They were all .cfg vessels! I went back to his site using Wayback Machine and downloaded all his stations! Those are needed the fuel!
I am not familiar with the vessels in question. If they come with a dll, it's entirely up to the implementation whether or not it respects any cfg parameters. And ususally they don't, because they just hard-code their properties.

The vessels were all .cfg ships. I went back to his website, using the Wayback Machine, and downloaded all his stations! They needed the fuel. I noticed in a few scenarios the ships have a line, Status = Docked, I'm trying to figure out how to undock them!

Thanks, Guys!

Christopher Tarana
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,615
Reaction score
2,335
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
The vessels were all .cfg ships. I went back to his website, using the Wayback Machine, and downloaded all his stations! They needed the fuel. I noticed in a few scenarios the ships have a line, Status = Docked, I'm trying to figure out how to undock them!

Well, you could undock them in scenario editor...
 

CTarana45

Active member
Joined
Nov 7, 2018
Messages
188
Reaction score
41
Points
28
That type of scenario editor didn't show up until Orbiter 2006! (y) The scenario editor I have is a little more basic! I can add ships or Kill them! The actual file is editor.dll!

Thanks, Urwumpe! :cool:

Christopher Tarana
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,615
Reaction score
2,335
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
That type of scenario editor didn't show up until Orbiter 2006! (y) The scenario editor I have is a little more basic! I can add ships or Kill them! The actual file is editor.dll!

Thanks, Urwumpe! :cool:

Christopher Tarana

Oh, I thought you are updating to something recent.

Otherwise, you could of course manually define a new state vector by clever copy and paste - you play a deltaglider scenario, put it into the orbit you want, quit Orbiter and copy the state vector block from the Deltaglider in "(Current State).scn" into your scenario file.
 

CTarana45

Active member
Joined
Nov 7, 2018
Messages
188
Reaction score
41
Points
28
Oh, I thought you are updating to something recent.

Otherwise, you could of course manually define a new state vector by clever copy and paste - you play a deltaglider scenario, put it into the orbit you want, quit Orbiter and copy the state vector block from the Deltaglider in "(Current State).scn" into your scenario file.
I made a mistake in some the scenarios for the Star Trek Ships. In some scenarios, two ships are in the same spot!
The newer scenario editors From 2006 on are the best!

Thanks, Urwumpe!

Christopher Tarana
 

CTarana45

Active member
Joined
Nov 7, 2018
Messages
188
Reaction score
41
Points
28
I looked over Kulch's Space Tug Docked to the ISS scenario to see why worked!

BEGIN_SHIPS
ISS:ISS
STATUS Orbiting Earth
RPOS 6234910.33 1847409.88 -1729502.58
RVEL 2528.973 -7112.736 1517.424
AROT 30.00 0.00 -40.00
DOCKINFO 1:0,SpaceTug
IDS 0:588 100 1:578 100 2:568 100
XPDR 466
END
SpaceTug:spacetug
STATUS Orbiting Earth
RPOS 6234893.33 1847421.61 -1729509.35
RVEL 2528.973 -7112.736 1517.424
AROT -60.00 50.00 90.00
PRPLEVEL 0:1.000
DOCKINFO 0:1,ISS
NAVFREQ 568 578
XPDR 568
END
END_SHIPS

Kulch is using the DockInfo Command, and I think I'll be editing Roger's scenarios to fix them.

Christopher Tarana
 
Top