izy521 / discord.io

A small, single-file library for creating DiscordApp clients from Node.js or the browser
https://discord.gg/0MvHMfHcTKVVmIGP
MIT License
535 stars 154 forks source link

How to send pictures? #285

Closed alx168 closed 6 years ago

alx168 commented 6 years ago

I have the bot sending messages on my server properly but how do I tell the bot to look in a directory and choose some random pictures and send those to the server?

alx168 commented 6 years ago

ok so I have this so far:

bot.uploadFile({ to: channelID, file: "file.gif" });

but I'm not sure about the random selection part

alx168 commented 6 years ago

So, basically just use fs package from npm and then grab the filenames from the directory. Then just use Math.random to choose three random ones and use the above code to send the three pics.