Advertisement
Guest User

doomscript

a guest
May 17th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #!/bin/bash
  2. OPTIONS="DOOM1 DOOM2"
  3. select opt in $OPTIONS; do
  4. if [ "$opt" = "DOOM1" ]; then
  5. gzdoom -iwad DOOM.WAD -file DoomMetalVol4.wad BDoom_Objects.wad BDoom_Monsters.wad BDoom_Weapons.wad
  6. elif [ "$opt" = "DOOM2" ]; then
  7. gzdoom -iwad Doom2.wad -file D2MUS2012.wad BDoom_Objects.wad BDoom_Monsters.wad BDoom_Weapons.wad
  8. else
  9. clear
  10. echo bad option
  11. fi
  12. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement