Mining Drones 2.0 Remastered

by AivanF

Adds mining drones and depots providing great yet cusomizable balance: - robust drones recipe ingredients instead of pure iron - normal pollution rate - electric energy usage - editable stack sizes - many compatible mods And so much more! Everything is configurable, many supported mods. Locales: 🇬🇧 English 🇩🇪 Deutsch 🇪🇸 Español 🇫🇷 Français 🇹🇷 Türkçe 🇺🇦 Український 🇷🇺 Русский 🇨🇳 中文

Content
5 months ago
1.1 - 2.0
18.3K
Mining

g Unable to launch game with this enabled

2 months ago

Unable to load Factorio with this mod enabled as of today.

"Failed to load mods: File base/graphics/icons/ship-wreck/small-ship-wreck.png not found
Mods to be disabled:
Mining_Dones_Remastered (2.1.4)

2 months ago

Same error, after last Factorio experimetntal build update.
Most other mods, i use, already require last experimental build.

Wa can't play :)

2 months ago

+1

2 months ago

Hmm, in current stable (2.0.32) the graphic file is there. And you shouldn't play experimental versions unless you know what you are doing and know that things break more easier.

a month ago
(updated a month ago)

You can download the zip file of the Stable Branch and find / copy the "small-ship-wreck" file and paste it into either the experimental Factorio code where it belonged before, or put it into the Mining Drones Remaster zip and update a few lines of code to reference it.
You can download the Stable . zip on Factorio's website and find the graphic file in the zip file at:
"Factorio\data\base\graphics\icons\ship-wreck\small-ship-wreck.png"
I then placed it in the Mining Drones Remastered zip at:
"Mining_Drones_Remastered_2.1.4.zip\Mining_Drones_Remastered\graphics\mining-drones/small-ship-wreck.png"

You then just need to modify 2 lines of code in the "Mining_Drones_Remastered_2.1.4.zip\Mining_Drones_Remastered\data\entities\attack_proxy\attack_proxy.lua" file to add this new file location.
On line 16:

filename = "__Mining_Drones_Remastered__/graphics/mining-drones/small-ship-wreck.png",

On line 327:

icon = "__Mining_Drones_Remastered__/graphics/mining-drones/small-ship-wreck.png",

Also, to account for the 2.0.35 changes, you also need to update some of the code for the mining drone walking sound. In the "Mining_Drones_Remastered_2.1.4.zip\Mining_Drones_Remastered\data\entities\mining_drone\mining_drone_entity.lua" file, you need to find the code starting at line 161:

walking_sound = sound_enabled and
    {
      aggregation =
      {
        max_count = 2,
        remove = true
      },
      variations = sound
    } or nil

and replace that with the single line:

    walking_sound = sound_enabled and sound or nil

New response