Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Created January 23, 2020 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akkiesoft/c4851a0a92a1dee82a2376742422079e to your computer and use it in GitHub Desktop.
Save Akkiesoft/c4851a0a92a1dee82a2376742422079e to your computer and use it in GitHub Desktop.
Plugin.create :kadoma do
on_update do |w, ms|
ms.each do |m|
greets = [
"https://abema.tv/video/title/189-12",
"としぁ「機器管理ーー!!(無印のケースに収納する)」",
"機器管理〜!つって無印のボックスに収納するやつ早くやって",
"イヤかイヤじゃないかじゃない…見るんだ まちカドまぞくを見ていこう",
"(まちカドまぞくを見る)時は来た時は来た時来てるぞ!!",
"https://www.nicovideo.jp/watch/sm35878462"
]
if m.description.include?("門真")
compose(w, body: "@toshi_a " + greets.sample)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment