2022-04-25 19:34:35 +02:00

60 lines
1.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

:::{important} You are reading the help for Irssi 1.0. **The current release version is Neırssi 1.3.**
:::
# levels
<!-- comment
Please submit changes to
- https://github.com/ailin-nemui/irssi/blob/master/docs/help/in/levels.in
endcomment -->
## Description ##
These are the message levels that are used throughout Irssi; they describe
what kind of message is displayed.
These are the common levels you can use:
| | |
| --- | --- |
| `ACTIONS` | Actions by a nickname. |
| `CLIENTCRAP` | Irssi's internal messages. |
| `CLIENTERROR` | Irssi's internal error messages. |
| `CLIENTNOTICE` | Irssi's internal notices. |
| `CRAP` | Can be almost anything. |
| `CTCPS` | CTCP messages. |
| `DCC` | DCC protocol related messages. |
| `DCCMSGS` | DCC chat messages. |
| `INVITES` | An invite is received. |
| `JOINS` | A nickname joins a channel. |
| `KICKS` | A nickname gets kicked from a channel. |
| `MODES` | A channel mode is modified. |
| `MSGS` | Private messages. |
| `NICKS` | A nickname changes to another nickname. |
| `NOTICES` | Notices sent from a nickname. |
| `PARTS` | A nickname leaves a channel. |
| `PUBLIC` | Public messages in a channel. |
| `QUITS` | A nickname disconnects from IRC. |
| `SNOTES` | Notices sent from a server. |
| `TOPICS` | A channel topic is modified. |
| `WALLOPS` | A wallop is received. |
These are the special levels you can use:
| | |
| --- | --- |
| `HILIGHT` | The text is highlighted. |
| `NEVER` | Never ignores or logs the message. |
| `NO_ACT` | Doesn't trigger any activity in the statusbar. |
| `NOHILIGHT` | The text is not highlighted. |
When using levels from Irssi scripts, you need to prepend the level with
'MSGLEVEL_'; for example 'CRAP' becomes 'MSGLEVEL_CRAP'.