Discussion and information relevant to creating special missions, new ships, skins etc.
Moderators: winston , another_commander
Wildeblood
---- E L I T E ----
Posts: 2726 Joined: Sat Jun 11, 2011 6:07 am
Location: Nova Hollandia
Contact:
Post
by Wildeblood » Sun Nov 18, 2012 12:28 pm
Altimeter OXP ver. 1.0
Date: May 16th, 2013
Author: Wildeblood
Altimeter OXP adds a low-altitude digital altimeter to almost any HUD. Great for ground-attack missions! Simply place the Altimeter OXP into your "AddOns" folder. It adds a continually updated altitude display whenever your altitude falls below 4000m.
Download Altimeter OXP here.
Last edited by
Wildeblood on Thu May 16, 2013 2:57 pm, edited 1 time in total.
Make pteridomania great again!
JazHaz
---- E L I T E ----
Posts: 2991 Joined: Tue Sep 22, 2009 11:07 am
Location: Enfield, Middlesex
Contact:
Post
by JazHaz » Sun Nov 18, 2012 1:45 pm
Looks great, downloaded.
JazHaz
Gimi wrote: drew wrote: £4,500 though!
<Faints>
Cheers,
Drew.
Maybe you could start a Kickstarter Campaign to found your £4500 pledge.
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!
Rese249er
---- E L I T E ----
Posts: 647 Joined: Thu Jun 07, 2012 2:19 pm
Location: Well, I WAS in G3...
Post
by Rese249er » Sun Nov 18, 2012 5:45 pm
Got all turned around, lost my nav connection... Where am I now ?
Cholmondely
Archivist
Posts: 6019 Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:
Post
by Cholmondely » Fri May 30, 2025 1:37 am
How would I convert this to read out in Cavezzi?
phkb
Impressively Grand Sub-Admiral
Posts: 5106 Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.
Post
by phkb » Fri May 30, 2025 11:19 pm
Cholmondely wrote: ↑ Fri May 30, 2025 1:37 am
How would I convert this to read out in Cavezzi?
Find this code:
Code: Select all
var altitude = (self.position.distanceTo(this.$planet.position) - this.$planet.radius - self.collisionRadius).toFixed(0);
player.consoleMessage("\n\n\n\n\n\n\n\n\n\n Altitude " + altitude + "m",2);
var vertSpeed = (altitude - this.$altitude) * 2;
if (vertSpeed > 5 || vertSpeed < -5) player.consoleMessage("Vert. Speed " + vertSpeed + "m/s",2);
and change it to this:
Code: Select all
var altitude = ((self.position.distanceTo(this.$planet.position) - this.$planet.radius - self.collisionRadius) / 2.08641).toFixed(0);
player.consoleMessage("\n\n\n\n\n\n\n\n\n\n Altitude " + altitude + "CZ",2);
var vertSpeed = (altitude - this.$altitude) * 2;
if (vertSpeed > 5 || vertSpeed < -5) player.consoleMessage("Vert. Speed " + vertSpeed + "CZ/s",2);
Cholmondely
Archivist
Posts: 6019 Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:
Post
by Cholmondely » Sat May 31, 2025 9:46 pm
phkb wrote: ↑ Fri May 30, 2025 11:19 pm
Thanking thee!