Back to Index Page generated: Jun 13, 2026, 7:54:52 PM

Expansion Wanted Posters

Content

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description An add-on for Station Ads, Market Ads and YAH adding Wanted Posters of infamous villains to the mix. An add-on for Station Ads, Market Ads and YAH adding Wanted Posters of infamous villains to the mix.
Identifier oolite.oxp.blackwolf.wanted_posters oolite.oxp.blackwolf.wanted_posters
Title Wanted Posters Wanted Posters
Category Ambience Ambience
Author BlackWolf, spara BlackWolf, spara
Version 1.0.1 1.0.1
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL https://wiki.alioth.net/index.php/Wanted_Posters n/a
Download URL https://wiki.alioth.net/img_auth.php/c/c5/Wanted_posters_1.0.1.oxz n/a
License CC-BY-NC-SA 4.0 CC-BY-NC-SA 4.0
File Size n/a
Upload date 1778111332

Relationships Diagram

Documentation

Also read http://wiki.alioth.net/index.php/Wanted%20Posters

Equipment

This expansion declares no equipment.

Ships

This expansion declares no ships.

Models

This expansion declares no models.

Scripts

Path
Scripts/wanted_market_ads.js
"use strict";

this.name        = "wanted_market_observer"; 
this.author      = "spara";
this.description = "Wanted Posters for MarketObserver";

this.startUp = function() {
  var ws = worldScripts["market_ads_service"];
  if (ws) {
    for (var i = 1; i <= 22; i++) {
      ws._setHorzAd("wanted_posters_horz_" + i + ".png");
    }
  }
}
Scripts/wanted_station_ads.js
"use strict";

this.name        = "wanted_station_ads"; 
this.author      = "spara";
this.description = "Wanted Posters for Station Ads";

this.startUp = function() {
  var ws = worldScripts["station_ads"];
  if (ws) {
    for (var i = 1; i <= 22; i++) {
      ws._setHorzAd("wanted_posters_horz_" + i + ".png");
    }
  }
}
Scripts/wanted_yah.js
"use strict";

this.name        = "wanted_yah"; 
this.author      = "spara";
this.description = "Wanted Posters for YAH";

this.startUp = function() {
  var ws = worldScripts["yah_ad_service"];
  if (ws) {
    for (var i = 1; i <= 11; i++) {
      ws._setAd("wanted_posters_yah_" + i + ".png");
    }
  }
}