Skip to content

Instantly share code, notes, and snippets.

@orumin
Created June 24, 2014 08:58
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 orumin/d7c93648e832948bc3d9 to your computer and use it in GitHub Desktop.
Save orumin/d7c93648e832948bc3d9 to your computer and use it in GitHub Desktop.
YoみえたらYoするやつ
# -*- coding: utf-8 -*-
Plugin.create :Yo_reply do
on_appear do | ms |
ms.each do | m |
if m.message.to_s = ~ /Yo/
Service.primary.post(:message => "#{"@" + m.user.idname + "Yo"}", :replyto => m)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment