Ship names and origins

General discussion for players of Oolite.

Moderators: winston, another_commander

User avatar
Yah-Ta-Hey
---- E L I T E ----
---- E L I T E ----
Posts: 333
Joined: Thu Feb 24, 2011 2:31 am
Location: Traversing new opportunities in space

Re: Ship names and origins

Post by Yah-Ta-Hey »

Thargoid and wildeblood: I remember the ship introducing itself but if it gave a name,,, I sure don't remember it. Where would I find this name? should be in the plist?.... I only found 1 thing in there and it was "ship name: VORTEX".
Thanks for bringing this up.
Bartle tester says while I am drinking evil juice, I am: 80% killer/ 80 % achiever/ 33% explorer and 0% socializer.
User avatar
Wildeblood
---- E L I T E ----
---- E L I T E ----
Posts: 2415
Joined: Sat Jun 11, 2011 6:07 am
Location: Western Australia
Contact:

Re: Ship names and origins

Post by Wildeblood »

Yah-Ta-Hey wrote:
Thargoid and wildeblood: I remember the ship introducing itself but if it gave a name,,, I sure don't remember it. Where would I find this name? should be in the plist?
No, in the scripts. There is a random name generator...

Code: Select all

	this.name1 = ["Heart", "Soul", "Mind", "Keeper", "Seeker", "Bringer", "Master", "Spirit", "Power", "Shadow", "Reflection", "Glory"];
	this.name2 = ["Darkness", "Light", "Fire", "Joy", "War", "Fortune", "Ice", "Life", "Battle", "Midnight"];
...	
	this.shipTitle = "Vortex - " + this.name1[this.random1] + " of " + this.name2[this.random2];

Check it out! Some possibilities are really cool, like "Spirit of Midnight" or "Heart of Fire", and some are less cool, like "Keeper of Darkness" or "Soul of Ice". I don't think you ever see this name again after you acquire the ship. It's not stuffed into a mission variable is it, Thargoid?

(If I had written that namegen I would have put Glory in the second list and Fire in the first list.)
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: Ship names and origins

Post by RyanHoots »

The Lynx of Destruction just got a new paint job- I thought the old baby blue one was bad. Thanks to Smivs' Texture Tutorial on the Wiki, I was able to make a better texture.
Old:
Image
New:
Image
Image
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: Ship names and origins

Post by RyanHoots »

Wildeblood wrote:
Yah-Ta-Hey wrote:
Thargoid and wildeblood: I remember the ship introducing itself but if it gave a name,,, I sure don't remember it. Where would I find this name? should be in the plist?
No, in the scripts. There is a random name generator...

Code: Select all

	this.name1 = ["Heart", "Soul", "Mind", "Keeper", "Seeker", "Bringer", "Master", "Spirit", "Power", "Shadow", "Reflection", "Glory"];
	this.name2 = ["Darkness", "Light", "Fire", "Joy", "War", "Fortune", "Ice", "Life", "Battle", "Midnight"];
...	
	this.shipTitle = "Vortex - " + this.name1[this.random1] + " of " + this.name2[this.random2];

Check it out! Some possibilities are really cool, like "Spirit of Midnight" or "Heart of Fire", and some are less cool, like "Keeper of Darkness" or "Soul of Ice". I don't think you ever see this name again after you acquire the ship. It's not stuffed into a mission variable is it, Thargoid?

(If I had written that namegen I would have put Glory in the second list and Fire in the first list.)
What about "Shadow of Light"? :lol: It is a possibility, according to the above code.
Image
User avatar
CommonSenseOTB
---- E L I T E ----
---- E L I T E ----
Posts: 1397
Joined: Wed May 04, 2011 10:42 am
Location: Saskatchewan, Canada

Re: Ship names and origins

Post by CommonSenseOTB »

Thargoid wrote:
The Vortex should have introduced itself when you first teamed up with it. They all have individual names.

Some even have genuine people personalities, as Wildeblood found ;)
Marvin...got this pain in the diodes down one side and god I'm so depressed. Here's another one of those god awful doors. :lol:
Take an idea from one person and twist or modify it in a different way as a return suggestion so another person can see a part of it that can apply to the oxp they are working on.


