Advertisement
metalx1000

Doom - PrBoom - Swap Items - Notes

Feb 19th, 2015
991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.81 KB | None | 0 0
  1. #required libs and tools:
  2. sudo aptitude install libghc-opengl-dev libghc-sdl-dev make -y
  3.  
  4. #http://sourceforge.net/projects/prboom/files/prboom%20stable/2.5.0/
  5. wget "http://colocrossing.dl.sourceforge.net/project/prboom-plus/prboom-plus/2.5.1.3/prboom-plus-2.5.1.3.tar.gz"
  6. tar -xvf prboom-plus-2.5.1.3.tar.gz
  7. cd prboom-plus-2.5.1.3
  8. ./configure
  9.  
  10. #######Swap items#####
  11. #swapping an item is as easy as changing it's doomednum
  12. #but each doomednum can only be used once
  13. #so if you change one swap it with another
  14. #zombie 3004
  15. #chainsaw 2005
  16. #clip 2007
  17. #shotgun guy 9
  18.  
  19. vim +3180 src/info.c #chainsaw
  20. vim +3154 src/info.c #chaingun
  21. vim +1802 src/info.c #cyber demon
  22. vim +1282 src/info.c #zombi
  23. vim +1308 src/info.c #Shotgun Guy
  24. vim +3258 src/info.c #Shotgun
  25.  
  26. ##SWAP what item is dropped##
  27. vim +787 src/p_inter.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement