Back to Index |
Page generated: May 20, 2025, 8:06:20 AM |
Expansion ETT Homing Beacon
Content
Manifest
|
from Expansion Manager's OXP list |
from Expansion Manifest |
Description |
Marks a position in space by deploying a pylon-mounted beacon. |
Marks a position in space by deploying a pylon-mounted beacon. |
Identifier |
oolite.oxp.Lone_Wolf.ETTHomingBeacon |
oolite.oxp.Lone_Wolf.ETTHomingBeacon |
Title |
ETT Homing Beacon |
ETT Homing Beacon |
Category |
Equipment |
Equipment |
Author |
Lone Wolf, Twisted |
Lone Wolf, Twisted |
Version |
1.02 |
1.02 |
Tags |
|
|
Required Oolite Version |
|
|
Maximum Oolite Version |
|
|
Required Expansions |
|
|
Optional Expansions |
|
|
Conflict Expansions |
|
|
Information URL |
http://wiki.alioth.net/index.php/ETT_Homing_Beacon |
n/a |
Download URL |
https://wiki.alioth.net/img_auth.php/4/47/ETT_Homing_Beacon_1.02.oxz |
n/a |
License |
CC BY-NC-SA 2 |
CC BY-NC-SA 2 |
File Size |
n/a |
Upload date |
1610873289 |
Documentation
Also read http://wiki.alioth.net/index.php/ETT%20Homing%20Beacon
ettBeaconLauncher Readme & License.txt
EttBeaconLauncher 1.02.oxp
Author and Contributors:
Author : Aaron Pile aka Twisted
Maintainer : Lone_Wolf
Hud Icons : Eldon
Flashers : Commander McLane
Note : you can contact the above persons through the Oolite Bulletin board, http://aegidian.org/bb/
Developed for:
Oolite v1.75.x and later
Note : all
Installation:
Unzip the file until you have the EttBeaconLauncher x.xx.oxp directory.
Copy the oxp directory to a folder called AddOns in the same folder as the Oolite application.
Description:
Contains a scoopable re-deployable homing beacon. (Tech level 10)
Also contains a missile delivery package for above beacon for increased deployment accuracy. (Tech level 12)
Licence:
This work is licensed under a Creative Commons License:
http://creativecommons.org/licenses/by-nc-sa/2.0/
You are free:
• to copy, distribute, display, and perform the work
• to make derivative works
Under the following conditions:
• Attribution. You must give the original author credit.
• Noncommercial. You may not use this work for commercial purposes.
• Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one.
For any reuse or distribution, you must make clear to others the license terms of this work.
Any of these conditions can be waived if you get permission from the copyright holder.
Your fair use and other rights are in no way affected by the above.
version history
1.01 adaptated for 1.75.x by Lone_Wolf
1.02 - converted to OpenStep and Javascritp
- Hud icons added
- flashers corrected
Equipment
Ships
Models
This expansion declares no models.
Scripts
Path |
Scripts/ettHomingBeacon.js |
this.name = "ett Homing Beacon"
this.author = "Lone_Wolf"
this.copyright = "(C) 2011 Lone_Wolf."
this.licence = "CC-NC-by-SA 2.0"
this.description = "Homing Beacon script, triggered when scooped";
this.version = "1.02"
this.shipWasScooped = function(scooper)
{
if (scooper.isPlayer)
{
if (player.ship.equipmentStatus("EQ_BEACONLAUNCHER_MINE") !== "EQUIPMENT_OK")
{
player.ship.awardEquipment("EQ_BEACONLAUNCHER_MINE")
}
else
{
player.ship.manifest.gold += 25
}
}
} |