10-25-2005, 11:54 PM
That script looks a little involved. (I might have to try it) Maybe you what to start out with a simpler one at first. Here is what I use for dod:source:
#!/bin/sh
cd $HOME/srcds_1
export LD_LIBRARY_PATH=$HOME/srcds_1:$LD_LIBRARY_PATH
/usr/bin/screen -A -m -d -S dod ./srcds_run -game dod -port 27015 +map dod_donner +maxplayers 12
I saw you said you don't have screen so this probably won't work for you either.
#!/bin/sh
cd $HOME/srcds_1
export LD_LIBRARY_PATH=$HOME/srcds_1:$LD_LIBRARY_PATH
/usr/bin/screen -A -m -d -S dod ./srcds_run -game dod -port 27015 +map dod_donner +maxplayers 12
I saw you said you don't have screen so this probably won't work for you either.