(Beta) Mining Contracts

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: another_commander, winston

diagoras
Competent
Competent
Posts: 55
Joined: Fri Oct 02, 2015 12:37 pm

(Beta) Mining Contracts

Post by diagoras »

After discussion in this thread about Start Choices I want to present you first raw draft of new expansion pack - Mining Contracts. My goal was to make "Miner" starting choice little less hardcore while providing new kind of activity.

This expansion adds new interface to Rock Hermit stations. In this interface numerous mining corporations are offering you to gather fixed amount of minerals or alloys for them before deadline. Prices they are paying are proportional to tightness of schedule, but always below market. Be aware that if you are not working hard enough, penalties for not meeting contract terms in time can make you in debt to employer instead of receiving reward.

What is an advantage of taking mining contracts instead of selling on market? Very simple - usually there is a lot of contracts open for signing. This way you can dump way more minerals or alloys then very shallow market of Rock Hermits can bear.

Update: Have found severe bug in save-load mechanism, do not rewrite your important saves.
Update: Fixed save/load bug, v1.1 now
Update: Added tracking of cargo amounts required to complete signed contracts to the Missions screen (F5F5), v1.2 now
Update: Added compatibility with Asteroid Tweaks by spara, v1.3 now
Update: Iceteroids are not required now (thanks to Diziet Sma) and contracts for alloys made less frequent, v1.4
Update: Various improvements in interface, added possibility of waiting at the station for new contract, slightly adjusted balance, v1.5
Update: Waiting at the station for new contracts is not free now, v1.6
Update: Signing mining contract now adds Rock Hermit to your Advanced Space Compass, also some balance adjustments, v1.7
Update: Mining Beacon Descrambler addon to ASC is now purchasable at all Rock Hermits for clean commanders, v1.8
Update: Shrinked contract details screen for smaller resolutions and some balance adjustments, v1.9
Update: Obscure race condition bug in waiting for new contract squashed, also balance adjustments, v1.10
Update: Bugfix release - docking with rock hermits after witchjump do not invalidates descrambilng keys anymore, v1.11
Update: Made average contract difficulty dependent on system government type, also chaotic rock hermits are giving contracts too now, v1.12

Download link - http://bitbucket.org/diagoras/oolite/do ... s_1.12.oxz

PS I'm not sure I will be devoting much time into future support and development of this expansion, so project is open for early adoption.
Last edited by diagoras on Tue Nov 10, 2015 11:40 pm, edited 15 times in total.
UK_Eliter
---- E L I T E ----
---- E L I T E ----
Posts: 1244
Joined: Sat Sep 12, 2009 11:58 pm
Location: Essex (mainly industrial and occasionally anarchic)

Re: (Beta) Mining Contracts

Post by UK_Eliter »

I like the sound of this. I might try it out when I get time.

EDIT: And congrats on your first OXP! Advice: don't produce too many, otherwise you'll spend ages maintaining them (especially if, as was the case with me, at first you have little idea of what you doing!)
Last edited by UK_Eliter on Sat Oct 10, 2015 11:57 am, edited 2 times in total.
User avatar
Norby
---- E L I T E ----
---- E L I T E ----
Posts: 2577
Joined: Mon May 20, 2013 9:53 pm
Location: Budapest, Hungary (Mainly Agricultural Democracy, TL10)
Contact:

Re: (Beta) Mining Contracts

Post by Norby »

Very nice first OXP! :)

I suggest to use JSON in playerWillSaveGame:

Code: Select all

	missionVariables.MC_contracts = JSON.stringify(this.MC_contracts);
Then load in startUp:

Code: Select all

	var s = missionVariables.MC_contracts;
	if( s	&& s.length > 0 ) this.MC_contracts = JSON.parse(s);
If you have no time to go through The All-in-One Guide to OXZ Packaging and Distribution then after your fixes I can upload your oxz into the wiki and the in-game manager.
Layne
---- E L I T E ----
---- E L I T E ----
Posts: 355
Joined: Sat Mar 28, 2015 11:14 pm

Re: (Beta) Mining Contracts

Post by Layne »

Very clever idea-- I never had much interest in mining but it's nice to see it dusted off as a valid career option.
Reports of my death have been greatly underestimated.
diagoras
Competent
Competent
Posts: 55
Joined: Fri Oct 02, 2015 12:37 pm

Re: (Beta) Mining Contracts

Post by diagoras »

Thank you for your support, everyone! Norby, special thanks to you - recipe worked like charm, I will update download link in a moment. And I would be very grateful if you'll help me with all this local bureaucracy - next few days probably won't leave me any free time for it. By the way, it can be that bitbucket links are already direct enough for in-game manager, so some steps may be skipped probably - though, you are more experienced in deciding this.
User avatar
Norby
---- E L I T E ----
---- E L I T E ----
Posts: 2577
Joined: Mon May 20, 2013 9:53 pm
Location: Budapest, Hungary (Mainly Agricultural Democracy, TL10)
Contact:

Re: (Beta) Mining Contracts

Post by Norby »

[wiki]Mining Contracts OXP[/wiki] got a wiki page and available in the Activities category within the manager.
I uploaded this .oxz into the wiki due to the bitbucket link give the usual error.
diagoras
Competent
Competent
Posts: 55
Joined: Fri Oct 02, 2015 12:37 pm

Re: (Beta) Mining Contracts

Post by diagoras »

Norby wrote:
[wiki]Mining Contracts OXP[/wiki] got a wiki page and available in the Activities category within the manager.
I uploaded this .oxz into the wiki due to the bitbucket link give the usual error.
Thank you very much! I have already sent PMs to cim and maik, but when accounts will be created probably I will be unavailable myself. Meanwhile, I have bumped version to 1.2 with useful additional feature - enjoy your mining :-)
UK_Eliter
---- E L I T E ----
---- E L I T E ----
Posts: 1244
Joined: Sat Sep 12, 2009 11:58 pm
Location: Essex (mainly industrial and occasionally anarchic)

Re: (Beta) Mining Contracts

Post by UK_Eliter »

Diagoras, I'd like to check I understand the fundamentals of your expansion pack. Does it work as follows?

If I do not sign up for a mining contract, then I can sell a small amount of minerals at a price P; whereas, if I do sign up, then I can sell a larger amount of minerals for a price not much less than P?
User avatar
Diziet Sma
---- E L I T E ----
---- E L I T E ----
Posts: 6310
Joined: Mon Apr 06, 2009 12:20 pm
Location: Aboard the Pitviper S.E. "Blackwidow"

Re: (Beta) Mining Contracts

Post by Diziet Sma »

Welcome the the Darkside clubhouse, diagoras! There's a plate of cookies over there, on the table.
diagoras wrote:
Almost forgot: For this version [wiki]Icesteroids[/wiki] are the requirement. Unfortunately, I haven't found easy way to detect its presence dynamically.
Fortunately, with OXZs, you don't need to.. simply make Icesteroids a dependency in the manifest.plist. But I see Norby already has things well in hand for you.
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
User avatar
maik
Wiki Wizard
Wiki Wizard
Posts: 2020
Joined: Wed Mar 10, 2010 12:30 pm
Location: Ljubljana, Slovenia (mainly industrial, feudal, TL12)

Re: (Beta) Mining Contracts

Post by maik »

diagoras wrote:
Norby wrote:
[wiki]Mining Contracts OXP[/wiki] got a wiki page and available in the Activities category within the manager.
I uploaded this .oxz into the wiki due to the bitbucket link give the usual error.
Thank you very much! I have already sent PMs to cim and maik, but when accounts will be created probably I will be unavailable myself. Meanwhile, I have bumped version to 1.2 with useful additional feature - enjoy your mining :-)
Anyways, you do have a wiki account now. Oh, and welcome!
diagoras
Competent
Competent
Posts: 55
Joined: Fri Oct 02, 2015 12:37 pm

Re: (Beta) Mining Contracts

Post by diagoras »

UK_Eliter wrote:
Diagoras, I'd like to check I understand the fundamentals of your expansion pack. Does it work as follows?

If I do not sign up for a mining contract, then I can sell a small amount of minerals at a price P; whereas, if I do sign up, then I can sell a larger amount of minerals for a price not much less than P?
Sort of. Average contract gives you price per ton around half of market one, while exact proportion depends on difficulty of contract - the stricter deadline is, the closer to market price per ton you receive. Please note that while you can dispatch contracted cargo by parts, you receive your payment only on closing the contract - will it be fulfilled amount, passed deadline, or manual termination.
Diziet Sma wrote:
Fortunately, with OXZs, you don't need to.. simply make Icesteroids a dependency in the manifest.plist. But I see Norby already has things well in hand for you.
Nah, you misunderstood a bit - I mean, actually Icesteroids should not be "hard" dependency. Nothing prevents my OXP to work without it - I should just give only minerals contracts in that case. Unfortunately I haven't found way to detect Icesteroids in script, so had to make it a dependency.
maik wrote:
Anyways, you do have a wiki account now. Oh, and welcome!
Thank you!


For everyone who are trying this expansion - your feedback on gameplay mechanics will be invaluable. Average and variance in size of contracts, difficulty of deadlines, reward-per-ton comparing to market - all this parameters are pulled out of a hat and most probably require fine tuning. Share your feelings on what should be adjusted and how.
User avatar
Diziet Sma
---- E L I T E ----
---- E L I T E ----
Posts: 6310
Joined: Mon Apr 06, 2009 12:20 pm
Location: Aboard the Pitviper S.E. "Blackwidow"

Re: (Beta) Mining Contracts

Post by Diziet Sma »

diagoras wrote:
Nah, you misunderstood a bit - I mean, actually Icesteroids should not be "hard" dependency. Nothing prevents my OXP to work without it - I should just give only minerals contracts in that case. Unfortunately I haven't found way to detect Icesteroids in script, so had to make it a dependency.
Wouldn't the easiest way be to test if any entities with the role "staer9_asteroid" are in the system?
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
diagoras
Competent
Competent
Posts: 55
Joined: Fri Oct 02, 2015 12:37 pm

Re: (Beta) Mining Contracts

Post by diagoras »

Diziet Sma wrote:
Wouldn't the easiest way be to test if any entities with the role "staer9_asteroid" are in the system?
Interesting idea! I'll probably check it next time I'll have free time for oolite. Though, it probably won't be the case in next few days at least.

Casual reminder that expansion is open for early adoption - anyone interested enough may apply. I will gladly answer any questions regarding script.
User avatar
spara
---- E L I T E ----
---- E L I T E ----
Posts: 2676
Joined: Wed Aug 15, 2012 4:19 am
Location: Finland

Re: (Beta) Mining Contracts

Post by spara »

From the game mechanic perspective regarding mining as a career choice:

* Problem: Hermits accept only a small amount of minerals making it next to impossible to collect enough dough for the Ore Processor.
* General solution: Allow hermits to accept more minerals.

This oxp offers contracts that the player can accept and off to mining. I love the flavor texts of contracts as they really add to the game. However, I think that from player's point of view, it's better to go mining first (no hurry, just meditate and mine) and then visit a hermit and see if there's a contract to be filled. I can see the idea of adding some deadlines and excitement of filling them, but as a miner, I usually venture far with no time limits. You know, just me and the rocks kind of thing. So, here's a suggestion (just a suggestion, take it or leave it :D ). How about taking away the signing part? Just open contracts that extend the market giving a nice solution to the general problem. That way there would be the flavor, but no deadlines. And the open contracts could fill up over time by NPCs too (simulated or real). And when the contract is full, a shipment full of minerals could launch and head for the main station. And naturally new contracts should open over time to keep the market accepting minerals.
User avatar
spara
---- E L I T E ----
---- E L I T E ----
Posts: 2676
Joined: Wed Aug 15, 2012 4:19 am
Location: Finland

Re: (Beta) Mining Contracts

Post by spara »

Looks like I need to hurry, if I want to fulfill these contracts :mrgreen: :
Image
Post Reply