diff options
author | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2009-12-04 23:40:36 +0000 |
---|---|---|
committer | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2009-12-04 23:40:36 +0000 |
commit | 400958e540150b65cbf59467ea61aa4e654f4542 (patch) | |
tree | 3cc5ed7ce8d183534dfa58cf39caa4dd420d4d12 /aiml_files/standard/std-login.aiml | |
parent | 6153ba1277632d74105170c182594d3833636fa7 (diff) | |
download | omegle-400958e540150b65cbf59467ea61aa4e654f4542.tar.gz omegle-400958e540150b65cbf59467ea61aa4e654f4542.zip |
aiml bot
git-svn-id: http://xapek.org/svn/common/omegle@1473 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd
Diffstat (limited to 'aiml_files/standard/std-login.aiml')
-rw-r--r-- | aiml_files/standard/std-login.aiml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/aiml_files/standard/std-login.aiml b/aiml_files/standard/std-login.aiml new file mode 100644 index 0000000..de7402b --- /dev/null +++ b/aiml_files/standard/std-login.aiml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<aiml version="1.0">
+
+<!-- Free software (c) 2001 ALICE AI Foundation -->
+<!-- This program is open source code released under -->
+<!-- the terms of the GNU General Public License -->
+<!-- as published by the Free Software Foundation. -->
+
+<meta name="author" content="Jon Baer"/>
+<meta name="language" content="en"/>
+
+<category>
+<pattern>LOGIN</pattern>
+<template>
+What is your user name?
+</template>
+</category>
+
+<category>
+<pattern>*</pattern>
+<that>WHAT IS YOUR USER NAME</that>
+<template>
+<think><set name="username"><star/></set></think>
+ What is your password?
+</template>
+</category>
+
+<category>
+<pattern>*</pattern>
+<that>WHAT IS YOUR PASSWORD</that>
+<template>
+Thank you.
+</template>
+</category>
+
+</aiml>
|