montana05 wrote: ↑Sat Jun 04, 2022 9:35 am
It is actually just copy & paste:
..
Same world-script, just one function more.
phkb wrote: ↑Sat Jun 04, 2022 9:57 am
So I'm into it, trying real hard.
This is the file missionary_populator.js in its entirety:
Code: Select all
"use strict";
this.name = "missionary_populator";
this.author = "Paul Wilkins, updated by Eric Walch, spara, modified by phkb, montana";
this.copyright = "(C) 2009 Paul Wilkins";
this.license = "CC BY-NC-SA 3.0";
//add missionary to system
this.systemWillPopulate = function ()
{
if (Math.floor(Math.random() > 0.10) // 90% chance
{
system.setPopulator("missionary_ship",
{
callback: function(pos)
{
system.addShips("missionary", worldScripts["missionary_populator.js"].$getRndInteger(1, 3), pos); // spawns 1 - 3 ships with role missionary
}.bind(this),
location: "LANE_WP",
locationSeed: 0
// 0 = completely random position on the lane, otherwise use a specific seed number to have them in the same position each time
});
}
}
this.$getRndInteger = function(min, max)
{
return (Math.floor(Math.random() * (max - min + 1) ) + min);
};
There is also a world-scripts.plist file in the Config that names only this file.. I've tried with a few versions of where the code you gave me had "myWorldScriptName", I assumed I needed to change to the used filename, along with the role to accommodate my shipdata.
But the log gives this response:
Code: Select all
16:02:52.164 [script.javaScript.exception.parenAfterCond]: ***** JavaScript exception (missionary_populator.js.anon-script): SyntaxError: missing ) after condition
16:02:52.164 [script.javaScript.load.failed]: ***** Error loading JavaScript script /Users/murgh/Library/Application Support/Oolite/AddOns/IronAssMissionaries_b1.oxp/Scripts/missionary_populator.js -- compilation failed
16:02:52.164 [script.load.notFound]: ***** ERROR: Could not find script file missionary_populator.js..
Did I manage to screw up a cut&paste or do you see a parenthesis-shaped hole, or is it something else?
Sorry to be so blank about this.