-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
169 lines (137 loc) · 3.09 KB
/
script.js
File metadata and controls
169 lines (137 loc) · 3.09 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
function quickReply(text)
{
document.getElementById("userInput").value = text;
sendMessage();
}
function sendMessage()
{
let input =
document.getElementById("userInput").value;
let msg = input.toLowerCase();
let chat =
document.getElementById("chat");
chat.innerHTML +=
"<b>You:</b> " + input + "<br>";
let reply = "";
// Rule Based Chatbot
if(msg.includes("hello") || msg.includes("hi"))
{
reply =
"Hello! Welcome to Travel Agency";
}
else if(msg.includes("tour"))
{
reply =
"Available Tours:<br>" +
"1. Goa Tour<br>" +
"2. Kashmir Tour<br>" +
"3. Manali Tour<br>" +
"4. Kerala Tour";
}
else if(msg.includes("goa"))
{
reply =
"Goa package costs Rs.15000 for 4 days";
}
else if(msg.includes("kashmir"))
{
reply =
"Kashmir package costs Rs.25000 for 6 days";
}
else if(msg.includes("manali"))
{
reply =
"Manali package costs Rs.18000";
}
else if(msg.includes("kerala"))
{
reply =
"Kerala package costs Rs.22000";
}
else if(msg.includes("booking"))
{
reply =
"Booking can be done online or at office";
}
else if(msg.includes("hotel"))
{
reply =
"3-star and 5-star hotels are available";
}
else if(msg.includes("food"))
{
reply =
"Breakfast and dinner are included";
}
else if(msg.includes("bus"))
{
reply =
"AC bus facility is available";
}
else if(msg.includes("train"))
{
reply =
"Train booking assistance is available";
}
else if(msg.includes("flight"))
{
reply =
"Flight tickets are available";
}
else if(msg.includes("price"))
{
reply =
"Tour packages start from Rs.5000";
}
else if(msg.includes("discount"))
{
reply =
"10% discount available for students";
}
else if(msg.includes("family"))
{
reply =
"Special family packages are available";
}
else if(msg.includes("honeymoon"))
{
reply =
"Honeymoon packages available for Goa and Kashmir";
}
else if(msg.includes("adventure"))
{
reply =
"Adventure activities include trekking and rafting";
}
else if(msg.includes("contact"))
{
reply =
"Phone: 9876543210<br>" +
"Email: travelagency@gmail.com<br>" +
"Address: FC Road, Pune";
}
else if(msg.includes("payment"))
{
reply =
"UPI, Card and Cash payments accepted";
}
else if(msg.includes("timing"))
{
reply =
"Office timing is 9 AM to 6 PM";
}
else if(msg.includes("bye"))
{
reply =
"Thank You! Have a safe journey";
}
else
{
reply =
"Sorry! I don't understand";
}
chat.innerHTML +=
"<b>Bot:</b> " + reply + "<br><br>";
document.getElementById("userInput").value = "";
chat.scrollTop = chat.scrollHeight;
}