Waarschijnlijk een kleinigheidje dat ik over het hoofd zie ofzo.
Zoals het nu is slaagt het bestand op zoals ik wil, dus dat is geen probleem.
Het probleem is dat jij de laatste regels niet weergeeft voor het bat bestand afsluit.

Iemand die me kan vertellen waar het foutje zit? (het is het stukje


Code:
REM games played
set /P S=Howmany games did you play?
cls


REM Game 1 input
@echo Game 1 input
set /p Game1= Enter Gametype: 
set /p BBuse1= Enter amount of bb's used: 
set /p Kill1= How many kills did you deal: 
set /p Hit1= How many times did you die: 
echo off
set /a acc1="(%Kill1% * 100) / %BBuse1%"
if "%S%" EQU "1" goto :Output
cls


REM Game 2 input
@echo Game 2 input
set /p Game2= Enter Gametype: 
set /p BBuse2= Enter amount of bb's used: 
set /p Kill2= How many kills did you deal: 
set /p Hit2= How many times did you die: 
echo off
set /a acc2="(%Kill2% * 100) / %BBuse2%"
if "%S%" EQU "2" goto :Output
cls


REM Write Output
:Output
REM Output Game 1
echo Game: %Game1% >> %Output%\%Loc%.txt
echo BB's used: %BBuse1% >> %Output%\%Loc%.txt
echo K/D ratio: %Kill1%/%Hit1% >> %Output%\%Loc%.txt
echo Accuracy: %acc1%%%  >> %Output%\%Loc%.txt
echo ________________ >> %Output%\%Loc%.txt
pause
if "%S%" EQU "1" goto :eof


REM Output Game 2
echo Game: %Game2% >> %Output%\%Loc%.txt
echo BB's used: %BBuse2% >> %Output%\%Loc%.txt
echo K/D ratio: %Kill2%/%Hit2% >> %Output%\%Loc%.txt
echo Accuracy: %acc2%%%  >> %Output%\%Loc%.txt
echo ________________ >> %Output%\%Loc%.txt
if "%S%" EQU "2" goto :eof




:eof
cls
@echo Thank you for using AIRSOFT STATISTICS GENERATOR V1.4 by Reaper
@echo Your input is saved
pause