This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/nope.avi.lua

16 lines
273 B
Lua

function run(msg, matches)
if matches[1] == "nope.avi" then
return 'https://www.youtube.com/watch?v=gvdf5n-zI14'
end
end
return {
description = 'Sendet ein YouTube Video namens "nope.avi"',
usage = "nope.avi",
patterns = {"^nope.avi"},
run = run
}