Tool for the ARC key glitch.
- Single hotkey - Press once to disconnect, press again to reconnect
- Two modes:
- WiFi - Disconnects/reconnects WiFi (like clicking the WiFi button)
- Ethernet - Blocks all traffic via Windows Firewall (equivalent to pulling cable)
- Auto-reconnect - Optionally auto-reconnect after X milliseconds
- Spam E - Configurable key spam with millisecond precision
- Set your hotkey
- Choose WiFi or Ethernet mode
- Enable/disable auto-reconnect
- Click Start
- Press hotkey to disconnect
- Press hotkey again to reconnect (or wait for auto-reconnect)
- Uses Windows SendInput API for fastest possible key presses
- Uses high-precision timing (
perf_counter+ busy-wait) for accurate millisecond intervals - WiFi mode uses
netsh wlan disconnect/connect - Ethernet mode uses Windows Firewall rules to block all traffic instantly - no graceful shutdown, identical to unplugging cable
- Firewall rules are automatically cleaned up on exit
- Windows 10/11
- Run as Administrator
Note: Must be built from WINDOWS
# Install dependencies
pip install -r requirements.txt
pip install pyinstaller
# Build exe
pyinstaller --onefile --windowed --name QuickDC --uac-admin quickdc.pyThe exe will be in the dist folder.