Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local screen = peripheral.find("monitor")
- screen.setCursorPos(1,1)
- screen.clear()
- local dfpwm = require("cc.audio.dfpwm")
- local old_term = term.redirect(screen)
- local image = paintutils.loadImage("coffee.nfp")
- paintutils.drawImage(image, screen.getCursorPos())
- term.redirect(old_term)
- screen.setBackgroundColor(colors.brown)
- screen.setTextScale(0.5)
- screen.setCursorPos(1,1)
- screen.setTextColor(colors.yellow)
- screen.write("Coffee Machine")
- screen.setCursorPos(2,2)
- screen.setTextColor(colors.yellow)
- screen.write("By Playerbrand1")
- local on = true
- local speaker = peripheral.find("speaker")
- local barrel1 = peripheral.wrap("minecraft:barrel_66")
- local barrel2 = peripheral.wrap("minecraft:barrel_68")
- local barrel3 = peripheral.wrap("minecraft:barrel_67")
- local coffee = false
- while true do
- for slot, item in pairs(barrel2.list()) do
- coffee = false
- if item.name == "herbalbrews:coffee" then
- coffee = true
- end
- end
- if coffee == true then
- screen.setCursorPos(2,5)
- screen.setTextScale(0.8)
- screen.write("Insert 1 Diamond for 16 coffee cups")
- for slot, item in pairs(barrel1.list()) do
- if item.name == "minecraft:diamond" and coffee == true then
- print("bought 1 coffee")
- barrel1.pushItems(peripheral.getName(barrel3),slot,1)
- for slot, item in pairs(barrel2.list()) do
- local counter = 0
- if item.name == "herbalbrews:coffee" then
- counter = 1
- barrel2.pushItems(peripheral.getName(barrel1),slot,16)
- screen.clearLine()
- screen.setTextColor(colors.blue)
- screen.setCursorPos(5,5)
- screen.write("Thanks for purchasing")
- screen.setCursorPos(7,5)
- screen.setTextColor(colors.yellow)
- local decoder = dfpwm.make_decoder()
- for input in io.lines("voice.dfpwm", 16 * 1024) do
- local decoded = decoder(input)
- while not speaker.playAudio(decoded) do
- os.pullEvent("speaker_audio_empty")
- end
- end
- local DiscordHook = require("DiscordHook") local success, hook = DiscordHook.createWebhook("https://discord.com/api/webhooks/1204484867291746315/rLh0P-qabemINnDfkQE_qbjeDgOnDhXKJ_VXdpd4-kyT6fFpSUf04YKZWOkWErpQGEMf") if not success then error("Webhook connection failed! Reason: " .. hook) end hook.send("**Someone** has bought ***16x*** coffee for ***1*** diamond","Coffee Machien: Lane")
- sleep(3)
- os.reboot()
- else
- if counter == 0 then coffee = false end
- end
- end
- end
- end
- sleep(1)
- screen.clearLine()
- if on == true then
- on = false
- screen.setTextColor(colors.white)
- else
- screen.setTextColor(colors.yellow)
- on = true
- end
- elseif coffee == false then
- screen.setCursorPos(1,5)
- screen.clearLine()
- screen.setTextColor(colors.red)
- screen.write("We're out of coffee! We're so sorry!")
- end
- end
Add Comment
Please, Sign In to add comment