4 posts
Posted 16 February 2013 - 04:36 AM
How do you make the time command run on a monitor with out causing an error when you walk 50 or so blocks away?
8543 posts
Posted 16 February 2013 - 04:46 AM
Split into new topic.
Please provide the code you are using and any error messages you are receiving.
259 posts
Posted 16 February 2013 - 02:33 PM
hmm i had a hard time too but i got this it takes to files and is a bit glitchy lol
file name: t
shell.run("monitor", "side", "time")
os.reboot()
file name: startup
shell.run("time")
as i said its glitchy but it has a updated time and works fine
edit: file name is t not time that will screw up the whole thing. :P/>
58 posts
Posted 17 February 2013 - 05:59 PM
Do you have optifine installed, because a known issue of optifine is that from far away it will make it appear glitchy. So this isnt a computercraft issue its a optifine/minecraft issue
259 posts
Posted 18 February 2013 - 06:50 PM
Its on tekkit
818 posts
Posted 19 February 2013 - 01:22 AM
hmm i had a hard time too but i got this it takes to files and is a bit glitchy lol
file name: t
shell.run("monitor", "side", "time")
os.reboot()
file name: startup
shell.run("time")
as i said its glitchy but it has a updated time and works fine
edit: file name is t not time that will screw up the whole thing. :P/>
mon = peripheral.wrap("right")
while true do
mon.clear()
mon.setCursorPos(1,1)
mon.write(textutils.formatTime(os.time()))
sleep(0.5)
end
259 posts
Posted 20 February 2013 - 01:35 PM
Ahh that could work why didn't i think of that oops :P/>