Page 1 of 2

[Mod 0.14]Mod Reactor 1.0.0

Posted: Mon Sep 14, 2015 6:33 am
by dimakuzmin
ImageImageImage

Описание
Загрузки
Кто может помочь моду в развитии:
yandex.money:410012685183219
webmoney
Z797107750648
U236063274614

Re: Mod Reactor 0.22 ver

Posted: Mon Sep 14, 2015 6:51 am
by jorgenRe
I see you was using a fair few print functions so you might wanna create a function in the beginning that you can easiliy use so you can save some time when developing your mod :)!

Code: Select all

function message(mes)
  for i, player in ipairs(game.players) do
    player.print(mes)
  end
end
Also i got to say for this to be your first post i'm impressed with just how big that mod of yours is :)!

Re: Mod Reactor 0.22 ver

Posted: Wed Sep 16, 2015 2:50 pm
by Oswald_Mandus
Very good mod, but please upgrade your English. :D

Always wanted a mod to produce extra petroleum gas.

P.S (Я русский, но в техническом английском силен. Если будет время смогу и с переводом помочь.) 8-)

Re: Mod Reactor 0.22 ver

Posted: Tue Sep 22, 2015 12:13 pm
by SHiRKiT
All you need is a better description so people can understand your mod before downloading. That would be great :D

Re: Mod Reactor 0.22 ver

Posted: Thu Oct 15, 2015 8:45 pm
by aklesey1
All natural gases like ethan methan and butane is cool - please continue your work :D

Re: Mod Reactor 0.22 ver

Posted: Wed Oct 21, 2015 1:58 pm
by dimakuzmin
Update mod for 0.12.12

Re: Mod Reactor 0.24

Posted: Wed Oct 21, 2015 5:08 pm
by Airat9000
good! i am go testing!

Re: [Mod 0.12.12]Mod Reactor 0.25

Posted: Fri Oct 23, 2015 1:53 pm
by dimakuzmin
Many fixes.
fix graphic.
new ver 0.0.25

Re: [Mod 0.12.12]Mod Reactor 0.0.25

Posted: Sun Nov 08, 2015 8:25 pm
by Airat9000
good mod!! a i am testing!!
good work! more updates!

Re: [Mod 0.12.12]Mod Reactor 0.25

Posted: Sat Nov 14, 2015 3:22 am
by Airat9000
dimakuzmin wrote:Many fixes.
fix graphic.
new ver 0.0.25
please add to modules pump in

[Mod 0.12]Mod Reactor 0.0.26

Posted: Mon Apr 18, 2016 8:00 pm
by dimakuzmin
New Update.

Re: [Mod 0.12]Mod Reactor 0.0.26

Posted: Tue Apr 19, 2016 3:20 pm
by Factorio2016
Very long forum topic, put pictures under the spoiler.
it would be better
https://forums.factorio.com/forum/vie ... 89&t=13493

Re: [Mod 0.12]Mod Reactor 0.0.26

Posted: Tue Apr 19, 2016 5:25 pm
by Guest_4544
Crash when using the Ore Mine MK1 and MK2

Code: Select all

Error while running the event handler:
__reactor__/control.lua:138: attempt to index global 'event' (a nil value) 

Re: [Mod 0.12]Mod Reactor 0.0.27

Posted: Wed Apr 20, 2016 11:47 am
by dimakuzmin
Ver Reactor 0.0.27 fixed Ore Mane Mk1 + Mk2
https://mega.nz/#!a55R0K4B!53gldkSr9V8D ... LSSJwG5vWQ

Re: [Mod 0.12]Mod Reactor 0.0.27

Posted: Wed Apr 20, 2016 8:56 pm
by Guest_4544
dimakuzmin wrote:Ver Reactor 0.0.27 fixed Ore Mane Mk1 + Mk2
Great, this fix worked.

