Counterstrike In Prboom


Vynx

Member
Joined
May 1, 2006
Messages
253
Right, I managed to get it to load, but i'm running into a few problems. I run my script to load the game, but after about 5 seconds it crashes every time, regardless of what I do. I can access the menu, but I never get far enough to get into the game.

This is the script that seems to work (although I have no idea if sound does, I added that just in case it would);

#!/bin/bash
./prboom -iwad doom.wad -deh blood2.deh
sync

cd /usr/gp2x/
./gp2xmenu

I also put in the prboom.cfg file that came with the mod, and I assume that's why running doom.wad automatically runs the CS mod.

Anyone have any ideas? This is rattling my brain. In theory, the script should look like this;

#!/bin/bash
./prboom -iwad doom.wad -file demon2.WAD -deh blood2.deh
sync

cd /usr/gp2x/
./gp2xmenu

But that just makes it crash to the GP2X menu :huh:
 
Solved

#!/bin/bash
./prboom -iwad doom2.wad -deh blood2.deh -file demon2.wad > prboom.log.txt 2>&1
sync

cd /usr/gp2x/
exec ./gp2xmenu

I was loading the wrong doom wad. :ph34r:
 
Solved

#!/bin/bash
./prboom -iwad doom2.wad -deh blood2.deh -file demon2.wad > prboom.log.txt 2>&1
sync

cd /usr/gp2x/
exec ./gp2xmenu

I was loading the wrong doom wad. :ph34r:


Yeah, the blood2 and demon2 files are written for doom2, so doom2.wad needs to be used . The blood and demon files are for Doom 1, in which doom.wad needs to be used..

I do plan to put levels into them as well. I have some friends that wrote some levels a long time ago, that would really rock with the blood hacks...just need time to write them in.

DSR
 
Last edited by a moderator:
Back
Top