[MOD 1.1] Xander Mod v3.6.1
Re: [MOD 0.15+] Xander Mod v1.2.1
Hi Guys, I not sure if others have this but I get seem to get passed crude tech, I can't get Wood Resin or find the machine to create it, IN the mod I have the last Crude tech which is crude automation requires a red reset tech which I can't complete. Can anyone help??
Thanks
Thanks
Re: [MOD 0.15+] Xander Mod v1.2.1
I'm having the same problem. For the time being, I'm just cheating the wood resin in. It used to be made in the crude chemical plant, but it seems to have broken in the most recent update.Omist wrote:Hi Guys, I not sure if others have this but I get seem to get passed crude tech, I can't get Wood Resin or find the machine to create it, IN the mod I have the last Crude tech which is crude automation requires a red reset tech which I can't complete. Can anyone help??
Thanks
Re: [MOD 0.15+] Xander Mod v1.2.1
donoya wrote:I'm having the same problem. For the time being, I'm just cheating the wood resin in. It used to be made in the crude chemical plant, but it seems to have broken in the most recent update.Omist wrote:Hi Guys, I not sure if others have this but I get seem to get passed crude tech, I can't get Wood Resin or find the machine to create it, IN the mod I have the last Crude tech which is crude automation requires a red reset tech which I can't complete. Can anyone help??
Thanks
Ok Cool, So it's not me, I was looking for around an hour and Thought It can't be that hard. Thanks for the reply
Re: [MOD 0.15+] Xander Mod v1.2.1
I also encountered this issue. the crude chemplant has no crude recipes like wood-resin, sulferic acid, etc.
I checked a bit in the code, because Repofme1 is absent for the next week.
I think, it can be fixed by adding the chemplant's crafting_category "basic-chemistry" in prototypes\entity\production\chemical.lua:
I checked a bit in the code, because Repofme1 is absent for the next week.
I think, it can be fixed by adding the chemplant's crafting_category "basic-chemistry" in prototypes\entity\production\chemical.lua:
Code: Select all
--Base "chemical-plant"
data.raw["assembling-machine"]["chemical-plant"].max_health = 100
data.raw["assembling-machine"]["chemical-plant"].module_specification.module_slots = 0
data.raw["assembling-machine"]["chemical-plant"].crafting_speed = 0.5
data.raw["assembling-machine"]["chemical-plant"].crafting_categories = {"basic-chemistry"} -- <--- HERE
data.raw["assembling-machine"]["chemical-plant"].energy_source =
{
type = "burner",
fuel_category = "crude",
effectivity = 1,
fuel_inventory_size = 1,
emissions = 0.05,
smoke =
{
{
name = "smoke",
deviation = {0.1, 0.1},
frequency = 5,
position = {0.0, -0.8},
starting_vertical_speed = 0.08,
starting_frame_deviation = 60
}
}
}
data.raw["assembling-machine"]["chemical-plant"].energy_usage = "200kW"
Re: [MOD 0.15+] Xander Mod v1.2.1
I found another recipe inconsistency with the chemical plants. In the current version, you can't craft the standard chemical reactor, and there are duplicate recipe unlocks for the integrated chemical plant, plus a really expensive catalytic chemical reactor as the second chemical reactor you unlock.
Re: [MOD 0.15+] Xander Mod v1.2.1
Yes, it seems, that the reactor-1 is missing and reactor-2 is unlocked instead, same with reactor-2 und 3donoya wrote:I found another recipe inconsistency with the chemical plants. In the current version, you can't craft the standard chemical reactor, and there are duplicate recipe unlocks for the integrated chemical plant, plus a really expensive catalytic chemical reactor as the second chemical reactor you unlock.
Just another idea for early game. It would be nice, if the crude machine tool could be unlocked by crude science instead of red. Now, you are really fast there, but then you have to climb down the other branch of the tech tree to unlock "induction", which includes the red science packs. So, you have to craft everything up to there with hand especially the 2 gears per red packs are much.
This would also help to get the crude ore processor faster, which helps with the not negligible amounts of clay needed for furnaces and drills.
Re: [MOD 0.15+] Xander Mod v1.2.1
That seems to break the recipe for the standard etched board.jodokus31 wrote:I also encountered this issue. the crude chemplant has no crude recipes like wood-resin, sulferic acid, etc.
I checked a bit in the code, because Repofme1 is absent for the next week.
I think, it can be fixed by adding the chemplant's crafting_category "basic-chemistry" in prototypes\entity\production\chemical.lua:
Code: Select all
--Base "chemical-plant" data.raw["assembling-machine"]["chemical-plant"].max_health = 100 data.raw["assembling-machine"]["chemical-plant"].module_specification.module_slots = 0 data.raw["assembling-machine"]["chemical-plant"].crafting_speed = 0.5 data.raw["assembling-machine"]["chemical-plant"].crafting_categories = {"basic-chemistry"} -- <--- HERE data.raw["assembling-machine"]["chemical-plant"].energy_source = { type = "burner", fuel_category = "crude", effectivity = 1, fuel_inventory_size = 1, emissions = 0.05, smoke = { { name = "smoke", deviation = {0.1, 0.1}, frequency = 5, position = {0.0, -0.8}, starting_vertical_speed = 0.08, starting_frame_deviation = 60 } } } data.raw["assembling-machine"]["chemical-plant"].energy_usage = "200kW"
Re: [MOD 0.15+] Xander Mod v1.2.1
I can not produce wooden rubber, neither by chemical plant, nor even by cracking
Не могу произвести деревянную резину, ни химзаводом, ни даже крекингом
how to produce?
what in create stone brick?
Не могу произвести деревянную резину, ни химзаводом, ни даже крекингом
how to produce?
what in create stone brick?
Re: [MOD 0.15+] Xander Mod v1.2.1
Thanks for testing.donoya wrote:That seems to break the recipe for the standard etched board.jodokus31 wrote:I also encountered this issue. the crude chemplant has no crude recipes like wood-resin, sulferic acid, etc.
I checked a bit in the code, because Repofme1 is absent for the next week.
I think, it can be fixed by adding the chemplant's crafting_category "basic-chemistry" in prototypes\entity\production\chemical.lua:
Code: Select all
--Base "chemical-plant" data.raw["assembling-machine"]["chemical-plant"].max_health = 100 data.raw["assembling-machine"]["chemical-plant"].module_specification.module_slots = 0 data.raw["assembling-machine"]["chemical-plant"].crafting_speed = 0.5 data.raw["assembling-machine"]["chemical-plant"].crafting_categories = {"basic-chemistry"} -- <--- HERE data.raw["assembling-machine"]["chemical-plant"].energy_source = { type = "burner", fuel_category = "crude", effectivity = 1, fuel_inventory_size = 1, emissions = 0.05, smoke = { { name = "smoke", deviation = {0.1, 0.1}, frequency = 5, position = {0.0, -0.8}, starting_vertical_speed = 0.08, starting_frame_deviation = 60 } } } data.raw["assembling-machine"]["chemical-plant"].energy_usage = "200kW"
OK :/ I think, that my "fix" overrides the previous crafting_category, which was needed for the standard etched board. I'll try to find it and then it can be added, too
EDIT: Seems to be crafting_category "chemistry", which is missing now. This is a base game category
Code: Select all
data.raw["assembling-machine"]["chemical-plant"].crafting_categories = {"basic-chemistry", "chemistry"}
Yes, that is exactly the problem with the chem plantAirat9000 wrote:I can not produce wooden rubber, neither by chemical plant, nor even by cracking
how to produce?
Unlike vanilla, stone bricks are not cooked in furnaces. Stone bricks can be created with machine tool (not equal to assembly machine).Airat9000 wrote: what in create stone brick?
Re: [MOD 0.15+] Xander Mod v1.2.1
Yes, that is exactly the problem with the chem plantAirat9000 wrote:I can not produce wooden rubber, neither by chemical plant, nor even by cracking
how to produce?
how to produce? how to solve a problem??? How can I combine the recipe?
Re: [MOD 0.15+] Xander Mod v1.2.1
The solution was given in the previous posts.Airat9000 wrote:Yes, that is exactly the problem with the chem plantAirat9000 wrote:I can not produce wooden rubber, neither by chemical plant, nor even by cracking
how to produce?
how to produce? how to solve a problem??? How can I combine the recipe?
Summarized:
- Rollback to 1.2.0 OR
- Change code, that crude reactor has the correct crafting category (see code sections in previous posts) OR
- Cheat to get wood-resin
Re: [MOD 0.15+] Xander Mod v1.2.1
jodokus31 wrote:The solution was given in the previous posts.Airat9000 wrote:Yes, that is exactly the problem with the chem plantAirat9000 wrote:I can not produce wooden rubber, neither by chemical plant, nor even by cracking
how to produce?
how to produce? how to solve a problem??? How can I combine the recipe?
Summarized:
- Rollback to 1.2.0 OR
- Change code, that crude reactor has the correct crafting category (see code sections in previous posts) OR
- Cheat to get wood-resin
I will slowly combine the recipes, as soon as the game is opened and tested. then discard the files. I immediately made a recipe. The only thing you could tell me how to do it so that this or that device would produce the goods (assembly machine, chemical plant) is an example of the code?
я буду потихоньку совмещать рецепты, по мере открытия и проверки игры. потом скину файлы. я щас сделал рецепт. единственное все же вы могли подсказать как сделать так что бы тот или иной аппарат производил товар (сборочная машина, или хим завод) есть пример кода?
Re: [MOD 0.15+] Xander Mod v1.2.1
Im not sure, if I understand the question. Do you want to know, which device produces (or should produce) what?Airat9000 wrote:
I will slowly combine the recipes, as soon as the game is opened and tested. then discard the files. I immediately made a recipe. The only thing you could tell me how to do it so that this or that device would produce the goods (assembly machine, chemical plant) is an example of the code?
я буду потихоньку совмещать рецепты, по мере открытия и проверки игры. потом скину файлы. я щас сделал рецепт. единственное все же вы могли подсказать как сделать так что бы тот или иной аппарат производил товар (сборочная машина, или хим завод) есть пример кода?
- wood resin (or "rubber" how you called it): is produced usually by the chemical plant (But here is the bug in version 1.2.1. You can't produce it!). My code sample tries to fix that bug. Without, you have no way to produce it.
- simple coil: is produced in assembly machine or by hand. This should work, if you have the wood-resin. In Version 1.2.1 it is not possible, without a bugfix.
Re: [MOD 0.15+] Xander Mod v1.2.1
not recipe ;( 1.2.1 what is automatic machine create recipe?jodokus31 wrote:Im not sure, if I understand the question. Do you want to know, which device produces (or should produce) what?Airat9000 wrote:
I will slowly combine the recipes, as soon as the game is opened and tested. then discard the files. I immediately made a recipe. The only thing you could tell me how to do it so that this or that device would produce the goods (assembly machine, chemical plant) is an example of the code?
я буду потихоньку совмещать рецепты, по мере открытия и проверки игры. потом скину файлы. я щас сделал рецепт. единственное все же вы могли подсказать как сделать так что бы тот или иной аппарат производил товар (сборочная машина, или хим завод) есть пример кода?
- wood resin (or "rubber" how you called it): is produced usually by the chemical plant (But here is the bug in version 1.2.1. You can't produce it!). My code sample tries to fix that bug. Without, you have no way to produce it.
- simple coil: is produced in assembly machine or by hand. This should work, if you have the wood-resin. In Version 1.2.1 it is not possible, without a bugfix.
redact in
Code: Select all
type = "recipe",
name = "coil-1-a",
category = "basic-crafting",
energy_required = 2,
enabled = false,
ingredients = {{"copper-cable", 4},{"basic-circuit-board", 4}, {"forging-iron", 2}},
result = "coil-1",
result_count = 2
Code: Select all
--Simple Coil A
{
type = "recipe",
name = "coil-1-a",
category = "forge",
energy_required = 2,
enabled = false,
ingredients = {{"copper-cable", 4},{"basic-circuit-board", 4}, {"forging-iron", 2}},
result = "coil-1",
result_count = 2
category = "machine",
result category = "crafting-with-fluid",
Last edited by Airat9000 on Thu Aug 31, 2017 10:01 pm, edited 1 time in total.
Re: [MOD 0.15+] Xander Mod v1.2.1
There are different types of assembly machines. The one you have there is the machine tool.
The one, where you can craft "simple coil" is the other one: Its no need to change or fix anything in code for this. The only problem is the missing wood-resin
The one, where you can craft "simple coil" is the other one: Its no need to change or fix anything in code for this. The only problem is the missing wood-resin
Re: [MOD 0.15+] Xander Mod v1.2.1
that would get this machine you need to make this kind of technology, and it does not produce because of 2 bugs!
I do not see any rubber
I do not see any rubber
Re: [MOD 0.15+] Xander Mod v1.2.1
thanks Simple coil work!
not work!
chemical plant recipe wood
not work!
chemical plant recipe wood
Re: [MOD 0.15+] Xander Mod v1.2.1
compartible recipe in angels thanksAirat9000 wrote:thanks Simple coil work!
not work!
chemical plant recipe wood
file bulk
code
Code: Select all
--Wood Resin
{
type = "recipe",
name = "wood-resin",
icon = "__xander-mod__/graphics/recipe/organic/wood-resin.png",
category = "basic-chemistry",
energy_required = 10,
enabled = false,
ingredients = {{"raw-wood", 20}, {type = "fluid", name = "steam", amount = 10}},
result = "wood-resin",
result_count = 10,
crafting_machine_tint =
{
category = "chemistry",
Code: Select all
--Wood Resin
{
type = "recipe",
name = "wood-resin",
icon = "__xander-mod__/graphics/recipe/organic/wood-resin.png",
category = "chemistry",
energy_required = 10,
enabled = false,
ingredients = {{"raw-wood", 20}, {type = "fluid", name = "steam", amount = 10}},
result = "wood-resin",
result_count = 10,
crafting_machine_tint =
{
Re: [MOD 0.15+] Xander Mod v1.2.1
Yes, this works, too, but i think its not intended, that wood-resin is normal "chemistry".
The problem is, that the chemical plant at the moment only can craft category "chemistry", but it should craft "chemistry" and "basic-chemistry" and whatever
The problem is, that the chemical plant at the moment only can craft category "chemistry", but it should craft "chemistry" and "basic-chemistry" and whatever
Re: [MOD 0.15+] Xander Mod v1.2.1
So I did some more testing and this only seems to fix the crude chemical plant. And while you can't craft the standard chemical plant which is required for the next chemical plants, you can still cheat them in, and the fix doesn't seem to apply to the later chemical plants.jodokus31 wrote: Thanks for testing.
OK :/ I think, that my "fix" overrides the previous crafting_category, which was needed for the standard etched board. I'll try to find it and then it can be added, too
EDIT: Seems to be crafting_category "chemistry", which is missing now. This is a base game categoryEDIT2: Tested it. Seems to do the trickCode: Select all
data.raw["assembling-machine"]["chemical-plant"].crafting_categories = {"basic-chemistry", "chemistry"}