-
Notifications
You must be signed in to change notification settings - Fork 0
/
coordi.xml
32 lines (30 loc) · 1.66 KB
/
coordi.xml
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
<context>
<input pattern="(hola|buen)*">
<!-- Greet the user if we know his/her name -->
<output value="Hola estudiante con código $codigo" if="full($codigo)"/>
<!-- Or activate an inner context to ask the user about his/her name -->
<context if="empty($codigo)" modal="true"> <!-- We use a modal context, so our bot will recognize any text as the user’s name -->
<output value="¡Hola! ¿Cuál es tu código?"/>
<input pattern="* $Number">
<!-- Store the user’s name in the UserName variable with "user" scope to save it into database -->
<var name="codigo" value="$Number" scope="user"/>
<output value="Saludos estudiante con código $codigo."/> <!-- Using the placeholder in output -->
</input>
<input pattern="no [lo] (tengo|sé|se)">
<output value="Acude a ventanilla de Control Escolar para que te lo indiquen, lleva una identificación."/>
</input>
</context>
</input>
<input pattern="* beca*">
<output value="Comunícate a la página de la Unidad de Becas: https://www.facebook.com/search/top/?q=unidad%20de%20becas%20e%20intercambios%20cuci%C3%A9nega"/>
<output value="Comunícate con la Unidad de Becas del CUCI: http://cuci.udg.mx/directorio/Unidad-de-Becas-e-Intercambios"/>
</input>
<input pattern="*(gracias)*">
<output value="Es un placer servirte."/>
<output value="De nada, hasta pronto."/>
<output value="Para mí es un placer servirte."/>
</input>
<input pattern="*(adios|adiós)*">
<output value="Adiós."/>
</input>
</context>