Posted 17 January 2013 - 10:32 AM
Hello there everybody
I'm quite new to computercraft. Nice to meet everbody!
I can't figure out why part of my little program doesn't work and hope you could point me in the right direction.
It crashes at the redstone.setBundledOutput part, where it tells me the error mentioned in the title. Any ideas what I left out?
Thanks in advance!
I'm quite new to computercraft. Nice to meet everbody!
I can't figure out why part of my little program doesn't work and hope you could point me in the right direction.
while true do
term.clear()
term.setCursorPos(1, 1)
print ("Energy on")
local input=read()
if input == "yes" then
redstone.setBundledOutput(bottom, colors.white)
print ("Ok then")
else
print("I'll be waiting")
end
end
It crashes at the redstone.setBundledOutput part, where it tells me the error mentioned in the title. Any ideas what I left out?
Thanks in advance!