This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
freiguy48's profile picture

Password Help

Started by freiguy48, 07 April 2012 - 03:36 PM
freiguy48 #1
Posted 07 April 2012 - 05:36 PM
I am trying to create a startup program for my terminals and I want to have it so I when I type it only shows * for each letter I use and I also want it so that ctrl t wont work on the program.

So what would I write.
cant_delete_account #2
Posted 07 April 2012 - 08:04 PM
Instead of using read(), use read("*") and to make no CTRL+T add this at the top of your program:

function os.pullEvent()
 return os.pullEventRaw()
end