| Back to Index | Page generated: Nov 24, 2025, 1:21:31 AM |
| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | An orange-blue HUD inspired by a certain game. | An orange-blue HUD inspired by a certain game. |
| Identifier | oolite.oxp.zireael.oranged-hud | oolite.oxp.zireael.oranged-hud |
| Title | OrangED HUD | OrangED HUD |
| Category | HUD | HUD |
| Author | ||
| Version | 0.2.0 | 0.2.0 |
| Tags | ||
| 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/a/aa/OrangED_HUD_0.2.0.oxz | n/a |
| License | ||
| File Size | n/a | |
| Upload date | 1692786454 |
Also read http://wiki.alioth.net/index.php/OrangED%20HUD
| Path | |
|---|---|
| Config/script.js | "use strict";
this.name = "OrangED_hud";
this.author = "zireael";
this.copyright = "2015 zireael";
this.license = "CC BY-NC-SA 3.0";
this.startUp = function() {
this.$hudSelector = worldScripts.hudselector;
if(this.$hudSelector)
this.$hudSelector.$HUDSelectorAddHUD("OrangED HUD", this.name);
}
this.startUpComplete = function() {
this.playerBoughtNewShip(player.ship);
}
this.playerBoughtNewShip = function(ship) {
if(!this.$hudSelector && (player.ship.hud === "hud.plist"))
player.ship.hud = this.name + ".plist";
}
|