added a version of luash that requires you to enter _G.pass before letting you do anything.

This commit is contained in:
Izaya 2017-07-14 00:03:16 +10:00
parent ab636ef655
commit f4747c076f
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
function luash(si)
s("lua shell",function()
local np = ""
while np ~= pass do
write("Password: ")
np=readln("*")
end
if _OSVERSION and _BD then
write(_OSVERSION.." on "..nID.." (built at ".._BD..")\t")
end
print(tostring(computer.freeMemory()/1024).."K free.",_G.motd)
print(_VERSION)
while true do
write("> ")
print(pcall(load(readln())))
end
end,si)
end