Guest User

#mineController.lua

a guest
Dec 24th, 2021
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.79 KB | None | 0 0
  1. {
  2.   turtleConfigAssignments = {
  3.     [ 9 ] = "o11",
  4.     [15] = "o50"
  5.   },
  6.   modemName = "modem_1",
  7.   miningConfigs = {
  8.     goHome = {
  9.       goto = {
  10.         y = 146,
  11.         x = 2499,
  12.         z = -60,
  13.       },
  14.     },
  15.     nether = {
  16.       minY = 5,
  17.       maxY = 123,
  18.       blockScores = {
  19.         [ "minecraft:ancient_debris" ] = 30,
  20.         [ "minecraft:nether_gold_ore" ] = 5,
  21.         [ "minecraft:crying_obsidian" ] = 31,
  22.         [ "minecraft:obsidian" ] = 1,
  23.         [ "minecraft:nether_quartz_ore" ] = 5,
  24.         [ "minecraft:glowstone" ] = 15,
  25.         [ "minecraft:soul_sand" ] = 3,
  26.       },
  27.     },
  28.     o11 = {
  29.       minY = 5,
  30.       maxY = 15,
  31.       blockScores = {
  32.         [ "minecraft:emerald_ore" ] = 50,
  33.         [ "minecraft:dark_oak_log" ] = 9,
  34.         [ "minecraft:sand" ] = 3,
  35.         [ "minecraft:coal_ore" ] = 16,
  36.         [ "minecraft:lapis_ore" ] = 0.15,
  37.         [ "minecraft:gold_ore" ] = 10,
  38.         [ "minecraft:birch_log" ] = 9,
  39.         [ "galacticraftcore:basic_block_core" ] = 5,
  40.         [ "minecraft:jungle_log" ] = 9,
  41.         [ "thermalfoundation:ore" ] = 5,
  42.         [ "minecraft:obsidian" ] = 1,
  43.         [ "minecraft:oak_log" ] = 9,
  44.         [ "tconstruct:ore" ] = 10,
  45.         [ "draconicevolution:draconium_ore" ] = 7,
  46.         [ "minecraft:acaia_log" ] = 9,
  47.         [ "bigreactors:oreyellorite" ] = 20,
  48.         [ "minecraft:crying_obsidian" ] = 31,
  49.         [ "quark:marble" ] = 10,
  50.         [ "minecraft:iron_ore" ] = 5,
  51.         [ "minecraft:diamond_ore" ] = 10,
  52.         [ "minecraft:redstone_ore" ] = 1,
  53.         [ "appliedenergistics2:charged_quartz_ore" ] = 20,
  54.         [ "appliedenergistics2:quartz_ore" ] = 15,
  55.       },
  56.     },
  57.     ["o50"] = {
  58.     }
  59.   },
  60.   monitorName = "top",
  61.   blocksToDump = {
  62.     [ "minecraft:cobblestone" ] = true,
  63.   },
  64. }
Advertisement
Add Comment
Please, Sign In to add comment