Advertisement
j311yf1sh

Elise1.0

Sep 23rd, 2011
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.55 KB | None | 0 0
  1. #############################################################
  2. #                           Elise                           #
  3. #                                                           #
  4. #       Creator: Jellyfish                                  #
  5. #       Version: 1.0       Date: Saturday Sep 24 2011       #
  6. #                                                           #
  7. #      Description:                                         #
  8. #      Elise is a multi puprose chat bot created for fun    #
  9. #      main plan is to implement it into facebook envi-     #
  10. #      -roment and chat with others automatically           #
  11. #                                                           #
  12. #      Instructions:                                        #
  13. #      Chat away i guess                                    #
  14. #                                                           #
  15. #      Future:                                              #
  16. #      implement into facebook chat system                  #
  17. #                                                           #
  18. #      Used: Not available at time of writing               #
  19. #############################################################
  20.  
  21.  
  22.  
  23. #Variables of names
  24.  
  25. Bot_Name = "Elise"
  26. Human_Name = "empty"
  27. Human_Name_Asked = 0
  28.  
  29. class Elise:
  30.     def __init__(self):
  31.         if Human_Name_Asked == 0:
  32.             Elise().Config()
  33.         else:
  34.             print("Thanks it worked")
  35.  
  36.     def Config(self):
  37.         Human_Name = raw_input("hello =] my name is elise, you are? ")
  38.        
  39.        
  40.        
  41.  
  42. Elise()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement