Page 1 of 1

It's no way to decrease manual_crafting_speed_modifier

Posted: Mon Aug 22, 2016 8:10 pm
by darkfrei
Hi!

This command can make your hand crafting speed higher:

Code: Select all

/c game.local_player.force.manual_crafting_speed_modifier=2
For 0.13.9 works:

Code: Select all

/c game.player.force.manual_crafting_speed_modifier=2
Howewer, by default this value is not 1, but 0.

You can check it with this command:

Code: Select all

/c game.player.print(game.player.force.manual_crafting_speed_modifier)
The new game in Vanilla 0.13.X
The new game in Vanilla 0.13.X
man_craft01.PNG (101.16 KiB) Viewed 2399 times
All of negatives inputs don't works, value -1 and lower stop any building progress.

Re: It's no way to decrease manual_crafting_speed_modifier

Posted: Mon Aug 22, 2016 8:15 pm
by prg
Try something between -1 and 0.

Re: It's no way to decrease manual_crafting_speed_modifier

Posted: Mon Aug 22, 2016 8:49 pm
by Rseding91
It's a modifier, it has a default value of 0 - that's by design.

Even the lua docs description says how it works: http://lua-api.factorio.com/latest/LuaF ... d_modifier

Re: It's no way to decrease manual_crafting_speed_modifier

Posted: Mon Aug 22, 2016 8:51 pm
by Klonan
prg wrote:Try something between -1 and 0.
This is right, it works something like this

0 = 100%
1 = 100% + 100% = 200%
0.5 = 100% + 50% = 150%
-1 = 100% + -100% = 0%
-0.5 = 100% + -50% = 50%