mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Adjust Command Groups
This commit is contained in:
@@ -270,6 +270,8 @@ Total: 554
|
|||||||
* **help:** Displays a list of available commands, or detailed information for a specific command.
|
* **help:** Displays a list of available commands, or detailed information for a specific command.
|
||||||
* **info:** Responds with detailed bot information.
|
* **info:** Responds with detailed bot information.
|
||||||
* **invite:** Responds with the bot's invite links.
|
* **invite:** Responds with the bot's invite links.
|
||||||
|
* **join:** Joins your voice channel.
|
||||||
|
* **leave:** Leaves the current voice channel.
|
||||||
* **options:** Responds with a list of server options.
|
* **options:** Responds with a list of server options.
|
||||||
* **ping:** Checks the bot's ping to the Discord server.
|
* **ping:** Checks the bot's ping to the Discord server.
|
||||||
* **report:** Reports something to the bot owner(s).
|
* **report:** Reports something to the bot owner(s).
|
||||||
@@ -821,12 +823,10 @@ Total: 554
|
|||||||
* **tax:** Determines the total cost of something plus tax.
|
* **tax:** Determines the total cost of something plus tax.
|
||||||
* **units:** Converts units to/from other units.
|
* **units:** Converts units to/from other units.
|
||||||
|
|
||||||
### Voice-Based:
|
### Play Audio:
|
||||||
|
|
||||||
* **airhorn:** Plays an airhorn sound in a voice channel.
|
* **airhorn:** Plays an airhorn sound in a voice channel.
|
||||||
* **dec-talk:** The world's best Text-to-Speech.
|
* **dec-talk:** The world's best Text-to-Speech.
|
||||||
* **join:** Joins your voice channel.
|
|
||||||
* **leave:** Leaves the current voice channel.
|
|
||||||
* **soundboard:** Plays a sound in a voice channel.
|
* **soundboard:** Plays a sound in a voice channel.
|
||||||
* **vocodes:** Speak text like a variety of famous figures.
|
* **vocodes:** Speak text like a variety of famous figures.
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ client.registry
|
|||||||
['edit-meme', 'Meme Generators'],
|
['edit-meme', 'Meme Generators'],
|
||||||
['edit-text', 'Text Manipulation'],
|
['edit-text', 'Text Manipulation'],
|
||||||
['edit-number', 'Number Manipulation'],
|
['edit-number', 'Number Manipulation'],
|
||||||
['voice', 'Voice-Based'],
|
['voice', 'Play Audio'],
|
||||||
['phone', 'Phone'],
|
['phone', 'Phone'],
|
||||||
['code', 'Coding Tools'],
|
['code', 'Coding Tools'],
|
||||||
['other', 'Other'],
|
['other', 'Other'],
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ module.exports = class JoinCommand extends Command {
|
|||||||
super(client, {
|
super(client, {
|
||||||
name: 'join',
|
name: 'join',
|
||||||
aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel'],
|
aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel'],
|
||||||
group: 'voice',
|
group: 'util',
|
||||||
memberName: 'join',
|
memberName: 'join',
|
||||||
description: 'Joins your voice channel.',
|
description: 'Joins your voice channel.',
|
||||||
guildOnly: true,
|
guildOnly: true,
|
||||||
@@ -5,7 +5,7 @@ module.exports = class LeaveCommand extends Command {
|
|||||||
super(client, {
|
super(client, {
|
||||||
name: 'leave',
|
name: 'leave',
|
||||||
aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel'],
|
aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel'],
|
||||||
group: 'voice',
|
group: 'util',
|
||||||
memberName: 'leave',
|
memberName: 'leave',
|
||||||
description: 'Leaves the current voice channel.',
|
description: 'Leaves the current voice channel.',
|
||||||
guildOnly: true,
|
guildOnly: true,
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "119.36.0",
|
"version": "119.37.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user