const Command = require('../../structures/Command'); const { stripIndents } = require('common-tags'); module.exports = class SettingHelpCommand extends Command { constructor(client) { super(client, { name: 'setting-help', group: 'util', memberName: 'setting-help', description: 'View help on how to set up settings.', guarded: true }); } run(msg) { return msg.say(stripIndents` __**Settings**__ **Mod Log Channel:** Place \`\` in a channel's topic. **Portal Channel:** Place \`\` in a channel's topic. **Member Log Channel:** Place \`\` in a channel's topic. **Custom Join Message:** Place \`message\` in the Member Log's topic. **Custom Leave Message:** Place \`message\` in the Member Log's topic. __**Placeholders**__ **Join/Leave Message:** \`{{member}}\`, \`{{server}}\`, \`{{mention}}\` `); } };