"We hope you enjoyed Lave station Commander Jameson"
Moderators: winston, another_commander
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
"We hope you enjoyed Lave station Commander Jameson"
Which OXP is this consoleMessage from? I noticed that it isn't only displayed when I leave the main station, but any station in Lave, which doesn't make much sense.
Re: "We hope you enjoyed Lave station Commander Jameson"
Could be Famous Planets, but if I remember right there was a check for the distance to system main station.Commander McLane wrote:Which OXP is this consoleMessage from? I noticed that it isn't only displayed when I leave the main station, but any station in Lave, which doesn't make much sense.
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
Re: "We hope you enjoyed Lave station Commander Jameson"
Yeah, I found it:
No distance check.
Suggestion:
Note also the added punctuation in the consoleMessage.
Code: Select all
this.shipLaunchedFromStation = function()
{
if(this.fpCheck(system.ID) && system.mainStation) // if player launched from the main station in a FP system.
{
if(this.extraA) {player.consoleMessage("We hope you enjoyed " + system.name + " station Commander " + player.name) }; // display launch message
...
system.mainStation
only checks if the system has a main station (every system has one, so it will always be true), not if the player launched from it.Suggestion:
Code: Select all
this.shipLaunchedFromStation = function(station)
{
if(this.fpCheck(system.ID) && station.isMainStation) // if player launched from the main station in a FP system.
{
if(this.extraA) {player.consoleMessage("We hope you enjoyed " + system.name + " station, Commander " + player.name + ".") }; // display launch message
...
- JensAyton
- Grand Admiral Emeritus
- Posts: 6657
- Joined: Sat Apr 02, 2005 2:43 pm
- Location: Sweden
- Contact:
Re: "We hope you enjoyed Lave station Commander Jameson"
It’s now possible to launch from a carrier/station in interstellar space, so it won’t always be true.Commander McLane wrote:(every system has one, so it will always be true)
E-mail: [email protected]
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
Re: "We hope you enjoyed Lave station Commander Jameson"
Which means that with the current script the player won't be welcomed in an FP system, if he isn't in any system at all. This—at least—works as expected.Ahruman wrote:It’s now possible to launch from a carrier/station in interstellar space, so it won’t always be true.Commander McLane wrote:(every system has one, so it will always be true)