Hello
After some in deep thought I have decided that the PFR doesn't output enough power and I want to change it. Question is, how does one do that?
I downloaded some PFR related mods and looked at the code, now my head hurts! I have no skill what so ever in coding and was wondering if someone could scribble together a mod that lets me tinker with the power output? (I know how to edit a text file )
Any Help is greatly appreciated!
Regards
AK90
Portable Fusion Reactor Power output
Portable Fusion Reactor Power output
Main Rig
| i7 4790k @4.6Ghz 1.26v | 16GB RAM | MSI 2070 Super VENTUS OC | Custom water cooling | Fractal 1000W PSU | 3 24" monitors |
Server
| Dual X5670 Xeon | 16GB RAM | Several TB of HDD | |
| i7 4790k @4.6Ghz 1.26v | 16GB RAM | MSI 2070 Super VENTUS OC | Custom water cooling | Fractal 1000W PSU | 3 24" monitors |
Server
| Dual X5670 Xeon | 16GB RAM | Several TB of HDD | |
- eradicator
- Smart Inserter
- Posts: 5207
- Joined: Tue Jul 12, 2016 9:03 am
- Contact:
Re: Portable Fusion Reactor Power output
That's a single line:
Code: Select all
data.raw["generator-equipment"]["fusion-reactor-equipment"].power = "750kW"
Author of: Belt Planner, Hand Crank Generator, Screenshot Maker, /sudo and more.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.
Re: Portable Fusion Reactor Power output
It looks like only one string mod.
Download Notepad++ https://notepad-plus-plus.org/download/
Download this mod: viewtopic.php?f=135&t=45107
Start the game and then open .log file in game folder with Notepad++.
Find the string that you will to change.
Copy it and paste into data-updates.lua in your own mod folder.
Change the value and save the file.
Don't forget the info.json
- eradicator
- Smart Inserter
- Posts: 5207
- Joined: Tue Jul 12, 2016 9:03 am
- Contact:
Re: Portable Fusion Reactor Power output
@darkfrei:
Could you be a bit less aggressive about promoting your mod? I already posted the code and your mod is not needed to make new mods.
Could you be a bit less aggressive about promoting your mod? I already posted the code and your mod is not needed to make new mods.
Author of: Belt Planner, Hand Crank Generator, Screenshot Maker, /sudo and more.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.
Re: Portable Fusion Reactor Power output
I've make this reply a lot of time, there was no reply at the beginning. And now he can make small mods by themselves.eradicator wrote: ↑Wed Oct 17, 2018 10:26 am @darkfrei:
Could you be a bit less aggressive about promoting your mod? I already posted the code and your mod is not needed to make new mods.
Re: Portable Fusion Reactor Power output
Cheers mate!eradicator wrote: ↑Wed Oct 17, 2018 9:38 am That's a single line:Code: Select all
data.raw["generator-equipment"]["fusion-reactor-equipment"].power = "750kW"
Could you also supply the code for personal roboport MK2 recharge rate? I would like to tinker with that as well
Main Rig
| i7 4790k @4.6Ghz 1.26v | 16GB RAM | MSI 2070 Super VENTUS OC | Custom water cooling | Fractal 1000W PSU | 3 24" monitors |
Server
| Dual X5670 Xeon | 16GB RAM | Several TB of HDD | |
| i7 4790k @4.6Ghz 1.26v | 16GB RAM | MSI 2070 Super VENTUS OC | Custom water cooling | Fractal 1000W PSU | 3 24" monitors |
Server
| Dual X5670 Xeon | 16GB RAM | Several TB of HDD | |
Re: Portable Fusion Reactor Power output
The whole code of personal-roboport-mk2-equipment looks like You are need this one:AK90 wrote: ↑Wed Oct 17, 2018 5:32 pmCheers mate!eradicator wrote: ↑Wed Oct 17, 2018 9:38 am That's a single line:Code: Select all
data.raw["generator-equipment"]["fusion-reactor-equipment"].power = "750kW"
Could you also supply the code for personal roboport MK2 recharge rate? I would like to tinker with that as well
Code: Select all
data.raw["roboport-equipment"]["personal-roboport-mk2-equipment"].charging_energy = "1000kW"
Re: Portable Fusion Reactor Power output
Thanks! This will be really helpful.darkfrei wrote: ↑Wed Oct 17, 2018 6:58 pmThe whole code of personal-roboport-mk2-equipment looks likeAK90 wrote: ↑Wed Oct 17, 2018 5:32 pmCheers mate!eradicator wrote: ↑Wed Oct 17, 2018 9:38 am That's a single line:Code: Select all
data.raw["generator-equipment"]["fusion-reactor-equipment"].power = "750kW"
Could you also supply the code for personal roboport MK2 recharge rate? I would like to tinker with that as well
2018-10-17 20_57_15-D__Factorio_0.16_factorio-current.log - Notepad++.png
You are need this one:You can also change buffer_capacity, input_flow_limit, construction radius or robot amount limit.Code: Select all
data.raw["roboport-equipment"]["personal-roboport-mk2-equipment"].charging_energy = "1000kW"
Main Rig
| i7 4790k @4.6Ghz 1.26v | 16GB RAM | MSI 2070 Super VENTUS OC | Custom water cooling | Fractal 1000W PSU | 3 24" monitors |
Server
| Dual X5670 Xeon | 16GB RAM | Several TB of HDD | |
| i7 4790k @4.6Ghz 1.26v | 16GB RAM | MSI 2070 Super VENTUS OC | Custom water cooling | Fractal 1000W PSU | 3 24" monitors |
Server
| Dual X5670 Xeon | 16GB RAM | Several TB of HDD | |