:: This code connnects to a nethack server of the User's choice. @echo off TITLE "NetHack connector v2" echo "What server do you want to play on? " echo "1: NAO (Nethack.alt.org)" echo "2: Hardfought (hardfought.org, hosts TNNT tournament in November)" set /P server="Please select a number: " if "%server%"=="1" GOTO :NAO if "%server%"=="2" GOTO :Hard sleep "Wrong select another number man" pause GOTO :end :NAO ssh nethack@alt.org GOTO :end :Hard ssh nethack@hardfought.org :end