[0.12.x] Craft Faster

Topics and discussion about specific mods
Post Reply
User avatar
MagicLegend
Long Handed Inserter
Long Handed Inserter
Posts: 65
Joined: Tue Dec 30, 2014 6:17 pm
Contact:

[0.12.x] Craft Faster

Post by MagicLegend »

Airat9000 wrote:0.12 not work
I just made the Craft Faster mod 0.12 compatible. I wanted to use it (great reason, I know).

I'll poke somebody on this forum to move the topic to 0.12 compatible mods.

For now, DL:
http://bit.ly/GetCraftFaster (version 0.0.3)

Small changelog:
  • Updated the mod to 0.12 (duuh)
  • Added my name to the info.json for updating the mod
  • Added my name to the info.json to be the one to contact for 0.12+ support
  • Changed the version name to 0.0.3
Disclaimer:
I was not the one who made this mod. I have only updated the mod to 0.12+, without modifying the workings of the mod.
(Almost ;)) all the credit should go the the original author of the mod.


The port has been tested, and I can confirm it works.

If the author/forummods have questions, please send me an PM, and we'll figure it out :)

~ML
Very good at pressing buttons.

User avatar
provet
Fast Inserter
Fast Inserter
Posts: 133
Joined: Thu Feb 12, 2015 9:49 pm
Contact:

Re: [0.12.x] Craft Faster

Post by provet »

Craft faster manually or with machines?

User avatar
MagicLegend
Long Handed Inserter
Long Handed Inserter
Posts: 65
Joined: Tue Dec 30, 2014 6:17 pm
Contact:

Re: [0.12.x] Craft Faster

Post by MagicLegend »

Manually.
Very good at pressing buttons.

User avatar
bushbaby1234
Inserter
Inserter
Posts: 26
Joined: Sat Aug 09, 2014 10:54 am
Contact:

Re: [0.12.x] Craft Faster

Post by bushbaby1234 »

Hello. i just updated all of my mods and got this error upon loading my old world

__craftfaster__/control.lua:25: attempt to index global 'game' (a nil value)

i can include a copy of the world if you want/need

User avatar
Grandirus
Burner Inserter
Burner Inserter
Posts: 14
Joined: Fri Jun 12, 2015 7:21 pm
Contact:

Re: [0.12.x] Craft Faster

Post by Grandirus »

Hi.
I have got this to work (0.12.16) changed the "control.lua" to this:

Code: Select all

require("defines")

local ontick=defines.events.on_tick

function UpdateSpeeds()
	for _,f in pairs(game.forces) do
		if f.technologies["faster-crafting-5"].researched then
			f.manual_crafting_speed_modifier = 2
		elseif f.technologies["faster-crafting-4"].researched then
			f.manual_crafting_speed_modifier = 1.4
		elseif f.technologies["faster-crafting-3"].researched then
			f.manual_crafting_speed_modifier = 0.9
		elseif f.technologies["faster-crafting-2"].researched then
			f.manual_crafting_speed_modifier = 0.5
		elseif f.technologies["faster-crafting-1"].researched then
			f.manual_crafting_speed_modifier = 0.2
		else
			f.manual_crafting_speed_modifier = 0
		end
		--game.players[1].print(f.name..f.manual_crafting_speed_modifier)
	end
	script.on_event(ontick,nil)
end

script.on_init(UpdateSpeeds)
script.on_load(UpdateSpeeds)

function ticked()
	UpdateSpeeds()
end

script.on_event(defines.events.on_research_finished, function(event)
	script.on_event(ontick, ticked)
end)
I played the game, saved and quit. On load, the game give me an error (......(a nil value).....) on line 6. ( for _,f in pairs(game.forces) do)

User avatar
MagicLegend
Long Handed Inserter
Long Handed Inserter
Posts: 65
Joined: Tue Dec 30, 2014 6:17 pm
Contact:

Re: [0.12.x] Craft Faster

Post by MagicLegend »

Grandirus wrote:Hi.
I have got this to work (0.12.16) changed the "control.lua" to this:

Code: Select all

require("defines")

local ontick=defines.events.on_tick

function UpdateSpeeds()
	for _,f in pairs(game.forces) do
		if f.technologies["faster-crafting-5"].researched then
			f.manual_crafting_speed_modifier = 2
		elseif f.technologies["faster-crafting-4"].researched then
			f.manual_crafting_speed_modifier = 1.4
		elseif f.technologies["faster-crafting-3"].researched then
			f.manual_crafting_speed_modifier = 0.9
		elseif f.technologies["faster-crafting-2"].researched then
			f.manual_crafting_speed_modifier = 0.5
		elseif f.technologies["faster-crafting-1"].researched then
			f.manual_crafting_speed_modifier = 0.2
		else
			f.manual_crafting_speed_modifier = 0
		end
		--game.players[1].print(f.name..f.manual_crafting_speed_modifier)
	end
	script.on_event(ontick,nil)
end

script.on_init(UpdateSpeeds)
script.on_load(UpdateSpeeds)

function ticked()
	UpdateSpeeds()
end

script.on_event(defines.events.on_research_finished, function(event)
	script.on_event(ontick, ticked)
end)
I played the game, saved and quit. On load, the game give me an error (......(a nil value).....) on line 6. ( for _,f in pairs(game.forces) do)
Correct. I've made an github for this mod, so I can work more easily on it.
Very good at pressing buttons.

User avatar
Grandirus
Burner Inserter
Burner Inserter
Posts: 14
Joined: Fri Jun 12, 2015 7:21 pm
Contact:

