Advertisement
Guest User

MESystem.lua

a guest
Aug 9th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. local component = require('component')
  2. local sides = require('sides')
  3. local term = require('term')
  4.  
  5. --- Initialize our barrels
  6. redstoneBarrel = component.proxy('532c4882-8999-4a6f-8771-42dca8e36479')
  7. diamondBarrel = component.proxy('7ee6ccc8-1c81-4e1f-acaf-54397496ebfa')
  8. cobblestoneBarrel = component.proxy('15d02141-62c4-4026-9fa3-8b766b3d47fe')
  9.  
  10. allBarrels = {}
  11. allBarrels[diamondBarrel.getAllStacks()[2].all().display_name] = diamondBarrel
  12. allBarrels[redstoneBarrel.getAllStacks()[2].all().display_name] = redstoneBarrel
  13. allBarrels[cobblestoneBarrel.getAllStacks()[2].all().display_name] = cobblestoneBarrel
  14.  
  15. userChest = component.proxy('d6d5b397-6c3f-4291-9f3d-af2a67fcfd92')
  16. redstoneBlock = component.proxy('5f2a5daf-d4d4-42e8-8125-a0a4778a87d7')
  17.  
  18.  
  19. function printAllItems()
  20.   for key,value in pairs(allBarrels) do print(key,value.getAllStacks()[2].all().qty) end
  21. end
  22.  
  23. function pushItemToInventory(inventory_from, direction, slot_from,slot_to)
  24.   inventory_from.pushItemIntoSlot(direction,slot_from,1,slot_to)
  25. end
  26. while true do
  27.   term.clear()
  28.   printAllItems()
  29.   print("Item name:")
  30.   requestedItem = io.read()
  31.   if requestedItem == '' then do
  32.     redstoneBlock.setOutput(sides.down,15)
  33.   end
  34.   print("Amount:")
  35.   amount = io.read()
  36.   allBarrels[requestedItem].pushItemIntoSlot(2,2,tonumber(amount),1)
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement