Give operator status to everyone in the current channel.
Author: Adam Saponara
— Version: 0.1
— License: GPL-3.0-or-later
For WeeChat ≥ 0.3.0.
Tags: irc, py2, py3
Added: 2016-10-29
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | """ mop.py author: Adam Saponara <saponara AT gmail DOT com> desc: Op everyone in the current channel usage: /mop license: GPLv3 history: 0.1 - 2016-02-23, initial script """ import weechat weechat.register("mop", "Adam Saponara", "0.1", "GPL3", "Op everyone in the current channel", "", "") def mop_cmd(data, buffer, args): nicks = [] nicklist = weechat.infolist_get("nicklist", buffer, "") while weechat.infolist_next(nicklist): nick = weechat.infolist_string(nicklist, "name") nick_type = weechat.infolist_string(nicklist, "type") nick_prefix = weechat.infolist_string(nicklist, "prefix") if nick_type == "nick" and nick_prefix != "@": nicks.append(nick) weechat.infolist_free(nicklist) if len(nicks) > 0: weechat.command(buffer, "/op " + " ".join(nicks)) return weechat.WEECHAT_RC_OK hook = weechat.hook_command("mop", "Op everyone in the current channel", "", "", "", "mop_cmd", "") |