MediaFixer/index.js
IvanGrail f2239db62c b
2021-12-27 20:18:07 +01:00

40 lines
No EOL
1 KiB
JavaScript

const mySecret = process.env['TOKEN']
// Require the necessary discord.js classes
const { Client, Intents } = require('discord.js');
const http = require('http');
require('discord-reply'); // IMPORTANT: put this before your discord.Client()
// Create a new client instance
const client = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES
]
});
http.createServer((req, res) => {
res.writeHead(200, {
'Content-type': 'text/plain'
});
res.write('Hey');
res.end();
}).listen(4000);
// When the client is ready, run this code (only once)
client.once('ready', () => {
console.log('Ready!');
console.log()
});
// Response
client.on('messageCreate', async message => {
if (message.content.startsWith("https://twitter.com/")) {
var tweetURL = message.content.substring(20, message.content.length);
message.delete();
var newmsg = "https://fxtwitter.com/" + tweetURL;
message.channel.send(newmsg);
}
});
// Login to Discord with your client's token
client.login(mySecret);