Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #required libs:
- sudo aptitude install libghc-opengl-dev libghc-sdl-dev make -y
- #http://sourceforge.net/projects/prboom/files/prboom%20stable/2.5.0/
- wget "http://colocrossing.dl.sourceforge.net/project/prboom-plus/prboom-plus/2.5.1.3/prboom-plus-2.5.1.3.tar.gz"
- tar -xvf prboom-plus-2.5.1.3.tar.gz
- cd prboom-plus-2.5.1.3
- ./configure
- #Modify Health Bonus Item
- vim +335 src/p_inter.c
- ##################################################################################
- case SPR_BON1:
- player->health+=50; // can go over 100%
- // if (player->health > (maxhealthbonus))//e6y
- // player->health = (maxhealthbonus);//e6y
- player->mo->health = player->health;
- player->message = "This\nIS\nA\ntest\nof lines"; // Ty 03/22/98 - externalized
- break;
- ##################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement