Questions
Moderator: bobingabout
Questions
Very interesting Bob's mods!! I can't find how to produce ferric chloride solution??
-
- Smart Inserter
- Posts: 1847
- Joined: Sun Feb 23, 2014 3:37 pm
- Contact:
Re: Questions
Haven't used bob's mod, but isn't that it?
If it's not in that menu it might need researched.
If it's not in that menu it might need researched.
Re: Questions
Ferric chloride is unlocked by researching Chemical Processing 2.
Re: Questions
Ty! I find it nowDegraine wrote:Ferric chloride is unlocked by researching Chemical Processing 2.
Re: Questions
I love bob's mods!
-
- Burner Inserter
- Posts: 9
- Joined: Sun May 04, 2014 7:38 pm
- Contact:
Re: Questions
Well someone should really make some bob's mod tutorial series. Even tho I don't have any problems with it it's very realistic and I like it because I'm electronic hobbyist .
Maybe I could
Maybe I could
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Questions
I was going to, in fact I even started collecting screenshots for it. but then things happened and I'm taking a break from modding, and factorio in general.MrSlehofer wrote:Well someone should really make some bob's mod tutorial series.
I can't say exactly when I'll be back to modding Factorio, but I will.
Re: Questions
I can't figure out how to make lead gear wheels
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Questions
Bob's mods doesn't have a lead gear wheel.gnosa wrote:I can't figure out how to make lead gear wheels
Re: Questions
i have just starting using bobs mods for the first time and im relly like them its a good mod.
but i just have one question is there any way to pump oil and other liqeds in to my rail tanker cant find the normal pumps???
but i just have one question is there any way to pump oil and other liqeds in to my rail tanker cant find the normal pumps???
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Questions
Rail tanker is another mod, isn't it?Qippler wrote:i have just starting using bobs mods for the first time and im relly like them its a good mod.
but i just have one question is there any way to pump oil and other liqeds in to my rail tanker cant find the normal pumps???
The normal "small" pump is where it always was in the base game, I didn't move it. It's on the Logistics tab, with the power poles.
Re: Questions
Hello! Can anybody help me and tell console name for item "Grinding wheel", so i'll be able to earn it via console command - for some reason i can't earn it ingame, so console is the easiest way to solve my problem. Thank you!
PS Console command to disable/enable technology "Grinding" may help too
PS Console command to disable/enable technology "Grinding" may help too
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: Questions
As far as I can tell... "grinding-wheel" is unlocked via researchng the technology "grinding". These are case sensative, which means capital letters (or lack of them) matter.Demo-EDV wrote:Hello! Can anybody help me and tell console name for item "Grinding wheel", so i'll be able to earn it via console command - for some reason i can't earn it ingame, so console is the easiest way to solve my problem. Thank you!
PS Console command to disable/enable technology "Grinding" may help too
There should be no need to play around in the console to unlock the item, However... things happen, it might have been a bad interaction with another mod or something so... here goes.
This will enable the Grinding wheel.
Code: Select all
/c game.player.force.recipes["grinding-wheel"].enabled = true
Code: Select all
/c game.player.force.technologies["grinding"].researched = false
Code: Select all
/c for index, force in pairs(game.forces) do if force.technologies["grinding"].researched then force.recipes["grinding-wheel"].enabled = true end end
Alternatively, you could just unresearch all grinding technology on all forces with
Code: Select all
/c for index, force in pairs(game.forces) do force.technologies["grinding"].researched = false end
Code: Select all
/c for index, force in pairs(game.forces) do force.recipes["grinding-wheel"].enabled = true end
Re: Questions
Researching grinding technology one more time didn't help, but force unlock the grinding wheel solved the problem. Thank you for help and for your mods!