2.0 KiB
2.0 KiB
Slash command demo
- Support Autocomplete feature (half)
- Unused
guild.searchInteraction()
(Use only if not working properly)
Slash Command (no options)
Demo
vietnamese .-.
Code test
await message.channel.sendSlash('botid', 'aiko')
// Return nonce (view document)
Result
Slash Command + Sub option (group)
Demo
Code test
await message.channel.sendSlash('450323683840491530', 'animal', 'chat', 'bye')
// Return nonce (view document)
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)
// Return nonce (view document)