Author Topic: next big question, player arrivals  (Read 2170 times)

0 Members and 1 Guest are viewing this topic.

next big question, player arrivals
ok this is really a 2 part question...

1... is there a way to have a player launch from a hanger bay instead of just being in the map?

and 2... is there a way to have a player emerge from hyperspace before the mission allows me to take control?

 

Offline blowfish

  • 211
  • Join the cult of KILL MY ROUTER!!!!!!!!!!1
Re: next big question, player arrivals
1) Place the player's ship in the hanger (no, there's no other way)

2) You can't actually make the player emerge from subspace, but you can lock the player's controls (player-use-ai), and use cutscene sexps to show another ship warping in (then just have it vanish, and restore the player's control).

 
Re: next big question, player arrivals
well hrmph. ok no biggy, now can you have a player depart to a hanger instead of hyperspace?

 

Offline blowfish

  • 211
  • Join the cult of KILL MY ROUTER!!!!!!!!!!1
Re: next big question, player arrivals
Yes.  Like this:

Code: [Select]
( when
   ( <
      ( distance-ship-subsystem
         "Alpha 1"
         "MyBigShip"
         "fighterbay"
      )
      300
   )
   ( end-mission )

Note: You may have to adjust the distance.  And be sure to make it chained, just like a normal RTB directive.

 
Re: next big question, player arrivals
how do you make a chained event?

 

Offline Snail

  • SC 5
  • 214
  • Posts: ☂
Re: next big question, player arrivals
1) Place the player's ship in the hanger (no, there's no other way)
Unless I'm misunderstanding someone's post, why can't you just do this?

It works perfectly fine for me...

[attachment deleted by admin]

 

Offline blowfish

  • 211
  • Join the cult of KILL MY ROUTER!!!!!!!!!!1
Re: next big question, player arrivals
Well, then, you can do that.  I don't have much experience with FRED, so listen to Snail.

 

Offline Droid803

  • Trusted poster of legit stuff
  • 213
  • /人 ◕ ‿‿ ◕ 人\ Do you want to be a Magical Girl?
    • Skype
    • Steam
Re: next big question, player arrivals
You can set arrival cue for the player wing to be a hangar. it works (and snail, that's the wrong screenshot. you can't set arrival cues nor waves on player wings).
Well, at least on the version of FRED I have.
(´・ω・`)
=============================================================

 

Offline Snail

  • SC 5
  • 214
  • Posts: ☂
Re: next big question, player arrivals
Well, then, you can do that.  I don't have much experience with FRED, so listen to Snail.
Oh, yeah, you're on a Mac, right?

Well, anyhow, that should work for making the player arrive inside the hangarbay. Though it doesn't always give the best results. Sometimes wingmen smash into you and you go around bouncing around the walls of the hangar until you die.

(and snail, that's the wrong screenshot. you can't set arrival cues nor waves on player wings).
Well, at least on the version of FRED I have.
I had that screenshot lying around. Instead of taking a new one I just grabbed it. That's why there's that random name (Cyaegha) in there.

 
Re: next big question, player arrivals
As for the "landing", in the campaign I`m making every mission starts end ends in a fighter bay, and the best way to do this is to create a normal RTB event, but instead of jumping into subspace, create a waypoint in the middle of a fighter bay, and end the mission, when the player is approx. 50 meters from it. I also added that the player ship must stop to end mission.
And as for the "takeoffs" you can also disable the engines of a player`s fighter and then fix them, when player presses some button (like: \ in my campaign).
no.one

  

Offline blowfish

  • 211
  • Join the cult of KILL MY ROUTER!!!!!!!!!!1
Re: next big question, player arrivals
You don't need a waypoint.  You can just test the player ship's distance to the larger ship's fighter bay subsystem, as I demonstrated earlier.  This also allows you to move the big ship around without worrying about the waypoint.

 

Offline Droid803

  • Trusted poster of legit stuff
  • 213
  • /人 ◕ ‿‿ ◕ 人\ Do you want to be a Magical Girl?
    • Skype
    • Steam
Re: next big question, player arrivals
You don't need a waypoint.  You can just test the player ship's distance to the larger ship's fighter bay subsystem, as I demonstrated earlier.  This also allows you to move the big ship around without worrying about the waypoint.

Yup. I use that for all mission that require landing, as do many other custom campaigns.
(´・ω・`)
=============================================================

 
Re: next big question, player arrivals
thats awesome guys. I really appreciate your help =)