Skip to main content

A Discord Selfbot for Clone Discord Server

Project description

# nexxclone

A Discord Selfbot for Cloning Discord Servers.

Installation

pip install nexxclone

Usage

from nexxclone import Clone
import discord
import asyncio

client = discord.Client()

def main():
    token = input('Your Token > ')
    guild_s = input('Your Server ID That You Want To Copy > ')
    guild = input('Your Server ID To Copy The Server In There > ')
    input_guild_id = guild_s
    output_guild_id = guild

    @client.event
    async def on_ready():
        print(f"Logged In as: {client.user}")
        print("Cloning Server")
        guild_from = client.get_guild(int(input_guild_id))
        guild_to = client.get_guild(int(output_guild_id))

        anser = input('Do You Want To all in one clone? [y/n] > ')
        if anser.lower() == 'y':
            await Clone.all(guild_from, guild_to)
        else:
            await Clone.roledelete(guild_to)
            await Clone.chdelete(guild_to)
            await Clone.rolecreate(guild_to, guild_from)
            await Clone.catcreate(guild_to, guild_from)
            await Clone.chcreate(guild_to, guild_from)
            await Clone.guedit(guild_to, guild_from)

        answer = input('Do You Want To Clone The Template Of The Server? [y/n] > ')
        if answer.lower() == 'y':
            await Clone.gutemplate(guild_to)
        else:
            pass

        await asyncio.sleep(5)
        exit()

    client.run(token, bot=False)

main()

Contributing

Feel free to contribute by opening issues or creating pull requests. Your feedback and suggestions are welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nexxclone-1.1.0.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page