Posted 27 January 2017 - 02:30 AM
Hello, I have been trying to make a program which will display the current Minecraft time on my advanced computer. I can't figure out what's wrong, I don't think that it's the code but I will put it anyways:
function tim()
m = peripheral.wrap("right")
i = textutils.formatTime(os.time())
m.clear()
m.setCursorPos(1,2)
m.write(i)
m.setCursorPos(1,1)
m.write("Time Monitor v.0.1")
sleep(0.1)
tim()
end
tim()
What my problem is is that the program works perfectly with any monitor that isn't more than 1 block high. I'm new here, and so I looked through the other posts and posting guides, so I hope I am doing this right. :P/> Also, I don't get an error from it. No error on the monitor, none on the PC. Please help! I will continue experimenting around.