Hey guys. Made this quick batch file you could use to set up a menu to run various mods in your quake folder. I suppose you could just simply use miniql or similar but just thought someone might find it useful. Easily adjustable.
And you get to learn a bit about win batch!
Basically just paste this into notepad or similar and save it as whatever.bat
Obviously have it in your quake folder! But you can set it up to work from anywhere by changing the directories under the udefine. Have fun!
And you get to learn a bit about win batch!

Basically just paste this into notepad or similar and save it as whatever.bat

Code:
@echo off color 0c title Darkplaces Mod Selection :top echo *************************************************************** echo. echo Darkplaces Mod Selection echo. echo *************************************************************** echo. echo [1] Darkplaces Mod echo [2] Zeus Bot echo [3] Reaper Bot (Missing) echo [4] FrikBot echo [5] Kleshik Coop Mod echo [6] The Myths Mod echo [7] Beyond Belief Mod echo [8] Travail Mod echo [9] Mission Pack 1 echo [10] Mission Pack 2 echo [11] Mission Pack 3 (Missing) echo [12] QuakeInjector Map Selector echo. echo [e] Exit echo. echo *************************************************************** echo Enter the number of the MOD which you would like to start: echo. set /p udefine= echo. echo *************************************************************** if %udefine%==1 start darkplaces.exe -game dpmod if ෯ine%==2 start darkplaces.exe -game ZeusBot if ෯ine%==3 start darkplaces.exe -game ReaperBot if ෯ine%==4 start darkplaces.exe -game frikbot if ෯ine%==5 start darkplaces.exe -quake -game rogue -game hipnotic -game id1 -game kleshik if ෯ine%==6 start darkplaces.exe -hipnotic -game themyths if ෯ine%==7 start darkplaces.exe -rogue -game bbelief if ෯ine%==8 start darkplaces.exe -game travail -travail if ෯ine%==9 start darkplaces.exe -hipnotic if ෯ine%==10 start darkplaces.exe -rogue +game rogue if ෯ine%==11 start darkplaces.exe -rogue -game abyss if ෯ine%==12 start quakeinjector.jar if ෯ine%==e goto exit cls echo *************************************************************** echo. echo Your Mod is Running using Darkplaces Mod Selector! echo. echo *************************************************************** echo Type [e] to exit or [b] to go back and select MOD. echo. set /p udefine= echo. echo *************************************************************** if ෯ine%==b goto top if ෯ine%==e goto exit :exit cls echo *************************************************************** echo. echo Thank You for using Darkplaces Mod Selector! Happy Quaking! :) echo. echo *************************************************************** pause exit
Comment