Re: [0.12.x] Craft Faster

Post by Grandirus »

MagicLegend wrote:
Grandirus wrote:Hi.
I have got this to work (0.12.16) changed the "control.lua" to this:

Code: Select all

require("defines")

local ontick=defines.events.on_tick

function UpdateSpeeds()
	for _,f in pairs(game.forces) do
		if f.technologies["faster-crafting-5"].researched then
			f.manual_crafting_speed_modifier = 2
		elseif f.technologies["faster-crafting-4"].researched then
			f.manual_crafting_speed_modifier = 1.4
		elseif f.technologies["faster-crafting-3"].researched then
			f.manual_crafting_speed_modifier = 0.9
		elseif f.technologies["faster-crafting-2"].researched then
			f.manual_crafting_speed_modifier = 0.5
		elseif f.technologies["faster-crafting-1"].researched then
			f.manual_crafting_speed_modifier = 0.2
		else
			f.manual_crafting_speed_modifier = 0
		end
		--game.players[1].print(f.name..f.manual_crafting_speed_modifier)
	end
	script.on_event(ontick,nil)
end

script.on_init(UpdateSpeeds)
script.on_load(UpdateSpeeds)

function ticked()
	UpdateSpeeds()
end

script.on_event(defines.events.on_research_finished, function(event)
	script.on_event(ontick, ticked)
end)
I played the game, saved and quit. On load, the game give me an error (......(a nil value).....) on line 6. ( for _,f in pairs(game.forces) do)
Correct. I've made an github for this mod, so I can work more easily on it.
So, there is some repair to the Load issue?
I really liked this mod.

User avatar
Klonan
Factorio Staff
Factorio Staff
Posts: 5151
Joined: Sun Jan 11, 2015 2:09 pm
Contact:

Re: [0.12.x] Craft Faster

Post by Klonan »

Grandirus wrote:
MagicLegend wrote:
Grandirus wrote:Hi.
I have got this to work (0.12.16) changed the "control.lua" to this:

Code: Select all

require("defines")

local ontick=defines.events.on_tick

function UpdateSpeeds()
	for _,f in pairs(game.forces) do
		if f.technologies["faster-crafting-5"].researched then
			f.manual_crafting_speed_modifier = 2
		elseif f.technologies["faster-crafting-4"].researched then
			f.manual_crafting_speed_modifier = 1.4
		elseif f.technologies["faster-crafting-3"].researched then
			f.manual_crafting_speed_modifier = 0.9
		elseif f.technologies["faster-crafting-2"].researched then
			f.manual_crafting_speed_modifier = 0.5
		elseif f.technologies["faster-crafting-1"].researched then
			f.manual_crafting_speed_modifier = 0.2
		else
			f.manual_crafting_speed_modifier = 0
		end
		--game.players[1].print(f.name..f.manual_crafting_speed_modifier)
	end
	script.on_event(ontick,nil)
end

script.on_init(UpdateSpeeds)
script.on_load(UpdateSpeeds)

function ticked()
	UpdateSpeeds()
end

script.on_event(defines.events.on_research_finished, function(event)
	script.on_event(ontick, ticked)
end)
I played the game, saved and quit. On load, the game give me an error (......(a nil value).....) on line 6. ( for _,f in pairs(game.forces) do)
Correct. I've made an github for this mod, so I can work more easily on it.
So, there is some repair to the Load issue?
I really liked this mod.

Another mod calledCrafting Speed Research does the same thing and works in 0.12.11+

User avatar
Grandirus
Burner Inserter
Burner Inserter
Posts: 14
Joined: Fri Jun 12, 2015 7:21 pm
Contact:

Re: [0.12.x] Craft Faster

Post by Grandirus »

Klonan wrote:
Grandirus wrote:
MagicLegend wrote:
Grandirus wrote:Hi.
I have got this to work (0.12.16) changed the "control.lua" to this:

Code: Select all

require("defines")

local ontick=defines.events.on_tick

function UpdateSpeeds()
	for _,f in pairs(game.forces) do
		if f.technologies["faster-crafting-5"].researched then
			f.manual_crafting_speed_modifier = 2
		elseif f.technologies["faster-crafting-4"].researched then
			f.manual_crafting_speed_modifier = 1.4
		elseif f.technologies["faster-crafting-3"].researched then
			f.manual_crafting_speed_modifier = 0.9
		elseif f.technologies["faster-crafting-2"].researched then
			f.manual_crafting_speed_modifier = 0.5
		elseif f.technologies["faster-crafting-1"].researched then
			f.manual_crafting_speed_modifier = 0.2
		else
			f.manual_crafting_speed_modifier = 0
		end
		--game.players[1].print(f.name..f.manual_crafting_speed_modifier)
	end
	script.on_event(ontick,nil)
end

script.on_init(UpdateSpeeds)
script.on_load(UpdateSpeeds)

function ticked()
	UpdateSpeeds()
end

script.on_event(defines.events.on_research_finished, function(event)
	script.on_event(ontick, ticked)
end)
I played the game, saved and quit. On load, the game give me an error (......(a nil value).....) on line 6. ( for _,f in pairs(game.forces) do)
Correct. I've made an github for this mod, so I can work more easily on it.
So, there is some repair to the Load issue?
I really liked this mod.

Another mod calledCrafting Speed Research does the same thing and works in 0.12.11+
Thanks, it works.

Post Reply

Return to “Mods”