Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --
- -- https://www.youtube.com/watch?v=97gSDBouzpI
- --
- --[[Key: WITH TEXT WRITTEN OUTSIDE OF WHILE TRUE
- AND COORDINATES FIXED TO >=
- white=bedrockium
- black=cobalt
- gray=steel
- yellow=gold
- red=iron
- pink=obsidian
- --]]
- mon = peripheral.wrap("right")
- rs.setOutput("bottom",false)
- mon.setBackgroundColor(colors.black)
- mon.clear()
- mon.setTextScale(1)
- mon.setCursorPos(1,2)
- mon.setTextColor(colors.white)
- mon.write("Bedrockium")
- mon.setCursorPos(1,4)
- mon.write("Cobalt")
- mon.setCursorPos(1,6)
- mon.write("Steel")
- mon.setCursorPos(1,8)
- mon.write("Gold")
- mon.setCursorPos(1,10)
- mon.write("Iron")
- mon.setCursorPos(1,12)
- mon.write("Obsidian")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- while true do
- --Touch screen function?
- event, side, x, y = os.pullEvent("monitor_touch")
- --Clear Function
- if x >= 20 and x <= 30 and y == 2 then
- print("cleared")
- rs.setBundledOutput("back",0)
- rs.setOutput("bottom",true)
- mon.setBackgroundColor(colors.black)
- mon.clear()
- mon.setTextScale(1)
- mon.setCursorPos(1,2)
- mon.setTextColor(colors.white)
- mon.write("Bedrockium")
- mon.setCursorPos(1,4)
- mon.write("Cobalt")
- mon.setCursorPos(1,6)
- mon.write("Steel")
- mon.setCursorPos(1,8)
- mon.write("Gold")
- mon.setCursorPos(1,10)
- mon.write("Iron")
- mon.setCursorPos(1,12)
- mon.write("Obsidian")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.lime)
- mon.write("Clear Tank")
- else
- rs.setOutput("bottom",false)
- end
- if x >= 1 and x <= 10 and y == 2 then
- rs.setBundledOutput("back",colors.white)
- rs.setOutput("bottom", false)
- print("Bedrockium")
- end
- if x >= 1 and x <= 10 and y == 2 then
- mon.setCursorPos(1,2)
- mon.setTextColor(colors.lime)
- mon.write("Bedrockium-")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- end
- if x >= 1 and x <= 10 and y == 4 then
- print("Cobalt")
- rs.setOutput("bottom", false)
- rs.setBundledOutput("back",colors.black)
- end
- if x >= 1 and x <= 10 and y == 4 then
- mon.setCursorPos(1,4)
- mon.setTextColor(colors.lime)
- mon.write("Cobalt-")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- end
- --steel gray
- if x >= 1 and x <= 10 and y == 6 then
- print("steel")
- rs.setOutput("bottom", false)
- rs.setBundledOutput("back",colors.gray)
- end
- if x >= 1 and x <= 10 and y == 6 then
- mon.setCursorPos(1,6)
- mon.setTextColor(colors.lime)
- mon.write("Steel-")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- end
- if x >= 1 and x <= 10 and y == 8 then --yellow=gold y @ 8
- print("Gold")
- rs.setOutput("bottom", false)
- rs.setBundledOutput("back",colors.yellow)
- end
- if x >= 1 and x <= 10 and y == 8 then --yellow=gold y @ 8
- mon.setCursorPos(1,8)
- mon.setTextColor(colors.lime)
- mon.write("Gold-")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- end
- if x >= 1 and x <= 10 and y == 10 then --iron=red y==10
- print("iron")
- rs.setOutput("bottom", false)
- rs.setBundledOutput("back",colors.red)
- end
- if x >= 1 and x <= 10 and y == 10 then --iron=red y==10
- mon.setCursorPos(1,10)
- mon.setTextColor(colors.lime)
- mon.write("Iron-")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- end
- if x >= 1 and x <= 10 and y == 12 then --obsidian=pink y==12
- print("Obsidian")
- rs.setOutput("bottom", false)
- rs.setBundledOutput("back",colors.pink)
- end
- if x >= 1 and x <= 10 and y == 12 then --obsidian=pink y==12
- -- mon.setCursorPos(1,12)
- -- mon.setTextColor(color.lime)
- -- mon.write("Obsidian-")
- mon.setCursorPos(20,2)
- mon.setTextColor(colors.red)
- mon.write("Clear Tank")
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement