Easy Guide For Jaymod Setting!


(Thetribeman) #1

Thanks for v-dawg and v-nessa for these guides.
I only did copy and paste them for those “noobs” or “new” or whatever people who dont know how to do it.


(_Mauri) #2

Where I can find that “command line”? And what’s that FTP?


(stealth6) #3

command line = start up parameters


FTP = file transfer protocol


(_Mauri) #4

How I can open up that command line :expressionless: Sorry my stupidity, first time you see.


(murka) #5

Try google, a little harder this time.


(stealth6) #6

depends if you are running a home server with windows then I just create a shortcut and add the command line to the target for example:

“C:\Path o\Wolf - ET\ETDED.exe” +set sv_pure 1 +set dedicated 1 +set fs_game noquarter +exec server.cfg

if you running linux i don’t know and if you are renting a server then you can find it on the control panel most of the time or ask the host that you are renting from.


(Blowfish) #7

Or for Linux (my case Debian) use a shell script :

ET-27961.sh


#!/bin/sh
screen -d -m -S ET-27961 /home/etserver/ET-27961/etded +set fs_homepath /home/etserver/ET-27961/ +set vm_game 0 +set sv_pure 1 +set dedicated 2 +set net_ip 85.17.138.129 +set fs_game jaymod +set net_port 27961 +set sv_punkbuster 1 +exec server.cfg

This will start ET in a new screen and detach it (so it runs as a background proces and your console is back for use). With screen -ls you see all screens, with screen -r ET-27961 you will display it on you screen. CTRL-A , D you can detach it again.

Or if you want it back to basic, just type in :


etded +set fs_homepath /home/etserver/ET-27961/ +set vm_game 0 +set sv_pure 1 +set dedicated 2 +set net_ip 85.17.138.129 +set fs_game jaymod +set net_port 27961 +set sv_punkbuster 1 +exec server.cfg

I also have a script that checks if all screens (of all servers) are running. If not will start it again.


#!/bin/bash
# Checking if screen of ET servers still running
cd /home/etserver

echo "============================================"

screen -ls|grep ET-27960
ET27960=$?

if [ $ET27960 = 0 ] ; then
	echo "Alles ok ET27960"
else
	date >> /home/etserver/ET-monitor.txt
	echo "Server down, restarting"
	echo "Probleem ET27960" >> /home/etserver/ET-monitor.txt
	./ET-27960.sh
fi

echo "============================================"

screen -ls|grep ET-27961
ET27961=$?

if [ $ET27961 = 0 ] ; then
	echo "Alles ok ET27961"
else
	date >> /home/etserver/ET-monitor.txt
	echo "Server down, restarting"
	echo "Probleem ET27961" >> /home/etserver/ET-monitor.txt
	./ET-27961.sh
fi

echo "============================================"

screen -ls|grep ET-27962
ET27962=$?

if [ $ET27962 = 0 ] ; then
	echo "Alles ok ET27962"
else
	date >> /home/etserver/ET-monitor.txt
	echo "Server down, restarting"
	echo "Probleem ET27962" >> /home/etserver/ET-monitor.txt
	./ET-27962.sh
fi

echo "============================================"

Of course you need to edit it where needed, cause all servers are different :slight_smile:


(_Mauri) #8

For some reason I don’t have ETDED.exe file in W:ET folder…

And I have Windows XP


(Wezelkrozum) #9

The wolfenstein:et patch 2.60 will create a ETDED.exe. You probably installed w:et 2.55.
So update your wolfenstein:et with the 2.60 patch.