Back to Index Page generated: May 8, 2024, 6:16:03 AM

Expansion Wanted Posters

Content

Warnings

  1. Information URL mismatch between OXP Manifest and Expansion Manager string length at character position 0

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 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

Documentation

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

Equipment

This expansion declares no equipment. This may be related to warnings.

Ships

This expansion declares no ships. This may be related to warnings.

Models

This expansion declares no models. This may be related to warnings.

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");
    }
  }
}