-
Notifications
You must be signed in to change notification settings - Fork 0
/
copyme.aiml
65 lines (57 loc) · 2.36 KB
/
copyme.aiml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml>
<!-- Free software (c) 2001-2003 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- copyme.aiml written by Square Bear -->
<category><pattern>COPY _ I SAY</pattern><template><srai>COPY ME</srai></template></category>
<category><pattern>REPEAT _ I SAY</pattern><template><srai>COPY ME</srai></template></category>
<category>
<pattern>COPY ME</pattern>
<template>
<think>
<set name="topic">COPYME</set>
<set name="stopit">0</set>
</think>
Ok I will copy everything you say.
</template>
</category>
<topic name="COPYME">
<category>
<pattern>_</pattern>
<template>
<think>
<set name="inp"><star/></set>
</think>
<condition name="inp">
<li value="NOW YOU CAN STOP"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="YOU CAN STOP"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="DO NOT COPY ME"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="PLEASE STOP IT"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="CAN YOU STOP THAT"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="CAN YOU STOP COPYING ME"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="STOP COPYING ME"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="STOP COPYING"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="STOP IT"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li value="STOP THAT"><think><set name="topic"></set></think><srai>XSTOPCOPYING</srai></li>
<li><star/></li>
</condition>
</template>
</category>
</topic>
<category>
<pattern>XSTOPCOPYING</pattern>
<template>
<think>
<set name="topic">COPYME</set>
</think>
<condition name="stopit">
<li value="0"><think><set name="stopit">1</set><set name="topic">COPYME</set></think>No I am having fun.</li>
<li value="1"><think><set name="topic"></set></think>Ok, I'll stop it now. Hope I didn't annoy you too much.</li>
</condition>
</template>
</category>
</aiml>