Advertisement
Inksaver

Dungeon mob spawner farm sorter

Dec 18th, 2020
1,716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.97 KB | None | 0 0
  1. version = 20201218.1211
  2. -- place turtle at bottom of mob spawner farm drop
  3. -- for skeletons put chests on 3 sides and below
  4. -- for zombies put chests on left and right sides
  5. -- turtle collects drops from above, in front and stores in chests
  6. local function initialise()
  7.     -- rotate until not facing chest, then turnRight to face first one on player's left
  8.     local success = true
  9.     while success do
  10.         success, blockType = turtle.inspect() --returns false if no block in front
  11.         turtle.turnRight()
  12.     end
  13.     -- now facing first chest(s) on player's left
  14. end
  15.  
  16.  
  17. local function anyDrops(spawnerType)
  18.     local isItems = false
  19.     for i = 1, 16 do
  20.         if turtle.getItemCount(i) > 0 then
  21.             isItems = true
  22.             if spawnerType == "" then -- only runs until spawner identified
  23.                 local data = turtle.getItemDetail(i)
  24.                 if data.name:find("arrow") ~= nil or data.name:find("bone") ~= nil then
  25.                     spawnerType = "skeleton"
  26.                 elseif data.name:find("flesh") ~= nil then
  27.                     spawnerType = "zombie"
  28.                 end
  29.             end
  30.         end
  31.     end
  32.     return isItems, spawnerType
  33. end
  34.  
  35. local function craftBows()
  36.     -- starts with empty inventory
  37.     local success = false
  38.     turtle.select(1)
  39.     if turtle.suckDown() then --first bow picked
  40.         if turtle.suckDown() then -- second bow picked
  41.             if turtle.craft() then -- first repair
  42.                 if turtle.suckDown() then -- third bow picked
  43.                     if turtle.craft() then -- second repair
  44.                         if turtle.suckDown() then -- third bow picked
  45.                             if turtle.craft() then -- third repair
  46.                                 turtle.drop() -- put into chest
  47.                                 success = true
  48.                             end
  49.                         end
  50.                     end
  51.                 end
  52.             end
  53.         end
  54.     end
  55.     turtle.dropDown() -- if only one bow return to storage
  56.     return success -- one bow dropped into rear chest
  57. end
  58.  
  59. local function storeCraftable()
  60.     for i = 1, 16 do
  61.         if turtle.getItemCount(i) > 0 then
  62.             turtle.select(i)
  63.             data = turtle.getItemDetail()
  64.             if data.name:find("bow") ~= nil then
  65.                 print("emptying: bow from slot "..i)
  66.                 turtle.dropDown()
  67.             end
  68.         end
  69.     end
  70. end
  71.  
  72. local function emptyValuables()
  73.     data = {}
  74.     for i = 1, 16 do
  75.         if turtle.getItemCount(i) > 0 then
  76.             turtle.select(i)
  77.             data = turtle.getItemDetail()
  78.             if data.name:find("bone") ~= nil then
  79.                 print("emptying: ".. data.name.. "from slot "..i)
  80.                 turtle.drop()
  81.             end
  82.         end
  83.     end
  84. end
  85.  
  86. local function emptyNonCraftable()
  87.     --skeleton spawner arrows, zombie rotten flesh
  88.     --armour
  89.     data = {}
  90.     for i = 1, 16 do
  91.         if turtle.getItemCount(i) > 0 then
  92.             turtle.select(i)
  93.             data = turtle.getItemDetail()
  94.             if data.name:find("arrow") ~= nil or data.name:find("flesh") ~= nil then
  95.                 print("emptying: "..data.name.." from slot "..i)
  96.                 turtle.drop()
  97.             end
  98.         end
  99.     end
  100. end
  101.  
  102. local function emptyMisc()
  103.     data = {}
  104.     for i = 1, 16 do
  105.         if turtle.getItemCount(i) > 0 then
  106.             turtle.select(i)
  107.             data = turtle.getItemDetail()
  108.             print("emptying: ".. data.name.. "from slot "..i)
  109.             turtle.drop()
  110.         end
  111.     end
  112. end
  113.  
  114. local function main()
  115.     -- clear screen
  116.     term.clear()
  117.     term.setCursorPos(1,1)
  118.     initialise()
  119.     local spawnerType = ""
  120.     local drops = false
  121.     while true do
  122.         term.clear()
  123.         term.setCursorPos(1,1)
  124.         print("Collecting drops from above..")
  125.         while turtle.suckUp() do end
  126.         drops, spawnerType = anyDrops(spawnerType)
  127.         if drops then
  128.             -- drop arrows or rotten flesh
  129.             emptyNonCraftable() -- into chest on left of player
  130.             turtle.turnRight() -- facing rear chest(s)
  131.             storeCraftable() --drop bows into chest below
  132.             turtle.turnRight() -- facing chest on players right
  133.             emptyValuables()
  134.             emptyMisc()
  135.             if spawnerType == "skeleton" then
  136.                 turtle.turnLeft() -- back to rear chest
  137.                 print("Repairing bows..")
  138.                 while craftBows() do end
  139.                 print("Repairing bows completed")
  140.                 turtle.turnRight()
  141.             end
  142.             turtle.turnRight()
  143.             print("Collecting drops from the floor..")
  144.             while turtle.suck() do end -- get dropped items from front
  145.             turtle.turnRight()
  146.         else
  147.             print("Waiting 30 secs for further drops")
  148.             sleep(30)
  149.         end
  150.     end
  151. end
  152.  
  153. main()
  154.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement