Just trying to get my head around the markets scripts for this.
Montana05 - thanks for the tip!
Gentlemen,
questions:
First Question:
Should the markets be monitored for legal infringement (dealing in slaves/narcotics/firearms)?
I understand that the HIMSN do not serve as police, but that is quite different to participating in dealing in illegal goods (
especially with part of their funding now coming from GalCop, would would presumably take a dim view of such matters).
Putative "secondary market script":
Code: Select all
{
....
"market_capacity" = 85; // smaller than an entire populated planet
"market_definition" = (
{
// import supplies
"type" = "class";
"name" = "oolite-edible";
"price_multiplier" = 1.05;
"price_randomiser" = 0.05;
"quantity_multiplier" = 0.0;
"capacity" = 30;
},
{
// import shipyard goods
"type" = "class";
"name" = "oolite-machinery";
"price_multiplier" = 1.05;
"price_randomiser" = 0.05;
"quantity_multiplier" = 0.0;
},
{
// alien items
"type" = "class";
"name" = "oolite-alien";
"price_multiplier" = 1.05;
"price_randomiser" = 0.05;
"quantity_multiplier" = 0.0;
"capacity" = 85;
}
{
// sometimes need clothes, but usually have enough already
"type" = "class";
"name" = "oolite-wearable";
"price_multiplier" = 0.8;
"price_randomiser" = 0.4;
"quantity_multiplier" = 0.0;
"capacity" = 7;
},
{
// not really interested
"type" = "default";
"price_multiplier" = 0.55;
"price_randomiser" = 0.25;
"quantity_multiplier" = 0.0;
"capacity" = 5;
}
);
//"no" allows dealing in illegals with impunity - buying firearms and narcotics (for medicine)
"market_monitored" = no;
....
};
Second Question:
How do I get this to work in witch-space?