Mega Bot Start


Start with Power Armor, Roboports and Robots. Compatible with other mods including Bob's Warfare/Logistics/Personal Equipment and Krastorio 2.

Utilities
3 years ago
0.15 - 1.1
18.8K

g Can this be added part way through a game?

4 years ago

So, I added this mod about 8 hours into a game. None of the additional goodies have appeared anywhere. The mod is active. Is there something else I need to do to get it going?

4 years ago

Hi,

you can do so by opening the console and executing this (slightly modified) version of the addon's code:

local items
local armor

items = {
    {"power-armor-mk2", 1},
    {"construction-robot", 50},
}
armor = {
    {"fusion-reactor-equipment"},
    {"fusion-reactor-equipment"},
    {"personal-roboport-mk2-equipment"},
    {"personal-roboport-mk2-equipment"},
    {"fusion-reactor-equipment"},
    {"fusion-reactor-equipment"},
    {"personal-roboport-mk2-equipment"},
    {"personal-roboport-mk2-equipment"},
    {"battery-mk2-equipment"},
    {"battery-mk2-equipment"},
    {"energy-shield-mk2-equipment"},
    {"energy-shield-mk2-equipment"},
    {"energy-shield-mk2-equipment"},
    {"energy-shield-mk2-equipment"},
}

local player = game.players[1]
for i, v in pairs(items) do
    player.insert{name = v[1], count = v[2]}
end

local grid = player.get_inventory(defines.inventory.character_armor)[1].grid
for  i, v in pairs(armor) do
    grid.put({name = v[1]})
end

0) unequip your armor if you have any.
1) press ^ to open console.
2) type "/c " and then paste the above code behind it.
3) press enter, game says this will disable achievements.
4) press arrow up to get the command again and hit enter.

This will give you the armor and robots as per addon settings to player 1.

New response