Guest User

bloodaltar5

a guest
Jun 16th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.66 KB | None | 0 0
  1. --Wrap the Blood Altar
  2. a=peripheral.wrap("left")
  3.  
  4. -- Update this depending on what direction you have a chest(s) against your altar, valid directions are "north", "south", "east", "west"
  5. -- This is the direction of the 'pull' chest where the stone is supplied
  6. pullDir = "east"
  7. -- This is the direction of the 'push' chest, where the created slates will be stored.
  8. pushDir = "east"
  9.  
  10. -- Declare id numbers for the different slates for the computer to compare to.
  11. ids = {...}
  12. ids["Basic"] = AWWayofTime:blankSlate
  13. ids["Reinforced"] = AWWayofTime:reinforcedSlate
  14. ids["Imbued"] = AWWayofTime:imbuedSlate
  15. ids["Demonic"] = AWWayofTime:demonicSlate
  16. ids["Stone"] = minecraft:stone
  17.  
  18. item = a.getStackInSlot(1)
  19.  
  20. -- This function handles creating the slates once things are verified
  21. local function slate(dest,amt)
  22.     for i=1,amt do
  23.         count = amt + 1 - i
  24.         term.clear()
  25.   term.setCursorPos(1,1)
  26.         print("Number of ", dest," Slates left to make: ",count)
  27.         pullIt(pullDir)
  28.         item = a.getStackInSlot(1)
  29.         while item == nil do
  30.             pullIt(pullDir)
  31.             item = a.getStackInSlot(1)
  32.         end
  33.         id=item["id"]
  34.         while id ~= ids[dest] do
  35.             os.sleep(1)
  36.             item = a.getStackInSlot(1)
  37.             while item == nil do
  38.                 pullIt(pullDir)
  39.                 item = a.getStackInSlot(1)
  40.             end
  41.             id = item["id"]
  42.         end
  43.         pushIt(pushDir)
  44.     end
  45. end
  46.  
  47. -- The function that will pull items from the certain chest, allows for a chest size of up to 108 slots.  Will cycle through the slots till it finds an item to pull into the altar.
  48. function pullIt(pullDir)
  49.     item = a.getStackInSlot(1)
  50.     p = 1
  51.     while item == nil do
  52.         a.pullItem(pullDir,p,1)
  53.         p = p + 1
  54.         if p > 108 then
  55.             p = 1
  56.         end
  57.         item = a.getStackInSlot(1)
  58.     end
  59. end
  60.  
  61. -- The function that will push items into a certain chest, allows for a chest size of up to 108 slots.  Will cycle through the slots till it finds a slot to push into the chest.
  62. function pushIt(pushDir)
  63.     c = 1
  64.     while not a.pushItem(pushDir,c) do
  65.         c = c + 1
  66.         if c > 108 then
  67.             c = 1
  68.         end
  69.     end
  70. end
  71.  
  72. -- Function that will request the number of items to make then pass through to create the slates once a valid number has been entered.
  73. local function amount(dest)
  74.     rNum = "a"
  75.     while rNum ~= tonumber(rNum) do
  76.         term.clear()
  77.         term.setCursorPos(1,1)
  78.         print("Please enter the amount of ",dest," Slates to make")
  79.         print("Enter 'exit' to return")
  80.         print("-----------------------------------------")
  81.         rNum = read()
  82.         if rNum == "exit" then
  83.             return
  84.         end
  85.  
  86.         if tonumber(rNum) == nil then
  87.             print("Invalid Entry")
  88.             sleep(1)
  89.         elseif tonumber(rNum) > 0 then
  90.             slate(dest,rNum)
  91.             return
  92.         else
  93.             print("Invalid Number")
  94.             sleep(1)
  95.         end
  96.     end
  97. end
  98.  
  99. -- Main function that will run until q is pressed, certain key presses will go for different slates.
  100. while true do
  101.     term.clear()
  102.     term.setCursorPos(1,1)
  103.     print("Welcome to the Advanced Blood Altar Slate Maker")
  104.     print("-----------------------------------------------")
  105.     print(" Press Q to quit")
  106.     print(" Press B to create Basic Slates")
  107.     print(" Press R to create Reinforced Slates")
  108.     print(" Press I to create Imbued Slates")
  109.     print(" Press D to create Demonic Slates")
  110.  
  111.     local e, p1, x, y = os.pullEvent()
  112.     -- If we receive a Q key then we quit (like we said we would)
  113.         if e == "key" then
  114.             os.pullEvent("char")
  115.             if p1 == keys.q then return
  116.  
  117.             elseif p1 == keys.b then
  118.             dest = "Basic"
  119.             amount(dest)
  120.         elseif p1 == keys.r then
  121.             dest = "Reinforced"
  122.             amount(dest)
  123.         elseif p1 == keys.i then
  124.             dest = "Imbued"
  125.             amount(dest)
  126.         elseif p1 == keys.d then
  127.             dest = "Demonic"
  128.             amount(dest)
  129.         else
  130.             print("Invalid Keypress")
  131.             sleep(3)
  132.         end
  133.     end
  134. end
Add Comment
Please, Sign In to add comment