How to Create a Simple Chatbot

Ever wanted to impress your friends by having a conversation with your computer? Well, now you can with this very simple chatbot made with notepad.
 

Steps

1.
Open notepad by going to Start> All Programmes> Accessories> Notepad. Vista and 7 users can just type "notepad", without quotes, into the start menu and hit enter

2.
Once you have notepad up, copy the following code:
 
dim fname
fname=inputbox("Hi! What is your name")
fname=inputbox("How are you feeling " & fname)
fname=inputbox("Why are you feeling " & fname)
fname=inputbox("Cool!")
fname=inputbox("Bye!!!")

3.
Go to File> Save As
  • Change the "Save as type" box to "All Files"
  • Type "chatbot.vbs" into file name and click "Save"
4.
Open the file and you will get a screen like the picture below
You can click OK, Cancel or type something in the box.