Skip to content

Instantly share code, notes, and snippets.

# -*- coding: utf-8 -*-
Plugin.create :jis_empty_reply do
on_appear do |ms|
ms.each do |m|
if m.message.to_s =~ /アルパカ/
Service.primary.post(:message => "#{"@" + m.user.idname + "(・´ェ`・)三 (・´ェ`・)", :replyto => m)
end
end
end
end