Server from the command line problems


(noob@everything) #1

I am trying to create my own server for me and a few friends. I am trying to do this from a batch file using the code

“C:\Program Files\Wolfenstein - Enemy Territory\et.exe” +set dedicated 0 +set net_port 27960 +set fs_game etpro +set fs_homepath 27960 +set sv_punkbuster 1 +exec server.cfg

however when i double click the batch file it opens the game and it does nothing else. Please help!!! What am i doing wrong???


(EB) #2

Explain more & better please.


(noob@everything) #3

i wrote a .txt file with the “C:\Program Files\Wolfenstein - Enemy Territory\et.exe” +set dedicated 0 +set net_port 27960 +set fs_game etpro +set fs_homepath 27960 +set sv_punkbuster 1 +exec server.cfg in it. Then i renamed it to a .bat file. When i try to launch the server using this .bat file it just opens up the game.

My server.cfg
set dedicated “0” // 1: dedicated server for lan 2: dedicated server for internet
// set net_ip “” // set to override the default IP ET uses
// set net_port “27960” // set to override the default port ET uses

// PASSWORDS & CLIENTS

set sv_maxclients “8” // number of players including private slots
set g_password “” // set to password protect the server
set sv_privateclients “2” // if set > 0, then this number of client slots will be reserved for connections
set sv_privatepassword “” // that have “password” set to the value of “sv_privatePassword”
set rconpassword “kyle” // remote console access password
set refereePassword “administrator” // referee status password

// DL, RATE
set b_kmap “scripts/mycmp.campaign”
b_kmap “scripts/mycmp.campaign”
set sv_maxRate “13000” // 10000 standard but poor for ET
set sv_dl_maxRate “42000” // increase/decerease if you have plenty/little spare bandwidth
set sv_allowDownload “0” // global toggle for both legacy download and web download
set sv_wwwDownload “0” // toggle to enable web download
set sv_wwwBaseURL “” // base URL for redirection
set sv_wwwDlDisconnected “1” // tell clients to perform their downloads while disconnected from the server
set sv_wwwFallbackURL “” // URL to send to if an http/ftp fails or is refused client side

// MOTD ETC

set sv_hostname “Battery Only” // name of server here
set server_motd0 " ^NEnemy Territory ^7MOTD " // message in right corner of join screen here
set server_motd1 “>Hi play Fair<”
set server_motd2 “Admin:1337 Wombat
set server_motd3 “&Moderator/VIP:SilentNight&”
set server_motd4 “!Please Don’t Overcrowd Classes!”
set server_motd5 “1337_Wombat___”

// MISC SETTINGS

set g_heavyWeaponRestriction “100”
set g_antilag “1”
set g_altStopwatchMode “0”
set g_autofireteams “1”
set g_complaintlimit “6”
set g_ipcomplaintlimit “3”
set g_fastres “0”
set g_friendlyFire “1”
//set g_gametype “4” // Game type should be set from map rotation script
set g_minGameClients “8”
set g_maxlives “0”
set g_alliedmaxlives “0”
set g_axismaxlives “0”
set g_teamforcebalance “1”
set g_noTeamSwitching “0”
set g_voiceChatsAllowed “4”
set g_doWarmup “0”
set g_warmup “30”
set g_spectatorInactivity “0”
set sv_floodProtect “1”
set sv_allowDownload “1”
set sv_pure “1”
set sv_minping “0”
set sv_maxping “0”
set match_latejoin “1”
set match_minplayers “4”
set match_mutespecs “0”
set match_readypercent “100”
set match_timeoutcount “0”
set match_warmupDamage “1”
set team_maxplayers “0”
set team_nocontrols “1”
set pmove_fixed “0”
set pmove_msec “8”

// LMS ONLY SETTINGS

set g_lms_teamForceBalance “1”
set g_lms_roundlimit “3”
set g_lms_matchlimit “2”
set g_lms_currentMatch “0”
set g_lms_lockTeams “0”
set g_lms_followTeamOnly “1”

// VOTING

set g_allowVote “1”
set vote_limit “5”
set vote_percent “50”
set vote_allow_comp “1”
set vote_allow_gametype “1”
set vote_allow_kick “1”
set vote_allow_map “1”
set vote_allow_matchreset “1”
set vote_allow_mutespecs “1”
set vote_allow_nextmap “1”
set vote_allow_pub “1”
set vote_allow_referee “0”
set vote_allow_shuffleteams “1”
set vote_allow_swapteams “1”
set vote_allow_friendlyfire “1”
set vote_allow_timelimit “1”
set vote_allow_warmupdamage “1”
set vote_allow_antilag “1”
set vote_allow_balancedteams “1”
set vote_allow_muting “1”

// PUNKBUSTER

// sv_punkbuster is a readonly variable. Use +set sv_punkbuster on command line or use the command pb_sv_enable in the console
//pb_sv_enable

// LOGGING

set g_log “etserver.log” // Game logging
set g_logsync 0
set logfile 0 // Console logging ( 1: enable 2: enable and sync )

// MAP ROTATION
exec kyleserverbatteryonly.cfg

// WATCHDOG

// in case the game dies with an ERR_DROP
// or any situation leading to server running with no map
//set com_watchdog 10 // defaults 60
set com_watchdog_cmd “exec kyleserverbatteryonly.cfg” // defaults to quit
b_kmap “scripts/mycmp.campaign”

// MASTER SERVERS
set sv_master1 “etmaster.idsoftware.com
set sv_master2 “master.gamespy.com:27900
set sv_master3 “master0.gamespy.com
set sv_master4 “clanservers.net
set sv_master5 “”

My kyleserverbattery.cfg
set d1 “set g_gametype 2 ; map battery; set nextmap vstr d1”

I no that i am probably doin somethin really n00Bish i just cant figure out what.
BTW i was tryin to follow this tutorial http://www.rtcw.jolt.co.uk/content/enemy_territory/server_guide/index.html


(EB) #4

In the command line… it should be +set dedicated 1 or 2, not 0.

Then within the server.cfg :

set dedicated “0” // 1: dedicated server for lan 2: dedicated server for internet < ======= NEEDS to be 1 or 2 or just omitted all together since the command line sets this.
set sv_wwwDlDisconnected “1” // tell clients to perform their downloads while disconnected from the server <===Considering it is for you and your freinds…this should be “0” an then use 1 or both of these next settings with the setting above:
set sv_allowDownload “1” // global toggle for both legacy download and web download
set sv_wwwDownload “1” // toggle to enable web download
----You also have 2 of these: “set sv_allowDownload” but both have different #'s(not recommended)
set logfile 0 // Console logging ( 1: enable 2: enable and sync ) <=====Enable this, so you can see what the problem may be or become.

set d1 “set g_gametype 2 ; map battery ; set nextmap vstr d1”
vstr d1

There are ways of these settings being overrided and reset. So just check things carefully and maybe someone else can pick up on things I might have overlooked. I probably did considering I am dog tired.

-Cheers ( I should’ve been in bed hours ago…::yawn:: )


(DG) #5

not if he wants to play from the server it shouldnt. sv_wwwDownload and suchlike also arent likely to be causing the stated problems.

noob@everything,
seeing that your running windows, put that command line into a shortcut instead of a batch file.
else, cut the map rotation and just put in the line map battery instead, then see if it loads. also check server.cfg is not actually server.cfg.txt, if your windows is set to hide extensions for known file types.

I’m really not sure how you came from following that site to coming up with that server cfg?

mebbie try:


// PASSWORDS & CLIENTS

set sv_maxclients "8" // number of players including private slots
set g_password "" // set to password protect the server
set sv_privateclients "2" // if set > 0, then this number of client slots will be reserved for connections
set sv_privatepassword "aPassword" // that have "password" set to the value of "sv_privatePassword"
set rconpassword "yourNewPassword" // remote console access password
set refereePassword "aDifferentNewPassword" // referee status password

// DL, RATE
set sv_maxRate "13000" // 10000 standard but poor for ET
set sv_dl_maxRate "42000" // increase/decerease if you have plenty/little spare bandwidth
set sv_allowDownload "0" // global toggle for both legacy download and web download
set sv_wwwDownload "0" // toggle to enable web download
set sv_wwwBaseURL "" // base URL for redirection
set sv_wwwDlDisconnected "1" // tell clients to perform their downloads while disconnected from the server
set sv_wwwFallbackURL "" // URL to send to if an http/ftp fails or is refused client side

