tenquestionmarks/tenquestionmarks.toml

99 lines
3.1 KiB
TOML
Raw Normal View History

[general]
foo = "bar"
[discord]
token = "your token here"
[stdin]
[echo]
parents = ["stdin", "discord"]
prefix = "?echo"
[no]
type = "random"
parents = ["stdin", "discord"]
prefix = "?no"
responses = [
"https://www.youtube.com/watch?v=WWaLxFIVX1s", # Darth Vader
"https://www.youtube.com/watch?v=Hwz7YN1AQmQ", # Mario
"https://www.youtube.com/watch?v=O-ycQlfOqyY", # Dr. Robotnik
"https://www.youtube.com/watch?v=FSWiMoO8zNE", # Luke Skywalker
"https://www.youtube.com/watch?v=31g0YE61PLQ", # Michael Scott
"https://www.youtube.com/watch?v=xFGfWrJR5Ck", # Captain Picard
"https://www.youtube.com/watch?v=gvdf5n-zI14", # Nope.avi
"https://www.youtube.com/watch?v=2HJxya0CWco", # Dr. Evil
"https://www.youtube.com/watch?v=HIAql1AfSSU", # Finn the Human
"https://www.youtube.com/watch?v=4LSJJeR6MEU", # Trunks
"https://www.youtube.com/watch?v=6h7clHdeg6g", # Vegeta
"https://www.youtube.com/watch?v=cYTzynLuEuk", # Freakazoid
"https://www.youtube.com/watch?v=6BoVUpSsA1A", # Ganon
"https://www.youtube.com/watch?v=Oz7b7uYG0pk", # Robbie Rotten's Clone/Brother (We Are #1)
"https://www.youtube.com/watch?v=iabC7-9YUG4", # Cleveland Brown
"https://www.youtube.com/watch?v=iGLh9hRmRcM", # Homer Simpson
"https://www.youtube.com/watch?v=zfbK_dbsCu0", # Nathan Explosion
"https://www.youtube.com/watch?v=WfpyGyb1J4I", # Eric Cartman
"https://www.youtube.com/watch?v=wOxt9PoJNkg", # Nostalgia Critic
]
[yes]
type = "random"
parents = ["stdin", "discord"]
prefix = "?yes"
responses = [
"https://www.youtube.com/watch?v=JPVaDaynNKM", # Captain Falcon
"https://www.youtube.com/watch?v=P3ALwKeSEYs", # M. Bison
"https://www.youtube.com/watch?v=FJbmB9k2Y88", # Daniel Bryan
2017-03-05 05:29:26 +00:00
"https://www.youtube.com/watch?v=kfk5NIG7AhY", # Plankton
"https://www.youtube.com/watch?v=5v15U2uaV6k", # Jerry's boss (Rick and Morty)
"https://www.youtube.com/watch?v=DrKmo0YAZEo", # Simpsons Yes Guy
"https://www.youtube.com/watch?v=6VU1Kb7k0cs", # Majin Vegeta
"https://www.youtube.com/watch?v=jyJyI3z_tcc", # Scouter Vegeta
"https://www.youtube.com/watch?v=jcreG-bhRRA", # Piccolo
"https://www.youtube.com/watch?v=XFDGnmQyDf4", # Algernop Krieger
"https://www.youtube.com/watch?v=gSnfdncZCYo", # Twilight Sparkle
"https://www.youtube.com/watch?v=IPjvDE-rKo0", # William Forester (YTMND)
"https://www.youtube.com/watch?v=CBuIqmpeAm0", # Finn Hudson
"https://www.youtube.com/watch?v=q6EoRBvdVPQ", # Oro (Yee Dinosaur)
"https://www.youtube.com/watch?v=j44nP2J23Jk", # Austin Powers
2017-03-05 17:18:00 +00:00
"https://www.youtube.com/watch?v=b4mJtqqfMrQ", # Data
]
[chk]
type = "random"
parents = ["stdin", "discord"]
prefix = "?chk"
responses = ["ack"]
[pvn]
parents = ["stdin", "discord"]
2017-02-22 23:40:30 -06:00
[echobox]
parents = ["stdin", "discord"]
[lua]
parents = ["stdin", "discord"]
code = """
function on_message (message, reply)
reply("Lua says: " .. message)
end
"""
foo = "bar"
[lua2]
type = "lua"
parents = ["stdin", "discord"]
filters = [{ username = "David" }]
code = """
function on_message (message, reply)
reply("Lua2 says: " .. message)
end
"""
[autolink]
parents = ["stdin", "discord"]
[logger]
parents = ["stdin", "discord"]
2017-05-16 21:35:05 -05:00
filters = [{ username = "Dave" }, { username = "Kevin" }]