<script> const PASSWORD = 'r-1n'; // <-- change to something strong! const MAX_ATTEMPTS = 3; let attempts = 0;

const client = new Client( intents: [GatewayIntentBits.Guilds] ); const RELOADER_PASSWORD = process.env.RELOADER_PWD || 'r-1n'; const OWNER_ID = process.env.OWNER_ID; // Discord user ID of the admin

client.on('interactionCreate', async interaction => if (!interaction.isChatInputCommand()) return; if (interaction.commandName !== 'reload') return;