Outpost Universe Forums

Projects & Development => Outpost 2 Programming & Development => Topic started by: Flashy on April 26, 2010, 12:22:50 PM

Title: Creating A Satellite
Post by: Flashy on April 26, 2010, 12:22:50 PM
How can i create a satellite for a player? For example the EDWARD satellite?
Title: Creating A Satellite
Post by: Sirbomber on April 26, 2010, 12:49:24 PM
Assuming you mean "have the player start with" then you can't unfortunately.  You'll have to give them a Spaceport, a SULV, and the satellite you want them to have.  The only space-related things you can set at star-up is number of Solar Satellites (and maybe RLVs...?).
Title: Creating A Satellite
Post by: Flashy on April 26, 2010, 12:58:14 PM
And how can I set the number of solar satellites?
Title: Creating A Satellite
Post by: Sirbomber on April 26, 2010, 01:00:50 PM
Code: [Select]
Player[X].SetSolarSat(number of Solar Satellites you want);
Oh, and I was wrong about the RLVs.  It's GetRLV(), not SetRLV().
Title: Creating A Satellite
Post by: Flashy on April 26, 2010, 02:10:02 PM
Thanks.