Page 4 of 5

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Sat Feb 03, 2018 1:44 pm
by DreadWingKnight
IT was actually the .19 update and not the .20 update that broke it.

Re: [MOD 0.15.x] BeltSorter 0.4.1

Posted: Tue Feb 06, 2018 12:30 am
by sumdawgy
MAup wrote:I saw someone requesting the ability to put two or more sorters next to eachother, and you told them it would be a too complex project.
Wouldn't that work kind of how underground belt works?
Anyway i was wondering if you were rethinking of adding this solution or if a 2x2 belt sorter were in your mind in any way?
Regards
MAup
I love belt sorter for it's pyrpose as a small workhorse!!!

But big jobs require bigger tools....
So for those I use storehouse/warehouses fitted with loaders set to output properly to it's attached belt..
Warehouses tend to be 6x6 which allows for some massive sorting...and high input rates with plenty of buffering...

although depending on the task..almost any large chest will work.

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Tue Feb 06, 2018 12:33 am
by sumdawgy
judos wrote:Fix 0.5.4
- fix entity system crash when beltSorter is removed.

That sounds small but took me a couple of hours to find.
Your time is APPRECIATED!!!!

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Fri May 04, 2018 3:49 am
by Kirona
Recently this mod is causing my game to crash any time I try to open power armor, with the following error message:

Error while running event beltSorter::on_tick (ID 0)
LuaEquipmentGrid doesn't contain key name.
stack traceback:
__beltSorter__/libs/control/gui.lua:96: in function 'playerOpenGui'
__beltSorter__/libs/control/gui.lua:126: in function 'gui_tick'
__beltSorter__/control.lua:49: in function <__beltSorter__/control.lua:47>

In this case it's bugging out with the power armor given by the TinyStart mod, but it also occurs with vanilla power armor.

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Sat May 05, 2018 7:41 pm
by tt_ich
It changed with 0.16.40 I guess.
"Fixed that LuaPlayer::opened wouldn't return the opened equipment grid. "

I was able to fix it locally by changing on libs/control/gui.lua, L125

if openGui == nil and openEntity ~= nil then
playerOpenGui(player,playerData,openEntity)
end

to
if openGui == nil and playerData.openEntity ~= nil then
playerOpenGui(player,playerData,playerData.openEntity)
end

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Sun May 06, 2018 5:19 pm
by Alluvial
tt_ich wrote:I was able to fix it locally by changing on libs/control/gui.lua, L125

if openGui == nil and openEntity ~= nil then
playerOpenGui(player,playerData,openEntity)
end

to
if openGui == nil and playerData.openEntity ~= nil then
playerOpenGui(player,playerData,playerData.openEntity)
end
Made the same change - fixed it for me too.

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Tue May 15, 2018 5:59 pm
by jokru
tt_ich wrote:It changed with 0.16.40 I guess.
"Fixed that LuaPlayer::opened wouldn't return the opened equipment grid. "

I was able to fix it locally by changing on libs/control/gui.lua, L125

if openGui == nil and openEntity ~= nil then
playerOpenGui(player,playerData,openEntity)
end

to
if openGui == nil and playerData.openEntity ~= nil then
playerOpenGui(player,playerData,playerData.openEntity)
end
While this did fix the crash for me, it also made the gui not show up at all when opening the sorter, rendering the whole mod effectively useless. I recommend Cordina90's fork on github. This seems to work for me.

Or if github is too confusing here's just the fixing edit.

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Wed May 23, 2018 5:42 am
by 8Zn
jokru wrote:
tt_ich wrote:It changed with 0.16.40 I guess.
"Fixed that LuaPlayer::opened wouldn't return the opened equipment grid. "

I was able to fix it locally by changing on libs/control/gui.lua, L125

if openGui == nil and openEntity ~= nil then
playerOpenGui(player,playerData,openEntity)
end

to
if openGui == nil and playerData.openEntity ~= nil then
playerOpenGui(player,playerData,playerData.openEntity)
end
While this did fix the crash for me, it also made the gui not show up at all when opening the sorter, rendering the whole mod effectively useless. I recommend Cordina90's fork on github. This seems to work for me.

Or if github is too confusing here's just the fixing edit.

That is true: BeltSorter-GUI was broken.
Correction only from line 116 was sufficient!

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Sat May 26, 2018 12:51 pm
by Labor3
Why doesnt it work?
The Input should come from right or right and south.
the output should be coal on north and iron on west.

???

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Sat May 26, 2018 1:12 pm
by steinio
Labor3 wrote:Why doesnt it work?
The Input should come from right or right and south.
the output should be coal on north and iron on west.

???
Why not just use the filter splitter function?

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Sun May 27, 2018 9:20 am
by 8Zn
Labor3 wrote:Why doesnt it work?
The Input should come from right or right and south.
the output should be coal on north and iron on west.

???
You have to put the hooks by rightclick for right/left options directly next to your selection.

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Mon May 28, 2018 8:31 am
by Labor3
8Zn wrote:
Labor3 wrote:Why doesnt it work?
The Input should come from right or right and south.
the output should be coal on north and iron on west.

???
You have to put the hooks by rightclick for right/left options directly next to your selection.

Thanks!
I was leftcklicking it and the hooks dissapeared immediately... >_<
Didn't know you had to rightclick it.

Re: [MOD 0.16.x] BeltSorter 0.5.5

Posted: Sun Jul 22, 2018 8:40 am
by Cordina
Version 0.5.5 was just released, this should fix errors with opening the grid of Power Armor and unselectable lanes

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Fri Aug 17, 2018 12:45 am
by Gaist
Love the mod, just hankering for additional tier support for Bob's!

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Fri Aug 17, 2018 4:21 pm
by Tobilike
Hello. I have a found a bug.
I only placed one sorter in the world. Nevertheless, it displays 2 times in the power management.
Pictures

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Mon Mar 04, 2019 12:10 am
by vizthex
Will this be updated for 0.17 anytime soon?

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Mon Mar 04, 2019 8:16 am
by darkfrei
vizthex wrote:
Mon Mar 04, 2019 12:10 am
Will this be updated for 0.17 anytime soon?
I found the mod very useful and I can make the fork for 0.17.

Re: [MOD 0.16.x] BeltSorter 0.5.4

Posted: Mon Mar 04, 2019 11:46 pm
by vizthex
darkfrei wrote:
Mon Mar 04, 2019 8:16 am
vizthex wrote:
Mon Mar 04, 2019 12:10 am
Will this be updated for 0.17 anytime soon?
I found the mod very useful and I can make the fork for 0.17.
Yeah if the mod author gives you permission go for it.

Send me the link if you manage to.

Re: [MOD 0.17.x] BeltSorter 0.6.2

Posted: Mon Jul 01, 2019 7:51 pm
by judos
Hi there,

I didn't manage to visit factorio for a while, but now I found some time again so I updated some small things

Changes 0.6.1

- Add thumbnail for the beautiful mod portal
- Fix priority button width for belt-sorter-3, add label for translation "Make this priority __1__"
- Added support for all loaders which are 1x1. Note however that the throughput is only half of the normal belt because these loaders are only half a belt if you look closer.


Fixes and compatibility 0.6.2

- Fix update speed to match new speed of belts (factorio 0.17) - throughput looks smoother now
- Add Turbo and Ultimate BeltSorter with speed of 60, 75 Items/s (If bobs-logistics or UltimateBelts is installed)
- Add migration such that bobs' logistics-4 and ultimateBelts' ultra fast logistics unlock these beltSorter


Fixes and compatibility 0.6.3

- Fix beltSorters didn't use any energy at all (except if condition is set), did you actually notice this earlier? :D
- Above also fixes an issue with Realistic Power mod making beltSorters not work in general
- Add support for krastorio, advanced-logistics unlocks Turbo BeltSorter

Re: [MOD 0.17.x] BeltSorter 0.6.3

Posted: Sun Jul 14, 2019 12:14 am
by coolfarmer
Is it possible for you to fix this ( Tightly connected sorters) ?
https://mods.factorio.com/mod/beltSorte ... 000b1928e2

I don't care about rotation but tightly connected sorters is a MUST! :shock:

My design doesn't work... :(
Image