Created
December 5, 2014 06:34
-
-
Save anonymous/dc90744f52c08522ff85 to your computer and use it in GitHub Desktop.
mikutterで「これきらい」を実現するプラグイン
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| Plugin.create :vanish do | |
| command(:vanish_message, | |
| name: "これきらい", | |
| condition: Plugin::Command[:CanReplyAll], | |
| visible: true, | |
| role: :timeline ) do |opt| | |
| opt.messages.each do |msg| | |
| Plugin.call(:destroyed, [msg]) | |
| end | |
| end | |
| command(:vanish_user, | |
| name: "こいつきらい", | |
| condition: Plugin::Command[:CanReplyAll], | |
| visible: true, | |
| role: :timeline ) do |opt| | |
| opt.messages.each do |msg| | |
| Plugin.call(:destroyed, ObjectSpace.each_object(Message).to_a.select{|m| m.user == msg.user}) | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment