Darkside Moonshine Distillery (WIP)
Moderators: winston, another_commander
- Stormrider
- Deadly
- Posts: 241
- Joined: Sat Jan 25, 2014 2:35 am
- Location: At work
Darkside Moonshine Distillery (WIP)
The Darkside Moonshine Distilleries are only found in a few systems in each chart, often clustered in poor agricultural regions. They offer a highly desired commodity that is only available at DMD stations, Witchfire Whiskey. The price for Witchfire grows with the distance from production centers making cross chart runs very profitable. Smaller Darkside Moonshine Saloons appear in random systems around the chart. Although Witchfire is unavailable for purchase from the Saloons, they offer an alternative docking facility for those who may wish to avoid the patrol.
Available in the expansion manager or at:
https://app.box.com/s/dt22xgd5ndr03yohzxnmi3zvhubazpe1
This oxp is mostly just an experiment to explore the possibilities of the new trade goods system and I wanted to add something unique to some of the regions defined in the vector maps as well. There is more I would like to do such as adding transport missions between distilleries and saloons, but I haven't got much time for coding right now.
Many thanks to phkb for help with the trade-good code.
Available in the expansion manager or at:
https://app.box.com/s/dt22xgd5ndr03yohzxnmi3zvhubazpe1
This oxp is mostly just an experiment to explore the possibilities of the new trade goods system and I wanted to add something unique to some of the regions defined in the vector maps as well. There is more I would like to do such as adding transport missions between distilleries and saloons, but I haven't got much time for coding right now.
Many thanks to phkb for help with the trade-good code.
-
- Competent
- Posts: 48
- Joined: Wed Jun 01, 2016 1:54 am
Re: Darkside Moonshine Distillery (WIP)
Trying it out now - I'm keeping my eye out for distilleries; I'll let you know how it goes!
- Stormrider
- Deadly
- Posts: 241
- Joined: Sat Jan 25, 2014 2:35 am
- Location: At work
Re: Darkside Moonshine Distillery (WIP)
Great, let me know if you have trouble finding any, I may need to give the player some clues.TheOldGamer wrote:Trying it out now - I'm keeping my eye out for distilleries; I'll let you know how it goes!
-
- Competent
- Posts: 48
- Joined: Wed Jun 01, 2016 1:54 am
Re: Darkside Moonshine Distillery (WIP)
I was thinking perhaps something like meeting a random-encounter 'shady character' when you arrive at a station: "Psst...hey buddy...wanna hot tip? There's a guy in (system) that's got something folks 'round here'll pay lots for..." or something. Perhaps he might ask money for the tip? Just a thought.
At the moment, you mentioned cross-chart trading, so I'm looking around the edges of the map. I just finished The Collector...again...so I'm starting around the South-East.
EDIT Just found a Saloon...beautiful model and my Yasen appreciates the large docking port. Another thought: perhaps bribing the barkeep might lead to some clues as to the location of a distillery?
At the moment, you mentioned cross-chart trading, so I'm looking around the edges of the map. I just finished The Collector...again...so I'm starting around the South-East.
EDIT Just found a Saloon...beautiful model and my Yasen appreciates the large docking port. Another thought: perhaps bribing the barkeep might lead to some clues as to the location of a distillery?
-
- Competent
- Posts: 48
- Joined: Wed Jun 01, 2016 1:54 am
Re: Darkside Moonshine Distillery (WIP)
OK - found a distillery. Almost anticlimactic; only 5t available. No probs, I'll just do some milk-run trading and see if it builds up its stock.
- Stormrider
- Deadly
- Posts: 241
- Joined: Sat Jan 25, 2014 2:35 am
- Location: At work
Re: Darkside Moonshine Distillery (WIP)
The Distilleries are clustered so you will find more in systems near the first one. The [wiki]Darkside Moonshine Distillery[/wiki] page has a few more clues to the location.TheOldGamer wrote:only 5t available
I have been thinking mostly about ship comms to deliver info, maybe even from the station after launching. I do have a bar interface I've been working on though.TheOldGamer wrote:perhaps bribing the barkeep might lead to some clues as to the location of a distillery
-
- Competent
- Posts: 48
- Joined: Wed Jun 01, 2016 1:54 am
Re: Darkside Moonshine Distillery (WIP)
Yeah; I offered that thought before I'd found the first distillery - I've since found they're not that difficult to track down - and of course once you find one, you know where it is. I currently have 45t of Witchfire tucked away in the corners of my cargo bay, heading in a generally Westward direction. Let's see what kind of profit I can make.Stormrider wrote:The Distilleries are clustered so you will find more in systems near the first one. The [wiki]Darkside Moonshine Distillery[/wiki] page has a few more clues to the location.TheOldGamer wrote:only 5t available
I have been thinking mostly about ship comms to deliver info, maybe even from the station after launching. I do have a bar interface I've been working on though.TheOldGamer wrote:perhaps bribing the barkeep might lead to some clues as to the location of a distillery
Overall, I'm quite enjoying the addition; it adds quite a bit of spice to my trading and if you intend to add more functionality, so much the better.
- phkb
- Impressively Grand Sub-Admiral
- Posts: 4830
- Joined: Tue Jan 21, 2014 10:37 pm
- Location: Writing more OXPs, because the world needs more OXPs.
Re: Darkside Moonshine Distillery (WIP)
The distillery in Gal sector 7 is in an unreachable part of the sector unless you've crossed the "Great Rift". That means that the code in "dmd_trade.js" that checks the length of the route will fail because "way" will be null:I'd suggest something like this:
Code: Select all
var sysInfo = System.infoForSystem(galaxyNumber,sys);
var way = system.info.routeToSystem(sysInfo);
this.$priceMultiple = way.route.length * 0.025;
Code: Select all
var sysInfo = System.infoForSystem(galaxyNumber,sys);
var way = system.info.routeToSystem(sysInfo);
if (way) {
this.$priceMultiple = way.route.length * 0.025;
} else {
this.$priceMultiple = 99 * 0.025; // if the system is unreachable, then prices will be really high
}
- Stormrider
- Deadly
- Posts: 241
- Joined: Sat Jan 25, 2014 2:35 am
- Location: At work
Re: Darkside Moonshine Distillery (WIP)
Ok thanks for the report and the fix. I have uploaded a new version to the manager.phkb wrote:The distillery in Gal sector 7 is in an unreachable part of the sector unless you've crossed the "Great Rift". That means that the code in "dmd_trade.js" that checks the length of the route will fail because "way" will be null: