Posted 31 October 2014 - 03:50 PM
Because our base is not in the overworld the dimension is unloaded when everyone leaves. Then all of our messages get deleted/ wiped. Is there any way to save the the last 4 or 5 messages then display them on a monitor when the computer comes back on?
This is what I have right now
This is what I have right now
attachedMonitor = peripheral.wrap("top")
attachedMonitor.setTextScale(.5)
attachedMonitor.setTextColor(colors.black)
attachedMonitor.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
write("Username: ")
local user = read()
write("Message: ")
local msg = read()
term.clear()
term.setCurosrPos(1,1)
term.redirect(peripheral.wrap("top"))
print(">"..msg.." ~"..user)