Awesome jukebox

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

frederikam

New Member
Jul 29, 2019
836
0
1
Or just use computercraft.

Code:
print("Please put a disk drive with a disk in it, next to me. Then give me a redstone signal on the opposite side of the disk drive.")
while true do
    os.pullEvent("redstone")
    if rs.getInput("back") then
        disk.playAudio("front")
    elseif rs.getInput("left") then
        disk.playAudio("right")
    elseif rs.getInput("right") then
        disk.playAudio("left")
    elseif rs.getInput("front") then
        disk.playAudio("back")
    elseif rs.getInput("top") then
        disk.playAudio("bottom")
    elseif rs.getInput("bottom") then
        disk.playAudio("top")
    end
end

  1. Craft a computer and put it down.
  2. Run "pastebin get LrJ1LERy startup" in the terminal.
  3. Put a disk drive on a side of the computer, with a music disk.
  4. Run "reboot" in the terminal
  5. Run a redstone signal over to the computer's opposite side of the disk drive. For example in the front when the disk drive is on the back of the computer.
 

seth_321

New Member
Jul 29, 2019
1
0
0
With the Sonictron 9001, how do I change the disks? I did it once and can't figure it out again... basically you click to the first disk and push something different to change it to a different disk, right?