${state.keybinds.circleRestriction.toUpperCase()}: Circle Restriction: ${state.features.circleRestriction ? 'ON' : 'OFF'}
${state.keybinds.circleSmaller.toUpperCase()}/${state.keybinds.circleLarger.toUpperCase()}: Circle Size: ${state.circleRadius}px
${state.keybinds.autoCircle.toUpperCase()}: Bot Movement (right): ${state.features.autoCircle ? 'ON' : 'OFF'}
${state.keybinds.autoBoost.toUpperCase()}: Auto Boost: ${state.features.autoBoost ? 'ON' : 'OFF'}
${state.keybinds.zoomIn.toUpperCase()}: Zoom In
${state.keybinds.zoomOut.toUpperCase()}: Zoom Out
${state.keybinds.zoomReset.toUpperCase()}: Reset Zoom
${(state.keybinds.autoRespawn || 'S').toUpperCase()}: Auto Respawn: ${state.features.autoRespawn ? 'ON' : 'OFF'}
1-3: Performance Mode ${['Low: Minimal','Medium: Balanced','High: Quality'][state.features.performanceMode-1] || 'Off'}
${state.keybinds.fpsDisplay.toUpperCase()}: FPS Display: ${state.features.fpsDisplay ? 'ON' : 'OFF'}
${state.keybinds.deathSound.toUpperCase()}: Death Sound: ${state.features.deathSound ? 'ON' : 'OFF'}
${state.keybinds.showServer.toUpperCase()}: Show Server IP: ${state.features.showServer ? 'ON' : 'OFF'}
${state.keybinds.github.toUpperCase()}: GitHub
${state.keybinds.discord.toUpperCase()}: Discord
${state.keybinds.godMode.toUpperCase()}: GodMode
${state.keybinds.reddit ? state.keybinds.reddit.toUpperCase() : 'R'}: Reddit
Game State: ${state.isInGame ? 'In Game' : 'Menu'}
Zoom: ${Math.round(100 / state.zoomFactor)}%
FPS: ${state.fps}
Keybinds: ${state.features.keybindsEnabled ? 'ON' : 'OFF'}
Server: ${state.features.showServer ? (state.server || 'N/A') : 'Hidden'}
Action | Key | |
---|---|---|
${action} | ${key.toUpperCase()} |
The newest version of the mod menu is on our Discord.
Go to DSC.GG/143X to download now.
Be sure to read the Greasy Fork post for instructions.
`; overlay.appendChild(popup); document.body.appendChild(overlay); // --- Add functionality to the close button --- const closeButton = document.getElementById('update-popup-close-btn'); if (closeButton) { closeButton.onclick = function() { // Set the flag in localStorage so it doesn't show again localStorage.setItem(popupKey, 'true'); overlay.remove(); }; } })();