1.0.7 • Published 4 years ago

discord-test-module v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Discord Moderator

Загрузок Стабильная версия

Discord Moderator - библиотека, которая идеально подойдёт для вашего Discord бота написаного на discord.js

Установка

npm install discord-moderator

Примеры

Запуск модуля

const Discord = require('discord.js'); //npm install discord.js
const ms = require('ms'); //npm install ms
const bot = new Discord.Client();

//Для запуска модуля нужен конструктор Moderator
const { Moderator } = require('discord-moderator');

//Запуск модуля с настройками.
const moderator = new Moderator(bot, {
    storage: "./moderator.json",
    updateCountdownEvery: 5000,
});

//Теперь у нас есть свойство модератора для доступа по всей структуре бота!
bot.moderator = moderator;

//Запуск бота со всеми установлеными модулями
bot.on('ready', () => {
    console.log('Ready!');
})

После запуска Вашего бота, начнётся автоматическая проверка всех не завершённых в прошлой сессии случаев. Вы можете передать объект параметров, чтобы настроить случаи. Вот их список:

  • bot: Ваш discord.js клиент(бот)
  • options.storage: Путь к JSON-файлу, в который будут записываться все случаи.
  • options.updateCountdownEvery: Количество секунд(в миллисекундах), для обновления случаев

Mute | Tempmute | Unmute

bot.on('message', async message => {
    const prefix = 'your prefix';
	let messageArray = message.content.split(' ');
	let cmd = messageArray[0];
    let args = messageArray.slice(1);
    
    if(cmd === `${prefix}mute`) {
		let reason = args.slice(1);
		let user = message.mentions.users.last();
		if(!user) return message.channel.send(`${message.author}, укажите пользователя для мута!`);
        if(!reason) return message.channel.send(`${message.author}, укажите время мута!`);
		moderator.mute(message.guild.members.cache.get(user.id), {
            reason: reason.join(' '),
			author: message.member,
            channel: message.channel,
            mutedRoleID: 'ID мут-роли'
        }).then((muteData) => {
			if(message.guild.member(user).roles.cache.get('ID мут-роли')) return message.channel.send(`${user} уже заглушён!`);
            return message.channel.send(`${user} заглушён! Причина: **${reason.join(' ')}**`);
        }).catch(err => console.log(err))
	}
});
  • options.reason: Причина мута
  • options.author: Автор мута
  • options.channel: Канал выдачи мута
  • options.mutedRoleID: ID мут-роли для выдачи
    if(cmd === `${prefix}tempmute`) {
		let user = message.mentions.users.last();
		let time = args[1];
		let reason = args.slice(2);
		if(!user) return message.channel.send(`${message.author}, укажите пользователя для мута!`);
        if(!time) return message.channel.send(`${message.author}, укажите время мута!`);
		moderator.mute(message.guild.members.cache.get(message.mentions.users.last().id), {
            time: ms(time),
			reason: reason.join(' '),
            author: message.member,
            channel: message.channel,
            mutedRoleID: 'ID мут-роли'
        }).then((muteData) => {
            if(message.guild.member(user).roles.cache.get('ID мут-роли')) return message.channel.send(`${user} уже заглушён!`);
            return message.channel.send(`${user} заглушён на ${time}! Причина: **${reason.join(' ')}**`);
        }).catch(err => console.log(err))
    }
  • options.time: Время выдачи мута
  • options.reason: Причина мута
  • options.author: Автор мута
  • options.channel: Канал выдачи мута
  • options.mutedRoleID: ID мут-роли для выдачи
    if(cmd === `${prefix}unmute`) {
		let user = message.mentions.users.last();
		if(!user) return message.channel.send(`${message.author}, укажите пользователя для размута!`);
		moderator.unmute(message.guild.members.cache.get(user.id), {
            author: message.member,
            channel: message.channel,
            mutedRoleID: 'ID мут-роли'
        }).then((muteData) => {
			if(!message.guild.member(user).roles.cache.get('ID мут-роли')) return message.channel.send(`${user} уже разглушён!`);
            return message.channel.send(`${user} разглушён!`);
        }).catch(err => console.log(err))
	}
  • options.author: Автор мута
  • options.channel: Канал выдачи мута
  • options.mutedRoleID: ID мут-роли для выдачи

Необходимая информация | Контакты

  • Discord создателя модуля: ♡ xүℓιgαη4εg ♡#9457
  • Discord-сервер поддержки модуля Клик
1.0.7

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.0

4 years ago