-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from CriticalFlaw/dev
Version 3.1
- Loading branch information
Showing
92 changed files
with
1,925 additions
and
1,841 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
[issues-link]: https://github.com/CriticalFlaw/FlawBOT/issues | ||
[discord-link]: https://discord.gg/hTdtK9vBhE | ||
|
||
This section is for common issues you may encounter and how to resolve them. | ||
|
||
* For error or issues not on this page, please [open a ticket on our issue tracker][issues-link]. | ||
* For questions not covered in this documentation, [post in our Discord server][discord-link]. | ||
|
||
--- | ||
|
||
## Channel | ||
|
||
Description: Commands for controlling channels. | ||
Aliases: chn, ch, c | ||
|
||
### category | ||
|
||
Description: Create a new channel category. | ||
Aliases: createcategory, newcategory, ct | ||
Parameters: New category name. | ||
|
||
``` | ||
.channel category Welcome | ||
``` | ||
|
||
### clean | ||
|
||
Description: Remove channel messages. | ||
Aliases: clear | ||
Parameters: Number of messages to remove from the current channel. | ||
|
||
``` | ||
.channel clean 10 | ||
``` | ||
|
||
### delete | ||
|
||
Description: Delete a channel. If a channel isn't specified, the current one will be deleted. | ||
Aliases: remove | ||
Parameters: Channel to delete. | ||
|
||
``` | ||
.channel delete #text | ||
``` | ||
|
||
### info | ||
|
||
Description: Print channel information. If a channel isn't specified, the current one will be used. | ||
Aliases: i | ||
Parameters: Channel to retrieve information from. | ||
|
||
``` | ||
.channel info #text | ||
``` | ||
|
||
### purge | ||
|
||
Description: Remove server user's channel messages. | ||
Aliases: None | ||
Parameters: Server user whose messages will be purged. Number of messages to purge. | ||
|
||
``` | ||
.channel purge @CriticalFlaw 10 | ||
``` | ||
|
||
### rename | ||
|
||
Description: Rename a channel. If a channel isn't specified, the current one will be used. | ||
Aliases: setname | ||
Parameters: Channel to rename. New channel name. | ||
|
||
``` | ||
.channel rename #text newtext | ||
``` | ||
|
||
### text | ||
|
||
Description: Create a new text channel. | ||
Aliases: createtext, newtext | ||
Parameters: New text channel name. | ||
|
||
``` | ||
.channel text texts | ||
``` | ||
|
||
### topic | ||
|
||
Description: Set current channel's topic. | ||
Aliases: settopic | ||
Parameters: New channel topic. | ||
|
||
``` | ||
.channel topic Watermelon picking | ||
``` | ||
|
||
### voice | ||
|
||
Description: Create a new voice channel. | ||
Aliases: createvoice, newvoice | ||
Parameters: New voice channel name. | ||
|
||
``` | ||
.channel voice voices | ||
``` | ||
|
||
### vote | ||
|
||
Description: Run a Yay or Nay poll in the current channel. | ||
Aliases: poll | ||
Parameters: Question to be asked in the poll. | ||
|
||
``` | ||
.channel poll Am I correct? | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
[issues-link]: https://github.com/CriticalFlaw/FlawBOT/issues | ||
[discord-link]: https://discord.gg/hTdtK9vBhE | ||
|
||
This section is for common issues you may encounter and how to resolve them. | ||
|
||
* For error or issues not on this page, please [open a ticket on our issue tracker][issues-link]. | ||
* For questions not covered in this documentation, [post in our Discord server][discord-link]. | ||
|
||
--- | ||
|
||
## Emoji | ||
|
||
Description: Commands for managing server emojis. | ||
Aliases: emote | ||
|
||
### add | ||
|
||
Description: Add a new server emoji using a URL image. | ||
Aliases: new, create | ||
Parameters: Image URL. Name for the emoji. | ||
|
||
``` | ||
.emoji add homer [Image URL] | ||
``` | ||
|
||
### delete | ||
|
||
Description: Remove a server emoji. Note: Bots can only delete emojis they created. | ||
Aliases: remove | ||
Parameters: Server emoji to delete. | ||
|
||
``` | ||
.emoji delete :homer: | ||
``` | ||
|
||
### rename | ||
|
||
Description: Rename a server emoji. | ||
Aliases: edit, modify | ||
Parameters: Emoji to rename. New emoji name. | ||
|
||
``` | ||
.emoji rename :homer: homey | ||
``` | ||
|
||
### info | ||
|
||
Description: Retrieve server emoji information. | ||
Aliases: None. | ||
Parameters: Server emoji. | ||
|
||
``` | ||
.emoji info :homer: | ||
``` | ||
|
||
### list | ||
|
||
Description: Retrieve a list of server emojis. | ||
Aliases: print, all | ||
Parameters: None. | ||
|
||
``` | ||
.emoji list | ||
``` |
Oops, something went wrong.