Skip to content

Instantly share code, notes, and snippets.

@penguin2716
Created February 8, 2013 12:25
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 penguin2716/4738705 to your computer and use it in GitHub Desktop.
Save penguin2716/4738705 to your computer and use it in GitHub Desktop.
mikutterでporkするプラグイン
#-*- coding: utf-8 -*-
Plugin.create(:pork) do
command(:pork,
name: 'このユーザにporkする',
condition: lambda{ |opt| true },
visible: true,
role: :timeline) do |opt|
opt.messages.each { |m|
Service.primary.post(:message => "@#{m.user.idname}
ε ⌒ヘ⌒ヽフ
( ( ・ω・) < PORK!!
しー し─J#{" " * rand(10)}", :replyto => m)
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment