Altimeter OXP

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: winston, another_commander

Post Reply
User avatar
Wildeblood
---- E L I T E ----
---- E L I T E ----
Posts: 2726
Joined: Sat Jun 11, 2011 6:07 am
Location: Nova Hollandia
Contact:

Altimeter OXP

Post by Wildeblood »

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.

Image
Last edited by Wildeblood on Thu May 16, 2013 2:57 pm, edited 1 time in total.
Make pteridomania great again!
User avatar
JazHaz
---- E L I T E ----
---- E L I T E ----
Posts: 2991
Joined: Tue Sep 22, 2009 11:07 am
Location: Enfield, Middlesex
Contact:

Re: [BETA RELEASE] Altimeter OXP

Post by JazHaz »

Looks great, downloaded.
JazHaz

Gimi wrote:
drew wrote:
£4,500 though! :shock: <Faints>
Cheers,
Drew.
Maybe you could start a Kickstarter Campaign to found your £4500 pledge. 8)
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!
User avatar
Rese249er
---- E L I T E ----
---- E L I T E ----
Posts: 647
Joined: Thu Jun 07, 2012 2:19 pm
Location: Well, I WAS in G3...

Re: [BETA RELEASE] Altimeter OXP

Post by Rese249er »

JazHaz wrote:
Looks great, downloaded.
Agreed on both points.
Got all turned around, lost my nav connection... Where am I now?
User avatar
Cholmondely
Archivist
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:

Re: Altimeter OXP

Post by Cholmondely »

How would I convert this to read out in Cavezzi?
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 5106
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: Altimeter OXP

Post by phkb »

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);
User avatar
Cholmondely
Archivist
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:

Re: Altimeter OXP

Post by Cholmondely »

phkb wrote: Fri May 30, 2025 11:19 pm
change it to this
Thanking thee!
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
Post Reply