From 604de6830262784fbb46e67baf2a57fada4fab02 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 28 Dec 2021 23:38:53 +0100 Subject: [PATCH] Move FAQ item to the right page. --- develop/faq.rst | 18 ++++++++++++++++++ use/faq.rst | 18 ------------------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/develop/faq.rst b/develop/faq.rst index 4041927..8b7fdc7 100644 --- a/develop/faq.rst +++ b/develop/faq.rst @@ -24,3 +24,21 @@ The ``irc`` object passed to all event method as well as command methods is an :py:class:`supybot.irclib.Irc` object, use :py:meth:`irc.state.nickToHostmask ` +How do I get channel modes when writing a plugin? +================================================= + + I want to know who's an op in a certain channel, or who's voiced, or + what the modes on the channel are. How do I do that? + + Everything you need is kept in a `ChannelState` object in an + `IrcState` object in the `Irc` object your plugin is given. To see + the ops in a given channel, for instance, you would do this:: + + irc.state.channels['#channel'].ops + + To see a dictionary mapping mode chars to values (if any), you would + do this:: + + irc.state.channels['#channel'].modes + + From there, things should be self-evident. diff --git a/use/faq.rst b/use/faq.rst index d719678..85f4baf 100644 --- a/use/faq.rst +++ b/use/faq.rst @@ -195,24 +195,6 @@ How can I make my Supybot log my IRC channel? To log all the channels your Supybot is in, simply load the `ChannelLogger` plugin, which is included in the main distribution. -How do I get channel modes when writing a plugin? -================================================= - - I want to know who's an op in a certain channel, or who's voiced, or - what the modes on the channel are. How do I do that? - - Everything you need is kept in a `ChannelState` object in an - `IrcState` object in the `Irc` object your plugin is given. To see - the ops in a given channel, for instance, you would do this:: - - irc.state.channels['#channel'].ops - - To see a dictionary mapping mode chars to values (if any), you would - do this:: - - irc.state.channels['#channel'].modes - - From there, things should be self-evident. Can Supybot connect through a proxy server? ===========================================