TGC Codebase Backup



Simplest ever password program by Dodic

6th Jan 2006 18:12
Summary

a VERY simple program that asks for password and if it`s correct , it goes to your project , if not then it ends



Description

a VERY simple program that asks for password and if it`s correct , it goes to your project , if not then it ends



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    `----------------------------
`Write your password here
password$="writehere"

`----------------------------
print "Please enter password:"
input passwordinput$
if passwordinput$=password$ then print "password correct !" else print "password incorrect !" : end