Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 23d33b2

Browse files
author
Tom Bell
committed
Merge pull request #941 from brandonvalentine/master
Where, where the hell is Bill?
2 parents ea0a10c + a69eea2 commit 23d33b2

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/scripts/whereisbill.coffee

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Description:
2+
# None
3+
#
4+
# Dependencies:
5+
# None
6+
#
7+
# Configuration:
8+
# None
9+
#
10+
# Commands:
11+
# where is bill? - Tell us where, where the hell Bill is.
12+
#
13+
# Author:
14+
# brandonvalentine
15+
16+
places = [
17+
"Well, maybe he went to get a sideways haircut",
18+
"Maybe he went to get a striped shirt",
19+
"Maybe he went to get some plastic shoes",
20+
"Maybe he went to get some funny sunglasses",
21+
"Well, maybe he went to get an Air Force parka",
22+
"Maybe he went to get a Vespa scooter",
23+
"Maybe he went to get a British flag",
24+
"Maybe he went to go Mod Ska dancing",
25+
"Well, maybe he went to get a mohawk",
26+
"And maybe he went to get some gnarly thrash boots",
27+
"Maybe he went to go ride his skateboard",
28+
"Maybe he went to see the Circle Jerks "
29+
]
30+
31+
module.exports = (robot) ->
32+
robot.hear /where.*is.*bill/i, (msg) ->
33+
msg.send msg.random places

0 commit comments

Comments
 (0)