| Back to Index | Page generated: Apr 20, 2026, 4:52:50 AM |
| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | Do not download this. This is a component for use by HUD expansion packs, it is NOT a stand-alone expansion pack; it will be downloaded automatically by HUDs which need it. | Do not download this. This is a component for use by HUD expansion packs, it is NOT a stand-alone expansion pack; it will be downloaded automatically by HUDs which need it. |
| Identifier | oolite.hud.data.Wildeblood.ShipName | oolite.hud.data.Wildeblood.ShipName |
| Title | Data source, Ship Name | Data source, Ship Name |
| Category | HUDs | HUDs |
| Author | Wildeblood | Wildeblood |
| Version | 1.1 | 1.1 |
| Tags | data_source | data_source |
| Required Oolite Version | ||
| Maximum Oolite Version | ||
| Required Expansions | ||
| Optional Expansions | ||
| Conflict Expansions | ||
| Information URL | n/a | |
| Download URL | https://wiki.alioth.net/img_auth.php/7/72/HUDDataShipName.oxz | ShipName.oxz |
| License | Public domain. | Public domain. |
| File Size | n/a | |
| Upload date | 1774617161 |
| Path | |
|---|---|
| Config/script.js | "use strict";
this.license = "Public domain.";
this.author = "Wildeblood";
this.name = "HUD Data Source: Ship Name";
this.version = "1.1"; // March 27th, 2026
this.shipWillLaunchFromStation = function () {
var self = player.ship;
self.setCustomHUDDial("playerShipName", self.shipUniqueName);
self.setCustomHUDDial("playerShipClass", self.shipClassName.toUpperCase());
}
|