TGC Codebase Backup



Password Prompt by jack murray

26th Aug 2005 15:24
Summary

A password prompt, could be used for anything.



Description



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    disable escapekey
disable systemkeys
start:
cls
print "Please enter the password"
print
input ">" ,password$
if password$ = "password"
end
else
goto wrong
endif

wrong:
cls
print "Password Incorrect, Access Denied"
wait 1000
goto start