Alright, since there has been some confusion and probably a screw up on my part I'm going to start posting the link to the most updated files in this thread. I just sent a PM to DanQ to have my upload box wiped out so I can fit more files. This way we can all be on track and fix things using our collective minds. This "don't let anyone know what we're doing" in an open playtest is becoming to much of a hindrance.
Stay tuned, I'll post the newest files soon.
In the meantime, tell me what I'm doing wrong:
@echo off
cls
echo.
echo Atomic Eagle Part 1 (V.1.0)
echo.
echo (Loads graphic, rules, and event files)
echo (load a chapter according to where you are in the game)
echo.
echo Which Chapter do you wish to load?
echo.
echo 1. Chapter 1
echo 2. Chapter 2
echo 3. Chapter 3
echo X. Exit without Loading
echo.
choice /c:123X Enter your selection
if errorlevel 10 goto done
if errorlevel 9 goto done
if errorlevel 8 goto done
if errorlevel 7 goto done
if errorlevel 6 goto done
if errorlevel 5 goto done
if errorlevel 4 goto done
if errorlevel 3 goto Three
if errorlevel 2 goto Two
if errorlevel 1 goto One
:One
echo.
echo Chapter 1
copy events1.txt events.txt
copy rules1.txt rules.txt
copy units1.bmp units.bmp
copy cities1.bmp cities.bmp
DELEVENT Atomic.sav
goto done
:Two
echo.
echo Chapter 2
copy events2.txt events.txt
copy rules2.txt rules.txt
copy units2.bmp units.bmp
DELEVENT Atomic.sav
goto done
:Three
echo.
echo Chapter 3
copy rules3.txt rules.txt
copy units3.bmp units.bmp
copy cities3.bmp cities.bmp
goto done
:done
echo.
exit
quit
Stay tuned, I'll post the newest files soon.
In the meantime, tell me what I'm doing wrong:
@echo off
cls
echo.
echo Atomic Eagle Part 1 (V.1.0)
echo.
echo (Loads graphic, rules, and event files)
echo (load a chapter according to where you are in the game)
echo.
echo Which Chapter do you wish to load?
echo.
echo 1. Chapter 1
echo 2. Chapter 2
echo 3. Chapter 3
echo X. Exit without Loading
echo.
choice /c:123X Enter your selection
if errorlevel 10 goto done
if errorlevel 9 goto done
if errorlevel 8 goto done
if errorlevel 7 goto done
if errorlevel 6 goto done
if errorlevel 5 goto done
if errorlevel 4 goto done
if errorlevel 3 goto Three
if errorlevel 2 goto Two
if errorlevel 1 goto One
:One
echo.
echo Chapter 1
copy events1.txt events.txt
copy rules1.txt rules.txt
copy units1.bmp units.bmp
copy cities1.bmp cities.bmp
DELEVENT Atomic.sav
goto done
:Two
echo.
echo Chapter 2
copy events2.txt events.txt
copy rules2.txt rules.txt
copy units2.bmp units.bmp
DELEVENT Atomic.sav
goto done
:Three
echo.
echo Chapter 3
copy rules3.txt rules.txt
copy units3.bmp units.bmp
copy cities3.bmp cities.bmp
goto done
:done
echo.
exit
quit
Comment