Prboom Questions


nemt

Member
Joined
Sep 23, 2005
Messages
142
Age
38
Website
www.nemesisz.net
I have doom.wad, doom2.wad, plutonia.wad and tnt.wad in my PrBoom directory, but when I launch PrBoom it automatically goes to Doom 2 and I don't see any way to play the other games. Is there some configuration file I need to edit?

Also, is it normal for the current version to crash pretty frequently?
 
make seperated files.
Code:
#!/bin/sh
#Go to the prboom dir/folder
cd gp2x/Doom

#Laucnh prboom using Doom 1 IWAD, two additional PWAD and a Dehacked file.
./prboom -iwad plutonia.wad

# sync the SD card so that everything (saves games, config, etc.) is written.
sync

# return to the menu screen
cd /usr/gp2x
exec /usr/gp2x/gp2xmenu
save as plutonia.wad
 
nemt posted on Oct 30 2006 at 10:53 PM said:
Can you elaborate a little?

u copy the file tnt.wad into doom map
and u create a file tnt.gpe
edit this file
Code:
#!/bin/sh
#Go to the prboom dir/folder
cd gp2x/Doom

#Laucnh prboom using Doom 1 IWAD, two additional PWAD and a Dehacked file.
./prboom -iwad tnt.wad

# sync the SD card so that everything (saves games, config, etc.) is written.
sync

# return to the menu screen
cd /usr/gp2x
exec /usr/gp2x/gp2xmenu
and save it
after that run tnt.gpe for the game. do that the same for plutonia.wad and doom2.wad

ok?
 
Last edited by a moderator:
Got it, thanks.

One more thing, though - is there any way to quit without the system locking up? It says "Press Y to exit" (I assume this means Y on a standard keyboard - as Y on the GP2X does nothing here).
 
nemt posted on Oct 31 2006 at 07:56 AM said:
One more thing, though - is there any way to quit without the system locking up? It says "Press Y to exit" (I assume this means Y on a standard keyboard - as Y on the GP2X does nothing here).

I just tried hitting every key and I found that R + Y quits :D
 
Last edited by a moderator:
nemt posted on Oct 30 2006 at 11:26 PM said:
Got it, thanks.

One more thing, though - is there any way to quit without the system locking up? It says "Press Y to exit" (I assume this means Y on a standard keyboard - as Y on the GP2X does nothing here).
yw

here on my gp2x Y-key means quit... :blink:
 
Last edited by a moderator:
Back
Top