-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path8ball.lua
More file actions
64 lines (40 loc) · 1004 Bytes
/
Copy path8ball.lua
File metadata and controls
64 lines (40 loc) · 1004 Bytes
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
function piepan.onConnect()
print ("8ball module loaded")
end
responses = {
"As I see it, yes",
"It is certain",
"It is decidedly so",
"Most likely",
"Outlook good",
"Signs point to yes",
"Without a doubt",
"Yes",
"Yes - definitely",
"You may rely on it",
"Reply hazy, try again",
"Ask again later",
"Better not tell you now",
"Cannot predict now",
"Concentrate and ask again",
"Don't count on it",
"My reply is no",
"My sources say no",
"Outlook not so good",
"Very doubtful",
}
e = function (eight_ball)
piepan.me.channel:send( responses[math.random(20)] )
end
function piepan.onMessage(message)
local command = string.find(message.text, "!8ball")
if message.user == nil
then
return
else
if command == 1
then
e()
end
end
end