[MOD 0.12] vzyAccumulator - 0.1.0

Topics and discussion about specific mods
Post Reply
vzybilly
Fast Inserter
Fast Inserter
Posts: 143
Joined: Thu May 14, 2015 6:10 pm
Contact:

[MOD 0.12] vzyAccumulator - 0.1.0

Post by vzybilly »

  • Name: vzyAccumulator
  • Latest Release: v0.1.0, 2015.8.30
  • Factorio Version: 0.12.x
  • License: I have no clue, free, do with as you please, just don't re-upload a copy as your own... I would also like to know what mod packs this finds it's way into.
  • Dependencies: vzy 0.0.0
  • Download: 0.1.0
Long Description:
Adds in new accumulators that can be crafted up to be an insane amount in the same space as one.
Crafting uses the previous level.

Bugs
  • Needs it's own graphics, currently uses base.
Will code for Food. I also have 11+ mods!

Tesseract
Manual Inserter
Manual Inserter
Posts: 2
Joined: Sun Oct 19, 2014 3:09 pm
Contact:

Re: [MOD 0.12] vzyAccumulator - 0.1.0

Post by Tesseract »

Cool mod. I believe I've found an error however. In the file prototypes/accumulator.lua the section of code

Code: Select all

local function fnCapacityLimit(level)
	if level <= 0 then
		return 5
	else
		return 10 * fnFlowLimit(level - 1)
	end
end
Should be

Code: Select all

local function fnCapacityLimit(level)
	if level <= 0 then
		return 5
	else
		return 10 * fnCapacityLimit(level - 1)
	end
end
Otherwise the capacity is significantly higher than I believe you intended.

vzybilly
Fast Inserter
Fast Inserter
Posts: 143
Joined: Thu May 14, 2015 6:10 pm
Contact:

Re: [MOD 0.12] vzyAccumulator - 0.1.0

Post by vzybilly »

Tesseract wrote:Cool mod. I believe I've found an error however. In the file prototypes/accumulator.lua the section of code

Code: Select all

local function fnCapacityLimit(level)
	if level <= 0 then
		return 5
	else
		return 10 * fnFlowLimit(level - 1)
	end
end
Should be

Code: Select all

local function fnCapacityLimit(level)
	if level <= 0 then
		return 5
	else
		return 10 * fnCapacityLimit(level - 1)
	end
end
Otherwise the capacity is significantly higher than I believe you intended.
yes, I had found that in already updated it while I was refactoring everything. but I broke everything and I haven't had time to go through and patch it all up nicely, hence no release... sadly.
Will code for Food. I also have 11+ mods!

slimysnakeuk
Manual Inserter
Manual Inserter
Posts: 1
Joined: Fri Oct 30, 2015 2:21 pm
Contact:

Re: [MOD 0.12] vzyAccumulator - 0.1.0

Post by slimysnakeuk »

I'd gladly contribute some graphics for this if you need! Contact me over steam if you wish: slimysnakeuk

EDIT: Infact feel free for anyone that sees this to use this 'Advanced Accumulator' image and animation I put together - hadn't seen it in action yet.
Image
https://www.dropbox.com/s/p7bzqq2bxd2to ... r.rar?dl=0

vzybilly
Fast Inserter
Fast Inserter
Posts: 143
Joined: Thu May 14, 2015 6:10 pm
Contact:

Re: [MOD 0.12] vzyAccumulator - 0.1.0

Post by vzybilly »

I'll check it out "soon" graphics have been on my list of things to tackle but I haven't been feeling the modding vibe and recently destiny has taken me in...

if you're willing, I would gladly like some help with the graphics, I have some ideas but nothing set yet.
Will code for Food. I also have 11+ mods!

Post Reply

Return to “Mods”