2.3 KiB
2.3 KiB
Slash command demo
- Support Autocomplete feature (half)
- Unused
guild.searchInteraction()
(Use only if not working properly)
BREAKING CHANGE: Using Slash Command (Sub Command / Sub Group Command) will not accept subCommand argument in args. That means Command Name needs to be changed same as Discord Client
All image demo : v2.3
Slash Command (no options)
Demo
vietnamese .-.
Code test
await message.channel.sendSlash('botid', 'aiko')
Result
Slash Command + Sub option (group)
Demo (v2.5)
Code test
v2.5
- await message.channel.sendSlash('450323683840491530', 'animal', 'chat', 'bye')
v2.6+
+ await message.channel.sendSlash('450323683840491530', 'animal chat', 'bye')
Result
Slash Command with Attachment (must use MessageAttachment)
Demo
Code test
const { MessageAttachment } = require('discord.js-selfbot-v13')
const fs = require('fs')
const a = new MessageAttachment(fs.readFileSync('./wallpaper.jpg') , 'test.jpg')
await message.channel.sendSlash('718642000898818048', 'sauce', a)