3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

doc/QuickStart.md: rearrange sections

This commit is contained in:
Pragmatic Software 2020-01-27 20:18:08 -08:00
parent 03531d6fd9
commit b37dc76f4b

View File

@ -26,8 +26,8 @@
* [Regular start-up](#regular-start-up)
* [Additional configuration](#additional-configuration)
* [Creating your bot owner admin account](#creating-your-bot-owner-admin-account)
* [Adding channels](#adding-channels)
* [Adding other users and admins](#adding-other-users-and-admins)
* [Adding channels](#adding-channels)
* [Further Reading](#further-reading)
* [Commands](#commands)
* [Factoids](#factoids)
@ -264,6 +264,23 @@ Then you can login with:
Now you can use `/msg` in your own IRC client to administrate PBot, instead of
the terminal console.
### Adding other users and admins
To add users to PBot, use the [`useradd`](Admin.md#useradd) command.
useradd <account name> <channel> <hostmask> [[level] [password]]
If you omit the `password` argument, a random password will be generated. The user
can use the [`my`](Commands.md#my) command to view or change it.
If you omit the `level` argument, the user will be a normal unprivileged user. See [admin levels](Admin.md#admin-levels)
for more information about admin levels.
Users may view and change their own metadata by using the [`my`](Commands.md#my) command.
my [<key> [value]]
For more information, see the [Admin documentation](Admin.md).
### Adding channels
To temporarily join channels, use the `join` command.
@ -288,23 +305,6 @@ permop | If set to true, PBot will not de-OP itself in this channel. | 0
For more information, see the [Channels documentation](Admin.md#channel-management-commands).
### Adding other users and admins
To add users to PBot, use the `useradd` command.
useradd <account name> <channel> <hostmask> [[level] [password]]
If you omit the `password` argument, a random password will be generated. The user
can use the [`my`](Commands.md#my) command to view or change it.
If you omit the `level` argument, the user will be a normal unprivileged user. See [admin levels](Admin.md#admin-levels)
for more information about admin levels.
Users may view and change their own metadata by using the [`my`](Commands.md#my) command.
my [<key> [value]]
For more information, see the [Admin documentation](Admin.md).
## Further Reading
That should get you started. For further information about PBot, check out these topics.