printable list of your maps..
just copy and the entire text below and save it as maplist.bat in notepad or other text editor. it has to be in your maps folder and that is where it will make the file called maps.txt.
a shortcut could also be made for it on your desktop.
@echo off
:::::::::::::::::::::::::::::::::
:: Creates a file with all the ::
:: map names in this directory ::
:: ie copy to the valve/maps ::
:: it can be executed from a ::
:: shortcut on the desktop ::
:: enjoy, Cannon
:::::::::::::::::::::::::::::::::
:: Do an Operating System check
if not "%OS%"=="Windows_NT" goto Win9x
set file=maps.txt
:: Create a backup file, incase we screwed something up
if exist %file% copy /Y %file% %file%.bak
:: Erase any old data before we begin
if exist %file% del %file%
:: Create the file with the names
FOR %%i IN (*.bsp) DO echo %%~ni >> %file%.tmp
:: Put them in alphabetical order
sort %file%.tmp > %file%
del %file%.tmp
goto :EOF
:Win9x
echo This batch file does not work under windows 9x
pause
Re: printable list of your maps..
Cool.. glad to see some folks getting use out of it. i've used it for several years, i think i originally came up with it as a way for Igmo to build himself a list by just clicking a shortcut on the desktop.. comes in real handy when trying to come up with a change in the map cycle on the server...
Quote:The Witch of the North seemed to think for a time, with her head bowed and her eyes upon the ground.Then she looked up and said, "I do not know where Kansas is, for I have never heard that country mentioned before.But tell me, is it a civilized country?"
"Oh yes," replied Dorothy.
"Then that accounts for it. In civilized countries I believe there are no witches left, nor wizards, nor sorceresses, nor magicians. But, you see, the Land of Oz has never been civilized, for we are cut off from all the rest of the world. There we still have witches and wizards amongst us."