Posted 20 May 2013 - 04:37 PM
EDIT: Fixed the server problem…. commas and periods look alike when you are skimming the code….
However I am still having the off server problem….
Thanks for this… i am having a really tough time figuring out what is wrong with my code….
I am starting computercraft with a door (original i know, but its what i need….) an have followed the tutorial (almost) to the letter….
Here is the code that I am using:
This for some reason is not working on a personal (non server world)…. the code is exicuting (typing the password makes the computer sleep for the two seconds) but the redstone signal is not being sent….
I have it built exactly as shown on the wiki page, but it is not sending the signla…. is it because im in creative or is there a bug somewhere?
However I am still having the off server problem….
Thanks for this… i am having a really tough time figuring out what is wrong with my code….
I am starting computercraft with a door (original i know, but its what i need….) an have followed the tutorial (almost) to the letter….
Here is the code that I am using:
while true do term.clear() term.setCursorPos(1, 1) print("I'm 12 and what is this?") input = read() if input == "what?" then redstone.setOutput("back", true) sleep(2) redstone.setOutput("back", false) end end
This for some reason is not working on a personal (non server world)…. the code is exicuting (typing the password makes the computer sleep for the two seconds) but the redstone signal is not being sent….
I have it built exactly as shown on the wiki page, but it is not sending the signla…. is it because im in creative or is there a bug somewhere?