| Back to Index | Page generated: Nov 24, 2025, 1:21:31 AM |
| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | Adds the very short 'Captain Solo's Good Fortune' book to your ship's library, how he won big playing poker the foolhardy way. | Adds the very short 'Captain Solo's Good Fortune' book to your ship's library, how he won big playing poker the foolhardy way. |
| Identifier | oolite.oxp.captsolo.solos-good-fortune | oolite.oxp.captsolo.solos-good-fortune |
| Title | Captain Solo's Good Fortune | Captain Solo's Good Fortune |
| Category | Equipment | Equipment |
| Author | CaptSolo | CaptSolo |
| Version | 1.05 | 1.05 |
| 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/e/e7/CaptSolos-GoodFortune.oxz | n/a |
| License | CC-BY-SA 3.0 | CC-BY-SA 3.0 |
| File Size | n/a | |
| Upload date | 1610873503 |
Also read http://wiki.alioth.net/index.php/Captain%20Solo's%20Good%20Fortune
| Path | |
|---|---|
| Scripts/captsolo.js | this.author = "CaptSolo";
this.copyright = "� 2011-2014 cim.";
this.licence = "CC-BY-SA 3.0";
this.version = "1.0";
this.name = "Library book: CAPTSOLO";
this.description = "Captain Solo's Good Fortune";
this.startUp = function() {
if (!worldScripts["Ships Library"]) {
log(this.name,"Ships Library OXP is not installed and this OXP requires it.");
return;
}
if (worldScripts["Ships Library"].startUp) {
// force initialisation
worldScripts["Ships Library"].startUp();
}
// first param: unique key for this book
// second param: title
// third param: contents list
worldScripts["Ships Library"]._registerBook("captsolo",expandMissionText("captsolo-title"),this._captsolo());
}
this._captsolo = function()
{
return [
{level: 0, key: "captsolo-frontpage"},
{level: 0, key: "captsolo-goodfortune"}
];
} |