TGC Codebase Backup



TalkBot by Red_Devil

21st Nov 2007 1:30
Summary

A nice little computer program that talks, well, he gets annoying. He's yours now ;)



Description

This is Talkbot his name is Talkbot. He is a talkbot, with the soul purpose of being a talkbot.



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    print "Hello. What is your name?"
input NAME$
print "Hi, " + NAME$ + "!"
wait 1000
print "Where are you from?"
input PLACE$
print "So you are from " + PLACE$ + ", eh?"
wait 100
print "I am from Australia, i think..."
wait 1000
Print "So what's your favorite food?"
input FOOD$
print "Hey, I like " + FOOD$ + " too!"
wait 1000
print "I first had " + FOOD$ + " in Australia."
wait 2000
Print "Do you like cheese?"
input POOP$
if POOP$ = "yes"
print "cool!"
endif
if POOP$ = "no"
print "YOU ARE NOT MY FRIEND!!!"
wait 2000
end
endif
print "Well, i gotta go. bye!"
wait 2000