Advertisement
metalx1000

Doom - PrBoom - Super ShotGun 2 - Notes

Feb 18th, 2015
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.78 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. #change how much AMMO is used in each shot
  11. vim +746 src/p_pspr.c
  12.  
  13. #change how many pellets are used in each shot
  14. vim +752 src/p_pspr.c
  15.  
  16. #Change Vertical Spread of pellets
  17. #angle += (t - P_Random(pr_shotgun))<<19; //original
  18. #angle += (t - P_Random(pr_shotgun))<<21; //Full Screen
  19. vim +758 src/p_pspr.c
  20.  
  21. #Change Horizontal spread of pellets.
  22. #((t - P_Random(pr_shotgun))<<8), damage); // 8 is about full width
  23. vim +761 src/p_pspr.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement