ClientUser.sendMessage
is deprecated, as is the file
parameter in its options. You should be using Channel.send(message, options)
, with files
as an array of strings or FileOptions.
bot.on('messageCreate' message => { message.channel.send("My Bot's message", {files: ["https://i.imgur.com/XxxXxXX.jpg"]}); });
If you want to stick to your deprecated methods, ClientUser.sendFile
might be something of interest to you, though I do recommend you move over to the stuff that’s more current.
Related Posts:
- How to make a discord bot create an invite for every server it joins?
- How can a Discord bot create a hyperlink in a Discord message in an embed or in general? [closed]
- How can a Discord bot create a hyperlink in a Discord message in an embed or in general?
- map function for objects (instead of arrays)
- Start script missing error when running npm start
- Discord API error when trying to send one command at discord using JavaScript client
- How to you store data for each discord user in the discord server?
- Babel 6 regeneratorRuntime is not defined
- TypeError: Converting circular structure to JSON in nodejs
- Babel 7 – ReferenceError: regeneratorRuntime is not defined
- How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
- Getting a UnhandledPromiseRejectionWarning when testing using mocha/chai
- Error: Can’t set headers after they are sent to the client
- require is not defined? Node.js
- Client on Node.js: Uncaught ReferenceError: require is not defined
- TypeError: Router.use() requires middleware function but got a Object
- Cannot GET / Nodejs Error
- What is NODE_ENV and how to use it in Express?
- Node.js heap out of memory
- Reactjs – Form input validation
- await is only valid in async function
- How to set NODE_ENV to production/development in OS X
- await is only valid in async function
- Heroku: “No default language could be detected for this app” error thrown for node app
- Heroku: “No default language could be detected for this app” error thrown for node app
- TypeError: Router.use() requires middleware function but got a Object
- What does “res.render” do, and what does the html file look like?
- How to obtain username from Promise
? - NPM ELIFECYCLE error – using node server.js command
- Node.js – SyntaxError: Unexpected token import
- ‘react-scripts’ is not recognized as an internal or external command
- After $npm install, Getting Error: Cannot find module ‘../lib/utils/unsupported.js’
- Node.js – SyntaxError: Unexpected token import
- What’s the source of Error: getaddrinfo EAI_AGAIN?
- stop all instances of node.js server
- Using Node.js require vs. ES6 import/export
- ReferenceError : window is not defined at object.
Node.js - Why is process.env.NODE_ENV undefined?
- Node.js Port 3000 already in use but it actually isn’t?
- Unable to verify leaf signature
- npm – EPERM: operation not permitted on Windows
- AJAX response error: net::ERR_EMPTY_RESPONSE
- Express Render not working return error: No default engine was specified and no extension was provided
- How to use npm jquery module?
- Node.js Error: connect ECONNREFUSED
- TypeError: app.use() requires middleware functions
- No overload matches this call. Type ‘string’ is not assignable to type ‘Signals’
- SyntaxError: Cannot use import statement outside a module
- Node.js document is not defined
- How to handle ETIMEDOUT error?
- XMLHttpRequest module not defined/found
- Node update a specific package
- How to fix RichEmbed Discord.js
- How to properly export an ES6 class in Node 4?
- Express error – TypeError: Router.use() requires middleware function but got a Object
- Expressjs / Node.js – res.redirect() not loading page
- Using async/await with a forEach loop
- Why is my asynchronous function returning Promise {
} instead of a value? - NodeJs : TypeError: require(…) is not a function
- What is the difference between node.js and io.js?
- module.exports vs exports in Node.js
- Convert Array to Object
- Basic Ajax send/receive with node.js
- Cannot find module ‘internal/fs’ after upgrading to node 7
- Npm install cannot find module ‘semver’
- How to download a file with Node.js (without using third-party libraries)?
- Make Axios send cookies in its requests automatically
- How do I remove documents using Node.js Mongoose?
- node-request – Getting error “SSL23_GET_SERVER_HELLO:unknown protocol”
- Why does JSHint throw a warning if I am using const?
- How to fix Cannot find module ‘typescript’ in Angular 4?
- Difference between “module.exports” and “exports” in the CommonJs Module System
- Error: ENOENT: no such file or directory, stat ‘/public/main.html’ at Error (native)
- npm WARN enoent ENOENT: no such file or directory, open ‘C:\Users\Nuwanst\package.json’
- How to access the request body when POSTing using Node.js and Express?
- TypeError: res.status is not a function
- TypeError: res.json is not a function
- SyntaxError: expected expression, got ‘<'
- Eslint: How to disable “unexpected console statement” in Node.js?
- Discord error cannot read property ‘isFocused’
- how to use react require syntax?
- How can I use webpack with express?
- How do I make a discord bot join a voice channel?
- How do you completely remove Ionic and Cordova installation from mac?
- NPM install fails with node-gyp
- How to fix Error: listen EADDRINUSE while using NodeJS?
- Error: listen EACCES 0.0.0.0:80 OSx Node.js
- How to sort in mongoose?
- How to convert binary string to decimal?
- events.js: 141 throw er; // Unhandled ‘error’ event
- How to disable auto-start of “Node.js: Server-side JavaScript” when using Adobe Dreamweaver?
- How to disable auto-start of “Node.js: Server-side JavaScript” when using Adobe Dreamweaver?
- Write / add data in JSON file using Node.js
- What does `node –harmony` do?
- “React.Children.only expected to receive a single React element child” error when putting
and in a - How to fix “TypeError: Right-hand side of ‘instanceof’ is not callable” when I use another module class?
- Error: Couldn’t find preset “es2015” relative to directory “/Users/username”
- Using Angular 2 without TypeScript Transpiler
- how to add inside a text box?
- DeprecationWarning: Calling an asynchronous function without callback is deprecated. – how to find where the “function:” is?