Discord.js kullanılarak yazılmış bir eğlence komutu. Komutu kullan ve rastgele bir film önerisi al. Kurulum için aşağıdaki talimatları izleyin.
⚠ Botunuza hangisi uygunsa o kodu kullanın.
Kurulum için aşağıdaki adımları izleyin;
- Bu kod projenizdeki komutlar ya da commands adındaki klasöre atılmalıdır. Eğer eklemeyi bilmiyorsanız buraya tıklayın.
- Komut içerisindeki gerekli yerleri kendinize göre düzenleyebilirsiniz.
- Gerekli modüller: Discord.js
Discord.js v13 için;
// Komutlar klasörüne atılmalıdır.
// Bu komut Staup tarafından hazırlanmıştır.
const Discord = require('discord.js');
exports.run = (client, message, args) => {
const filmler = [
"Inception (2010)",
"The Shawshank Redemption (1994)",
"The Godfather (1972)",
"The Dark Knight (2008)",
"Pulp Fiction (1994)",
"Forrest Gump (1994)",
"The Matrix (1999)",
"Fight Club (1999)",
"The Lord of the Rings: The Fellowship of the Ring (2001)",
"Interstellar (2014)"
];
var film = filmler[Math.floor(Math.random() * filmler.length)];
message.channel.send(`Bugün izlemek için önerim: ${film}`);
};
exports.conf = {
enabled: true,
guildOnly: true,
aliases: [],
permLevel: 0
};
exports.help = {
name: 'filmöner',
description: 'Rastgele bir film önerir.',
usage: 'filmöner'
};
Discord.js v14 için;
// Komutlar klasörüne atılmalıdır.
// Bu komut Staup tarafından hazırlanmıştır.
const { MessageEmbed } = require('discord.js');
module.exports = {
name: 'filmöner',
description: 'Rastgele bir film önerir.',
usage: 'filmöner',
execute(message, args) {
const filmler = [
"Inception (2010)",
"The Shawshank Redemption (1994)",
"The Godfather (1972)",
"The Dark Knight (2008)",
"Pulp Fiction (1994)",
"Forrest Gump (1994)",
"The Matrix (1999)",
"Fight Club (1999)",
"The Lord of the Rings: The Fellowship of the Ring (2001)",
"Interstellar (2014)"
];
var film = filmler[Math.floor(Math.random() * filmler.length)];
message.channel.send(`Bugün izlemek için önerim: ${film}`);
},
};