| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion Wanted Posters
 Expansion Wanted Posters| 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 | Ambiance | Ambiance | 
| 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 | 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 | 1610873465 | 
Also read http://wiki.alioth.net/index.php/Wanted%20Posters
| 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");
    }
  }
}
 |