CommonSense 'Outside-the-Box' Design Studios Ltd.
WIKI+OXPs
User avatar
Wildeblood
---- E L I T E ----
---- E L I T E ----
Posts: 2415
Joined: Sat Jun 11, 2011 6:07 am
Location: Western Australia
Contact:

Re: Ship names and origins

Post by Wildeblood »

I have a huge soft spot for random text-gens, because the only javascript I ever successfully made was a story-telling text-gen. Let me try: :twisted:

Code: Select all

this.name1 = ["Frightener", "Scarer", "Teaser", "Tripper", "Terrorizer", "Terror", "Horrifier", "Horror", "Avenger", "Solace", "Demoralizer"];
this.name2 = ["Children", "Girls", "the Elderly", "Pussycats", "Little Girls", "Little Boys", "Civilians", "Thargoids", "the Space Lanes", "the Night", "Scaredy Cats"];
There you go: 121 (11 * 11) possibilities and not a single turkey among them. :mrgreen:
User avatar
Smivs
Retired Assassin
Retired Assassin
Posts: 8408
Joined: Tue Feb 09, 2010 11:31 am
Location: Lost in space
Contact:

Re: Ship names and origins

Post by Smivs »

Wildeblood wrote:
I have a huge soft spot for random text-gens, because the only javascript I ever successfully made was a story-telling text-gen. Let me try: :twisted:

Code: Select all

this.name1 = ["Frightener", "Scarer", "Teaser", "Tripper", "Terrorizer", "Terror", "Horrifier", "Horror", "Avenger", "Solace", "Demoralizer"];
this.name2 = ["Children", "Girls", "the Elderly", "Pussycats", "Little Girls", "Little Boys", "Civilians", "Thargoids", "the Space Lanes", "the Night", "Scaredy Cats"];
There you go: 121 (11 * 11) possibilities and not a single turkey among them. :mrgreen:
I don't know, would you really want to be a "Demoralizer of Little Girls" ? :shock:
Commander Smivs, the friendliest Gourd this side of Riedquat.
User avatar
Wildeblood
---- E L I T E ----
---- E L I T E ----
Posts: 2415
Joined: Sat Jun 11, 2011 6:07 am
Location: Western Australia
Contact:

Re: Ship names and origins

Post by Wildeblood »

Smivs wrote:
I don't know, would you really want to be a "Demoralizer of Little Girls" ? :shock:
I thought I was being a "Teaser of Thargoids". I hope he's got a sense of humour.

(My own favourite was "Solace of Scaredy Cats" which I thought could be appropriate for a "personal base".)
Ganelon
---- E L I T E ----
---- E L I T E ----
Posts: 534
Joined: Fri Jul 02, 2010 11:45 am
Location: Around Rabiarce or Lasoce

Re: Ship names and origins

Post by Ganelon »

I think this topic and some of the replies does seem to indicate that a significant number of players think of their ship as having a name, whether they go so far as to edit the files to actually get the name to display or not. Maybe it's something that might be considered as an option in either the base code or OXP developments. Unlike most changes, I doubt there's much cause for concern as to it upsetting game balance. There could maybe be options for putting in a really cool name if you have one in mind, or some sort of random generation if you'd rather or maybe just really aren't good at coming up with names.

There could even maybe be a nominal fee to "re-christen" a ship if you bought one with an unpleasant or ridiculous sounding name from the shipyard.

It's not of huge importance or anything having much to do with gameplay, but I think it could be a desirable item for many players as part of immersion factor. Right now, the only way to get it is to do some minor file hacking.
Sleep? Who needs sleep? Got game. No need sleep.
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8515
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Re: Ship names and origins

Post by DaddyHoggy »

Ganelon wrote:
I think this topic and some of the replies does seem to indicate that a significant number of players think of their ship as having a name, whether they go so far as to edit the files to actually get the name to display or not. Maybe it's something that might be considered as an option in either the base code or OXP developments. Unlike most changes, I doubt there's much cause for concern as to it upsetting game balance. There could maybe be options for putting in a really cool name if you have one in mind, or some sort of random generation if you'd rather or maybe just really aren't good at coming up with names.

There could even maybe be a nominal fee to "re-christen" a ship if you bought one with an unpleasant or ridiculous sounding name from the shipyard.

