diff options
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/opme.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/data/rbot/plugins/opme.rb b/data/rbot/plugins/opme.rb new file mode 100644 index 00000000..aad388a9 --- /dev/null +++ b/data/rbot/plugins/opme.rb @@ -0,0 +1,19 @@ +class OpMePlugin < Plugin
+
+ def help(plugin, topic="")
+ return "opme <channel> => grant user ops in <channel>"
+ end
+
+ def privmsg(m)
+ if(m.params)
+ channel = m.params
+ else
+ channel = m.channel
+ end
+ target = m.sourcenick
+ @bot.sendq("MODE #{channel} +o #{target}")
+ m.okay
+ end
+end
+plugin = OpMePlugin.new
+plugin.register("opme")
|