01-01-2011, 04:20 AM
(This post was last modified: 01-01-2011, 04:22 AM by Elite_Slay0r.)
So I noticed that the maplist generator that was posted here earlier was down. Thus, I made my own.
To use it, simply open notepad and paste in the following:
Save it as all files and call it "yourname.bat" Eg. "Maplist Generator.bat"
Place it in the server's "cstrike" folder. (It will work for other games as well)
Whenever you run it, a maplist with all the .bsp files in the /maps folder will be generated.
Please don't distribute this/take credit for it.
I also attached the .bat so you don't have to make it yourself.
generate maplist.bat (Size: 120 bytes / Downloads: 62)
To use it, simply open notepad and paste in the following:
Code:
@echo off
del maplist.txt
cd maps
For %%a in (*.bsp) do @echo %%~na >>"%~dp0maplist.txt"
echo List Generated!
pause
Save it as all files and call it "yourname.bat" Eg. "Maplist Generator.bat"
Place it in the server's "cstrike" folder. (It will work for other games as well)
Whenever you run it, a maplist with all the .bsp files in the /maps folder will be generated.
Please don't distribute this/take credit for it.
I also attached the .bat so you don't have to make it yourself.
generate maplist.bat (Size: 120 bytes / Downloads: 62)