// MOTD ETC

set sv_hostname "Battery Only" // name of server here
set server_motd0 " ^NEnemy Territory ^7MOTD " // message in right corner of join screen here
set server_motd1 ">Hi play Fair<"
set server_motd2 "*Admin:1337 Wombat*"
set server_motd3 "&Moderator/VIP:SilentNight&"
set server_motd4 "!Please Don't Overcrowd Classes!"
set server_motd5 "_________1337_Wombat____________"

// MISC SETTINGS

set g_heavyWeaponRestriction "100"
set g_antilag "1"
set g_altStopwatchMode "0"
set g_autofireteams "1"
set g_complaintlimit "6"
set g_ipcomplaintlimit "3"
set g_fastres "0"
set g_friendlyFire "1"
set g_minGameClients "8"
set g_maxlives "0"
set g_alliedmaxlives "0"
set g_axismaxlives "0"
set g_teamforcebalance "1"
set g_noTeamSwitching "0"
set g_voiceChatsAllowed "4"
set g_doWarmup "0"
set g_warmup "30"
set g_spectatorInactivity "0"
set sv_floodProtect "1"
set sv_allowDownload "1"
set sv_pure "1"
set sv_minping "0"
set sv_maxping "0"
set match_latejoin "1"
set match_minplayers "4"
set match_mutespecs "0"
set match_readypercent "100"
set match_timeoutcount "0"
set match_warmupDamage "1"
set team_maxplayers "0"
set team_nocontrols "1"
set pmove_fixed "0"
set pmove_msec "8"

// LMS ONLY SETTINGS

set g_lms_teamForceBalance "1"
set g_lms_roundlimit "3"
set g_lms_matchlimit "2"
set g_lms_currentMatch "0"
set g_lms_lockTeams "0"
set g_lms_followTeamOnly "1"

// VOTING

set g_allowVote "1"
set vote_limit "5"
set vote_percent "50"
set vote_allow_comp "1"
set vote_allow_gametype "1"
set vote_allow_kick "1"
set vote_allow_map "1"
set vote_allow_matchreset "1"
set vote_allow_mutespecs "1"
set vote_allow_nextmap "1"
set vote_allow_pub "1"
set vote_allow_referee "0"
set vote_allow_shuffleteams "1"
set vote_allow_swapteams "1"
set vote_allow_friendlyfire "1"
set vote_allow_timelimit "1"
set vote_allow_warmupdamage "1"
set vote_allow_antilag "1"
set vote_allow_balancedteams "1"
set vote_allow_muting "1"

// LOGGING

set g_log "etserver.log" // Game logging
set g_logsync 0
set logfile 0 // Console logging ( 1: enable 2: enable and sync )

// WATCHDOG

// in case the game dies with an ERR_DROP
// or any situation leading to server running with no map
//set com_watchdog 10 // defaults 60
set com_watchdog_cmd "map battery"

// MAP ROTATION

map battery

(EB) #6

Yeah, I should have explained myself better, but then again, you wouldn’t have had to post!!! :smiley:


(SCDS_reyalP) #7

noob@everything:
the problem with your batch file is most likely that it is actually .bat.txt but windows is hiding the second extention. You can turn off “hide extensions of known filetypes” in explorer options, and save yourself some confusion.

not if he wants to play from the server it shouldnt.[/quote]
FWIW, even if you want to play on the machine hosting the game, it is a good idea to run a dedicated server, and connect to that locally (by ip), rather than running a listen server. There are a number of weirdnesses associated with listen servers, and the extra resources required arn’t a problem if you have a reasonably modern machine.

If you are going to host a server, it is a very good idea to host it from a clean install of et, with only whatever specific maps you want to play. ET has a number of problems that crop up when you have too many files or campaigns. You can either install et in a second location, or copy your et install, and then delete all the .pk3 files except for mp_bin.pk3, pak0.pk3 and pak1.pk3. I’d also suggest a fresh install of whatever mod you are going to run. If you decide to copy your et install, you might want to avoid copying the demos and screenshots directories, to save yourself some time and space.


(Nail) #8

exec kyleserverbatteryonly.cfg

// WATCHDOG

