yeh i kno they already did this but i made this because of that thread, so here is my edit to the password program:
one$="pizza" : two$="cheese" : three$="eggs" : four$="milk" : five$="beef"
answer:
try=0
ans#=rnd(4)
if ans#=0 then answer$=one$
if ans#=1 then answer$=two$
if ans#=2 then answer$=three$
if ans#=3 then answer$=four$
if ans#=4 then answer$=five$
goto code
code:
cls
print "possible password: ";one$;" - ";two$;" - ";three$;" - ";four$;" - ";five$
print
input "What is the password : ",password$
if password$=answer$
print "you got it, now closing"
sleep 2000
end
endif
if password$<>answer$
try=try + 1
if try=3
print "that's the third time you got it wrong!!"
sleep 350
print "selecting new password"
sleep 3000
goto answer
endif
print "try again"
sleep 1000
goto code
endif
i kno its not 20 lines but it can easily be compressed
PS i was bored