It's not of huge importance or anything having much to do with gameplay, but I think it could be a desirable item for many players as part of immersion factor. Right now, the only way to get it is to do some minor file hacking.
I like the idea of a named ship and the option for named NPCs - as you say - no impact on gameplay - huge impact on immersion!

I love the concept of a re-Christening fee:
Galactic Cooperative ship renaming application

Administration Charge: 4Cr
Repaint (required if ship currently carries visible identification): 2Cr
Docking Bay Renaming Ceremony (optional): 8Cr
Includes - Local Sparkling wine, swing arm hire, ribbon, clean-up of broken glass

Optional Additional Costs for Docking Bay Ceremony:
Hire of local planetary celebrity to perform ceremony: Negotiable (min. 100Cr)
Hire of nearest "Rooters Top 100 Most Influential Celebrities" to attend: Negotiable (min. 1000Cr, transport to location and accommodation extra)
Use of real Old Earth Champagne: min. 10000Cr (does not include shipping or insurance)
Now what would be really cool... ship name generates Decal, decal gets applied to ship (own or NPC).
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
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: Ship names and origins

Post by Cody »

DaddyHoggy wrote:
I like the idea of a named ship and the option for named NPCs - as you say - no impact on gameplay - huge impact on immersion!
Absolutely right!
DaddyHoggy wrote:
Now what would be really cool... ship name generates Decal, decal gets applied to ship (own or NPC).
At least I already have my ship's name on one of its decals.
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
Wildeblood
---- E L I T E ----
---- E L I T E ----
Posts: 2415
Joined: Sat Jun 11, 2011 6:07 am
Location: Western Australia
Contact:

Re: Ship names and origins

Post by Wildeblood »

I think NPC traders with escorts would benefit from names, Strelkas and Anacondas particularly. The small ships flitting about - who cares what they're called. But when you see an Anaconda with six Cobras - or a Strelka with four Deltas - flying in formation, that looks like a ship that should have a name.
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: Ship names and origins

Post by RyanHoots »

An OXP to change your ship's name would be great, no more file hacking involved, so even first time players who have no idea what an OXP is can have a custom name. What if when you start a new game, the OXP triggered and you choose a name, for free of course, and go though the ceremony, then start gameplay for the first time. Awesome!
Image
User avatar
CommonSenseOTB
---- E L I T E ----
---- E L I T E ----
Posts: 1397
Joined: Wed May 04, 2011 10:42 am
Location: Saskatchewan, Canada

Re: Ship names and origins

Post by CommonSenseOTB »

That would be really funny if you were going to buy a ship and the name really sucked but to change it would cost a new registration that was made when the ship originally came from the factory. Probably a lot of money up front and maybe it would cause a mission that simulates all the paperwork and beurocracy and might take a game month or 2 before all the t's are crossed and the i's are dotted. After that you will swear that if you don't like the name you won't buy the ship. :lol:

What, too realistic then?
Take an idea from one person and twist or modify it in a different way as a return suggestion so another person can see a part of it that can apply to the oxp they are working on.


CommonSense 'Outside-the-Box' Design Studios Ltd.
WIKI+OXPs
User avatar
Cmdr Wyvern
---- E L I T E ----
---- E L I T E ----
Posts: 1649
Joined: Tue Apr 11, 2006 1:47 am
Location: Somewhere in the great starry void

Re: Ship names and origins

Post by Cmdr Wyvern »

Wildeblood wrote:
I think NPC traders with escorts would benefit from names, Strelkas and Anacondas particularly. The small ships flitting about - who cares what they're called. But when you see an Anaconda with six Cobras - or a Strelka with four Deltas - flying in formation, that looks like a ship that should have a name.
Those small ships are usually rigged for hard combat, and used like the warriors of old used swords. The knights of old named their swords, so what's wrong with naming a ship you'd use as a weapon?

Pirates probably don't bother, but they're dishonorable knaves anyway. :)
Running Oolite buttery smooth & rock stable w/ tons of eyecandy oxps on:
ASUS Prime X370-A
Ryzen 5 1500X
16GB DDR4 3200MHZ
128GB NVMe M.2 SSD (Boot drive)
1TB Hybrid HDD (For software and games)
EVGA GTX-1070 SC
1080P Samsung large screen monitor
Post Reply