Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

botmode: Document /WHO response and PRIVMSG tags #67

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/3/modules/botmode.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: botmode

description: |-
This module adds user mode `B` (bot) which marks users with it set as bots in their `/WHOIS` response.
This module adds user mode `B` (bot) which marks users with it set as bots. This includes:

* in their `/WHOIS` response
* in `/WHO` responses
* in PRIVMSGs sent by them, using the `draft/bot` (starting with InspIRCd 3.11) and `inpircd.org/bot` tags
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* in their `/WHOIS` response
* in `/WHO` responses
* in PRIVMSGs sent by them, using the `draft/bot` (starting with InspIRCd 3.11) and `inpircd.org/bot` tags
* In their `/WHOIS` response.
* In `/WHO` responses.
* In messages using the `bot` and `inspircd.org/bot` tags.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the "in" because "This includes: in their /WHOIS response" sounds weird


Depending on your module-specific configuration this can also prevents a bot from using non-bot aliases (requires [the alias module](/3/modules/alias)) and from receiving channel history on join (requires [the chanhistory module](/3/modules/chanhistory)).

Expand Down