Does anyone know how to replace all stations with Dodec

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: winston, another_commander

Post Reply

What is your favorit type of main station?

Coriolis
2
40%
Icosahedron
0
No votes
Dodecahedron
3
60%
 
Total votes: 5

User avatar
RyanHoots
---- E L I T E ----
---- E L I T E ----
Posts: 958
Joined: Fri May 20, 2011 8:10 pm
Location: Nowhere
Contact:

Does anyone know how to replace all stations with Dodec

Post by RyanHoots »

I would like to write an OXP that makes all main stations Dodecs. I such an OXP would involve the planetinfo.plist file, right? I think Dodecahedron stations are cooler then Coriolis or Icosahedron stations. Thanks,
Image
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8515
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by DaddyHoggy »

But the station types are related to Tech level, estimated trade and GDP of the planet - old Coriolis stations at the poorer smaller systems, Dodecs and Isos at the bigger, richer, more advanced systems.

Why on earth would you want bland uniformity? (Especially given how cool some of the Coriolis station textures are) - and it would also make the finale of Cataclysm stick out like a sore thumb...

And my favourite "Main Station" is the Trader Station - a downgraded (read less advertising) version of the Constore.
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
User avatar
RyanHoots
---- E L I T E ----
---- E L I T E ----
Posts: 958
Joined: Fri May 20, 2011 8:10 pm
Location: Nowhere
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by RyanHoots »

DaddyHoggy wrote:
But the station types are related to Tech level, estimated trade and GDP of the planet - old Coriolis stations at the poorer smaller systems, Dodecs and Isos at the bigger, richer, more advanced systems.

Why on earth would you want bland uniformity? (Especially given how cool some of the Coriolis station textures are) - and it would also make the finale of Cataclysm stick out like a sore thumb...

And my favourite "Main Station" is the Trader Station - a downgraded (read less advertising) version of the Constore.
So every planet would need a high tech level. No fun. I see what you mean about bland uniformity, never thought about that.
Image
Switeck
---- E L I T E ----
---- E L I T E ----
Posts: 2411
Joined: Mon May 31, 2010 11:11 pm

Re: Does anyone know how to replace all stations with Dodec

Post by Switeck »

My favorite station is the SuperHub -- it's so large you can dock while something is coming out and not need to worry about ramming each other. You can also dock from 2 different sides.
User avatar
RyanHoots
---- E L I T E ----
---- E L I T E ----
Posts: 958
Joined: Fri May 20, 2011 8:10 pm
Location: Nowhere
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by RyanHoots »

Switeck wrote:
My favorite station is the SuperHub -- it's so large you can dock while something is coming out and not need to worry about ramming each other. You can also dock from 2 different sides.
Cool!
Image
User avatar
Cody
Sharp Shooter Spam Assassin
Sharp Shooter Spam Assassin
Posts: 16081
Joined: Sat Jul 04, 2009 9:31 pm
Location: The Lizard's Claw
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by Cody »

The Torus station is pretty cool as well.
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8515
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by DaddyHoggy »

RyanHoots wrote:
DaddyHoggy wrote:
But the station types are related to Tech level, estimated trade and GDP of the planet - old Coriolis stations at the poorer smaller systems, Dodecs and Isos at the bigger, richer, more advanced systems.

Why on earth would you want bland uniformity? (Especially given how cool some of the Coriolis station textures are) - and it would also make the finale of Cataclysm stick out like a sore thumb...

And my favourite "Main Station" is the Trader Station - a downgraded (read less advertising) version of the Constore.
So every planet would need a high tech level. No fun. I see what you mean about bland uniformity, never thought about that.
Well no, not quite, but you'd have to change the plist for every system that didn't already have a dodec as its main station. I'm sure some of the zen masters of Oolite could explain how Oolite determines which systems have which stations. I'm just saying that some things in Oolite are like they are for a reason - and knowing visually that you're docking with a rich, high tech system because it has an Iso gives me a nice immersive glow...
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
User avatar
JensAyton
Grand Admiral Emeritus
Grand Admiral Emeritus
Posts: 6657
Joined: Sat Apr 02, 2005 2:43 pm
Location: Sweden
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by JensAyton »

The easiest way would be a shipdata.plist along these lines:

Code: Select all

{
    // Clone dodo station with “coriolis” role.
    "ryanhoots–dodo" =
    {
        like_ship = "dodecahedron-station";
        roles = "coriolis station";
    };
}
and a shipdata-overrides.plist like this:

Code: Select all

{
    // Disable standard Coriolis.
    "coriolis-station" =
    {
        roles = "unused";
    };
}
User avatar
RyanHoots
---- E L I T E ----
---- E L I T E ----
Posts: 958
Joined: Fri May 20, 2011 8:10 pm
Location: Nowhere
Contact:

Re: Does anyone know how to replace all stations with Dodec

Post by RyanHoots »

Ahruman wrote:
The easiest way would be a shipdata.plist along these lines:

Code: Select all

{
    // Clone dodo station with “coriolis” role.
    "ryanhoots–dodo" =
    {
        like_ship = "dodecahedron-station";
        roles = "coriolis station";
    };
}
and a shipdata-overrides.plist like this:

Code: Select all

{
    // Disable standard Coriolis.
    "coriolis-station" =
    {
        roles = "unused";
    };
}
Thanks
Image
Post Reply