// in case the game dies with an ERR_DROP
// or any situation leading to server running with no map
//set com_watchdog 10 // defaults 60
set com_watchdog_cmd “exec kyleserverbatteryonly.cfg” // defaults to quit
b_kmap “scripts/mycmp.campaign”

// MASTER SERVERS
set sv_master1 “etmaster.idsoftware.com
set sv_master2 “master.gamespy.com:27900
set sv_master3 “master0.gamespy.com
set sv_master4 “clanservers.net
set sv_master5 “”

My kyleserverbattery.cfg <—should read kyleserverbatteryonly.cfg afaik
set d1 “set g_gametype 2 ; map battery; set nextmap vstr d1”


(noob@everything) #9

my explorer options are fine so it isnt the ending of the .bat file. when i try to run a dedicated server for the internet (dedicated 2) it starts up the ET console and then it crashes. Here is the et console:
ET 2.56 win-x86 Sep 5 2003
----- FS_Startup -----
Current search path:
C:\Program Files\Wolfenstein - Enemy Territory\etpro\zer0wm.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\watermark.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\watermark-bd.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\saberpeak_etpro.pk3 (3 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\reactor_b2_ETPRO_ONLY.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\pak_muppet_weapons.pk3 (208 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\etpro-3_1_9.pk3 (97 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\etpro-3_1_0.pk3 (89 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\dubrovnik_b1_ETPRO_ONLY.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory/etpro
C:\Program Files\Wolfenstein - Enemy Territory\etmain\zer0_102704.pk3 (4 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\warnite.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\vick.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\venice.pk3 (330 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain emple_final.pk3 (57 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain eam045.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain c_base.pk3 (63 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\summer_palace_b1.pk3 (33 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\sp_delivery_rc2.pk3 (39 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\skycomplete2.pk3 (7 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\rtcc2.pk3 (41 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pstestmap.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pdpcampgn.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak7654.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak2401.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak2123.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak1703.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak1.pk3 (10 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak0.pk3 (3725 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\mp_bin.pk3 (4 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\madcampaigns2.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\hamfeb2005.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\example_KJ.pk3 (9 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\etmapscycle.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\etmapcycle.pk3 (3 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\dnbclan210.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\Complete.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\clanwars.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\campaigncycle.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\aod_bullet.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\aod_bullet.6ea1c3cc.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\6map.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\6map.7c103b7b.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\10map.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\10map.041d12b0.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory/etmain


4780 files in pk3 files
WARNING: profile.pid found for profile ‘1337Wombat’ - system settings will revert to defaults
execing default.cfg
couldn’t exec language.cfg
execing profiles/1337Wombat/etconfig.cfg
execing autoexec.cfg
Hunk_Clear: reset the hunk ok
…detecting CPU, found Intel Pentium III
Bypassing CD checks
— Common Initialization Complete —
Winsock Initialized
Opening IP socket: localhost:27960
Hostname: Kyle
IP: 169.254.8.211
IP: 203.218.217.217
Working directory: C:\Program Files\Wolfenstein - Enemy Territory
PunkBuster Server: pb_sv_SsNext = 431672 (0 to 999999)
PunkBuster Server: pb_sv_LogNext = 7 (1 to 999999)
PunkBuster Server: 0 Power Players loaded from C:\Program Files\Wolfenstein - Enemy Territory\pb\pbpower.dat
PunkBuster Server: 0 PB Rcon Filters loaded from C:\Program Files\Wolfenstein - Enemy Territory\pb\pbrcon.dat
PunkBuster Server: PunkBuster Server (v1.031 | A1307 C1.013) Enabled
execing server.cfg
dedicated will be changed upon restarting.
------ Server Initialization ------
Server: battery
Hunk_Clear: reset the hunk ok
----- FS_Startup -----
Current search path:
C:\Program Files\Wolfenstein - Enemy Territory\etpro\zer0wm.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\watermark.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\watermark-bd.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\saberpeak_etpro.pk3 (3 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\reactor_b2_ETPRO_ONLY.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\pak_muppet_weapons.pk3 (208 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\etpro-3_1_9.pk3 (97 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\etpro-3_1_0.pk3 (89 files)
C:\Program Files\Wolfenstein - Enemy Territory\etpro\dubrovnik_b1_ETPRO_ONLY.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory/etpro
C:\Program Files\Wolfenstein - Enemy Territory\etmain\zer0_102704.pk3 (4 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\warnite.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\vick.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\venice.pk3 (330 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain emple_final.pk3 (57 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain eam045.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain c_base.pk3 (63 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\summer_palace_b1.pk3 (33 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\sp_delivery_rc2.pk3 (39 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\skycomplete2.pk3 (7 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\rtcc2.pk3 (41 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pstestmap.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pdpcampgn.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak7654.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak2401.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak2123.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak1703.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak1.pk3 (10 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\pak0.pk3 (3725 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\mp_bin.pk3 (4 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\madcampaigns2.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\hamfeb2005.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\example_KJ.pk3 (9 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\etmapscycle.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\etmapcycle.pk3 (3 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\dnbclan210.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\Complete.pk3 (5 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\clanwars.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\campaigncycle.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\aod_bullet.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\aod_bullet.6ea1c3cc.pk3 (1 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\6map.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\6map.7c103b7b.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\10map.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory\etmain\10map.041d12b0.pk3 (2 files)
C:\Program Files\Wolfenstein - Enemy Territory/etmain


9560 files in pk3 files
------- Game Initialization -------
gamename: etmain
gamedate: Sep 5 2003
Gametype changed, clearing session data.
Enable spawning!
Disable spawning!
0 teams with 0 entities


ERROR: BG_IndexForString: unknown token ‘NOT’: (animations/scripts/human_base.script, line 3351)


----- Server Shutdown -----
==== ShutdownGame ====

Hunk_Clear: reset the hunk ok
PunkBuster Server: Game Version [ET 2.56 win-x86 Sep 5 2003]

Then it says something about client initialization but i cant get it because it crashes and freezes.


(noob@everything) #10

it says

---------------------client initialization-----------------------------------
---------------------initialization rendering----------------------------
--------------------client initialization complete----------------------
--------------------CL_Shutdown------------------------------
RE_Shutdown (1)


(noob@everything) #11

then i get a ET.exe has encountered a problem message and it asks if i want to send an error report to microsoft. What do i do?


(DG) #12

try moving all those non-official .pk3 files into a temp folder.

In etmain, you’ll need to keep mp_bin.pk3, pak0.pk3, pak1.pk3
in etpro, keep EITHER etpro-3_1_0.pk3 or etpro-3_1_9.pk3


(Nail) #13

you can only have ONE etpro pk3 , pick one


(SCDS_reyalP) #14

and make sure you have only the .dlls that go with that .pk3 (you can extract cgame and ui from it directly, and get qagame from the etpro download for that version).

As I said before, if you are going to host a server, it is a very good idea to start with a clean instal, rather than trying to use your normal online play one.l


(noob@everything) #15

i fixed everything. I did what DG said earlier - used a shortcut. I made a dedicated and joined it and it works fine thx guys
However it is super laggy. Would you know how to fix the lag?


(noob@everything) #16

i fixed the lag - i created a listen server from the shortcut and it works fine
however, it doesnt send heartbeats to the master server(s)
how would i fix this?


(DG) #17

It only sends heartbeat when it is a dedictaed internet server, i.e. dedicated 2.

Fortunately, since it means most of the servers in the master list are on proper servers.


(noob@everything) #18

but is there anyway to do it manually like from the server.cfg


(EB) #19

So, basically you want to play the game with other players on the same computer that you are running the server on.

You can lower the ‘maxrate/setrate’ down.

BTW, what is your bandwidth ? Cable, DSL ? You will need a good connection to even try to run one that can support 10 players @ setrate 13000.
Your best bet would be to lower the maxrate/setrate to about 4000 and cross your fingers that the server won’t suck.

After You post what your bandwidth is, I am sure you will receive more suggestions on what to do.


(SCDS_reyalP) #20

yes, set dedicated 2

:moo:

You shouldn’t use a listen server for public play. Since it is trivial to run a listen server and client on the same machine, there is no need to. You also most likely shouldn’t use a server hosted on a normal home connection for public play, although that depends on your connection and how many players you want to host. You should have at least 6-10 kbyte/sec upload for each player. The more players you have, the more you need per player.

eb:
setrate ?