#Get image as arg from message

7 messages · Page 1 of 1 (latest)

gaunt dust
#

Is it possible to get the sended image from a command as an argument and send it with the bot?
Like:
!image (I send an image)
And the bot sends the same image.

graceful juncoBOT
#
  • What's your exact discord.js npm list discord.js and node node -v version?
  • Not a discord.js issue? Check out #1081585952654360687.
  • Consider reading #how-to-get-help to improve your question!
  • Explain what exactly your issue is.
  • Post the full error stack trace, not just the top part!
  • Show your code!
  • Issue solved? Press the button!
  • Marked as resolved by OP
fierce tartanBOT
uncut gate
#

Check if the size is 0

gaunt dust
#

if (message.attachments.size > 0) {
const attachment = message.attachments.first();
message.reply({ files: [attachment.url] });
}

#

Like this?