Difference between revisions of "Talk:Making a Password Protected Door"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with " == In response to 24.20.222.206 who reverted my changes with the comment "Make code better, again" == How is it 'better' to leave the computer running when it's not needed? ...")
 
m (Reverted edits by 83.169.89.163 (talk) to last revision by Thesbros)
 
(26 intermediate revisions by 15 users not shown)
Line 1: Line 1:
  
== In response to 24.20.222.206 who reverted my changes with the comment "Make code better, again" ==
+
== Rewriting Page ==
 +
This page needs a rewrite. I am currently working on one, you can see the progress [http://thesbros.koding.com/lua/cc.php here]. It may not be updated for a while since I am quite busy right now. If anyone could rewrite this page with pictures, better code, and clean it up a bit, then that would be awesome. --[[User:Thesbros|Thesbros]]
  
How is it 'better' to leave the computer running when it's not needed?
+
== Debug Password ==
Assuming this is the desired behaviour, why is it 'better' to reboot the computer each time instead of using a loop?
+
 
And assuming ''that'' is the desired behaviour, why is it 'better' to have the call to os.reboot() repeated inside the if blocks instead of once after the if?
+
If you still want to be able to edit the startup file after using "os.pullEvent = os.pullEventRaw", add near the top of your code, under your password:
 +
 
 +
local debug = "pass"
 +
 
 +
you can replace "pass" with whatever you want but keep the "s.
 +
Now, after the first "os.reboot()", put an "end" there.
 +
Below that put:
 +
 
 +
if input == (debug) then
 +
  term.clear()
 +
  term.setCursorPos(1,1)
 +
 
 +
then put your "else" and everything where you need to put it.
 +
 
 +
Hope this helps

Latest revision as of 16:14, 4 December 2012

Rewriting Page

This page needs a rewrite. I am currently working on one, you can see the progress here. It may not be updated for a while since I am quite busy right now. If anyone could rewrite this page with pictures, better code, and clean it up a bit, then that would be awesome. --Thesbros

Debug Password

If you still want to be able to edit the startup file after using "os.pullEvent = os.pullEventRaw", add near the top of your code, under your password:

local debug = "pass"

you can replace "pass" with whatever you want but keep the "s. Now, after the first "os.reboot()", put an "end" there. Below that put:

if input == (debug) then

 term.clear()
 term.setCursorPos(1,1)

then put your "else" and everything where you need to put it.

Hope this helps