ploxsnof
Gebruiker
- Lid geworden
- 26 mrt 2009
- Berichten
- 13
@echo off
:again
cls
set /p "pass=>"
if %pass% == "password" goto :next
else goto :wrong
:next
cls
echo goed
ping localhost -n 2 >NUL
goto :again
:wrong
cls
echo fout
ping localhost -n 2 >nul
goto :again
Het probleem is dat als ik iets anders dan password in typ hij alsnog naar :next gaat.3