Page 1 of 1
[MOD 0.12] vzyAccumulator - 0.1.0
Posted: Thu Sep 10, 2015 7:19 pm
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.
Re: [MOD 0.12] vzyAccumulator - 0.1.0
Posted: Sat Oct 17, 2015 6:04 am
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.
Re: [MOD 0.12] vzyAccumulator - 0.1.0
Posted: Sat Oct 17, 2015 3:03 pm
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.
Re: [MOD 0.12] vzyAccumulator - 0.1.0
Posted: Fri Oct 30, 2015 2:24 pm
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.
https://www.dropbox.com/s/p7bzqq2bxd2to ... r.rar?dl=0
Re: [MOD 0.12] vzyAccumulator - 0.1.0
Posted: Fri Oct 30, 2015 6:21 pm
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.