
Alloys:

Radioactives:

I'm using the latest Trunk 3388 if you needed to know.

Moderators: winston, another_commander
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
In which case it should say:DaddyHoggy wrote:Should it say "ton" at all - I thought it was agreed that a TC is not a "ton" or Tonne - but a mythical pseudo-measure that takes into account both mass and volume, but deliberately can't be tied back to RL(tm).
Or something like that. It seems to me that the OXP writer wants to give the impression of actual mass processed here, and it is not a bad idea in the case of a mining venture.1 metric ton of alloys extracted filling 1TC
As far as I can see there is no word "true" in ore processor. So I think you have scooped a splinter from an other oxp. Version 1.55 of OP does not generate scoop messages at al. The only scoop messages you see are generated by the system. And that is scooped a 'name'.NorthenderPNE wrote:Well whatever the amount i'm sure it shouldn't use the word 'true' when showing the amount! But what do i know, i just play the game!
So it is ore processor after all. Maybe something in trunk has changed in the way strings are handled. I defined the splinter content in shipData.plist as follow:Illuminaughty wrote:I also got this error, but I'm sorry I can't remember which oxps were causing the conflict, since I already took them out in order to have a smooth running ore processor.
Code: Select all
<key>script_info</key>
<dict>
<key>cargotype</key>
<string>Alloys</string>
<key>message</key>
<string>@1 ton of Alloys extracted</string>
<key>quantity</key>
<integer>1</integer>
</dict>
Code: Select all
var quantity = this.ship.scriptInfo.quantity;
Code: Select all
var quantity = parseInt(this.ship.scriptInfo.quantity);