The Chemical Injection Chamber is missing from "Ore Washang" (Ore Washing) Technology.
Which causes the Copper_Shard , Iron_Shard unobtainable due to missing structure.

Workaround fix (ingame):
/c for i , force in pairs(game.forces) do force.recipes["Chemical Injection Chamber"].enabled = true end

Maybe in the future you should check if the file name and stuff referencing to it is case-sensitive, I had to rename a few things because in Linux files are case-sensitive (i.e. Stuff.txt is not the same as STUFF.txt),
which causes Factorio to crash upon startup.
from Lava-Generators.lua:
filename = "__reactor__/graphics/entity/lava-boiler/lava-boiler-left.png",
should be
filename = "__reactor__/graphics/entity/Lava-boiler/Lava-boiler-left.png",
from NatureGasFluids.lua
icon = "__reactor__/graphics/fluid/brine.png",
should be:
icon = "__reactor__/graphics/fluid/Brine.png",

also ReactorInput-Chest1x1 and ReactorInput-Chest5x5 is not craftable and is not added on any technology seeing that the Fusion/Uranium Reactor needs them it is mandatory that you add them.
I was previously confused all the time why it complains about a port and I couldn't find it at all.

Re: [Mod 0.12]Mod Reactor 0.0.28

Posted: Thu Apr 21, 2016 8:56 am
by dimakuzmin
reactor 0.0.28
fixed lang files (RU)/return from reactor 0.0.25
add reactor port crafting nuclear/fussion
fixed/maybe not (not tested) crush game images linux
fixed OreWashing techology add recipe unlock Chemical Injection Chamber.
many changes
https://mega.nz/#!Lx4wzLiR!4eZbeSMbI78i ... tjVfv5el78

Re: [Mod 0.12]Mod Reactor 0.0.28

Posted: Thu Apr 21, 2016 12:43 pm
by Guest_4544
You totally fucked up the lava boiler.

Here is how it should look like:
http://pastebin.com/bHhSrR3P

There is also a error when placing the lava pump above the lava boiler

Code: Select all

Error while running the event handler:
__reactor__/control.lua:417: attempt to index global 'resultLiq4' (a nil value)
Have also this migration script which fixes the naming of the lithium cells to the renamed item one (i.e. no items is lost now), forcing to reload technology/recipes and unlocking the recipes from technologies that already got researched.
The migration scripts needs to be kept due to the way Factorio handles these.

http://www40.zippyshare.com/v/znNVFu0t/file.html
https://wiki.factorio.com/index.php?tit ... on_scripts

Re: [Mod 0.12]Mod Reactor 0.0.28

Posted: Thu Apr 21, 2016 1:17 pm
by dimakuzmin
Guest_4544 wrote:You totally fucked up the lava boiler.

Here is how it should look like:
http://pastebin.com/bHhSrR3P

There is also a error when placing the lava pump above the lava boiler

Code: Select all

Error while running the event handler:
__reactor__/control.lua:417: attempt to index global 'resultLiq4' (a nil value)
Have also this migration script which fixes the naming of the lithium cells to the renamed item one (i.e. no items is lost now), forcing to reload technology/recipes and unlocking the recipes from technologies that already got researched.
The migration scripts needs to be kept due to the way Factorio handles these.

http://www40.zippyshare.com/v/znNVFu0t/file.html
https://wiki.factorio.com/index.php?tit ... on_scripts
/c remote.call("Reactor", "ResetAll")

control fix later

Re: [Mod 0.12]Mod Reactor 0.1.0

Posted: Sat Apr 23, 2016 7:59 pm
by dimakuzmin
Update Reactor To Version 0.1.0
fixed lava geneartor
add lava pump and lava resource
fix solar panel vorking
temporary off nuclear reactor and fussion reactor, natureGas machines
resorting files

Re: [Mod 0.13.13]Mod Reactor 0.2.0

Posted: Tue Aug 02, 2016 4:38 pm
by dimakuzmin
New Update. For factorio 0.13.13