Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

292
Views
Make a cloned channel in same position as the original

I made nuke command in my discord.js bot, which makes channel with same name, permissions, topic etc, and deletes the "original" channel. But there is one problem, how to make channel in same position as the "original"?

Here's my code:

module.exports = {
  name: 'nuke',
  aliases: [ 'clearall' ],
  guildOnly: true,
  permissions: [ 'MANAGE_MESSAGES', 'MANAGE_CHANNELS' ],
  clientPermissions: [ 'MANAGE_CHANNELS' ],
  group: 'moderation',
  description: 'Removes all messages in the channel (Deletes the old channel and makes a copy of it with permissions intact)',
  examples: [
    'nuke',
    'clearall'
  ],
  run: async (client, message) => {

    await message.channel.send(`This will remove all conversation in this channel and may cause conflict for bots using ID to track channels. Continue?`);

    const filter = _message => message.author.id === _message.author.id && ['y','n','yes','no'].includes(_message.content.toLowerCase());
    const options = { max: 1, time: 30000, errors: ['time'] };
    const proceed = await message.channel.awaitMessages(filter, options)
    .then(collected => ['y','yes'].includes(collected.first().content.toLowerCase()) ? true : false)
    .catch(() => false);

    if (!proceed){
      return message.channel.send(`\\❌ | **${message.author.tag}**, you cancelled the nuke command!`);
    };

    return message.channel.send(`The nuke has been deployed, saying goodbye to **#${message.channel.name}** in 10`)
    .then(() => setTimeout(() => message.channel.clone()
    .then(() => message.channel.delete().catch(() => null)), 10000))
  }
};
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Channels have a position property so you could set the cloned channel's position to this number using the .setPosition() method. You can get the cloned channel after the .clone() method is resolved:

return message.channel
  .send(
    `The nuke has been deployed, saying goodbye to **#${message.channel.name}** in 10`,
  )
  .then(() =>
    setTimeout(
      () =>
        message.channel.clone().then((clonedChannel) => {
          const originalPosition = message.channel.position;

          message.channel.delete().catch(() => null);
          clonedChannel.setPosition(originalPosition);
        }),
      10000,
    ),
  );
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!