[FYS]EnEmY Posted April 11, 2002 Share Posted April 11, 2002 hi, after getting my server running nicely thanks to your guys help in the forums, i am now getting an error that is stopping my server. It says ERROR: MAX_SUBMODELS exceeded. Can anyone tell me what this is? I am also going to include my server.cfg to help you out seta g_motd "Home of Clan [FYS]" seta sv_hostname "[FYS]SmackDown" seta Administrator "[FYS]EnEmY" seta Email "enemyindustries@hotmail.com" seta url "http://www.clan-fys.com" seta Location "The Nudie Bar..." seta g_needpass "0" seta sv_privatePassword "my secret" seta rconpassword "cant tell you" seta sv_maxclients "16" seta sv_minclients "0" seta sv_privateClients "0" seta sv_maxRate "25000" seta sv_maxping "300" seta g_ghostRespawn "3" seta g_forcerespawn "0" seta g_inactivity "0" seta g_warmup "20" seta sv_pure "1" seta sv_master5 "" seta sv_master4 "" seta sv_master3 "" seta sv_master2 "" seta sv_master1 "masterjk2.ravensoft.com" seta g_allowvote "1" seta cl_allowDownload "0" seta g_friendlyfire "0" seta g_teamForceBalance "1" seta g_teamAutoJoin "1" seta sv_floodProtect "1" //Enable IP banning set g_filterban "1" seta g_banIPs "" seta fraglimit "20" seta timelimit "15" seta capturelimit "8" seta g_weaponrespawn "0" seta g_adaptrespawn "1" seta sv_cheats "0" seta g_logSync "0" seta g_log "games.log" seta g_gametype "4" seta g_timeouttospec "70" seta g_statLog "0" seta g_teamForceBalance "0" seta g_teamAutoJoin "1" seta g_friendlySaber "0" seta g_friendlyFire "0" seta g_saberInterpolate "1" seta g_weaponDisable "65531" seta g_forcePowerDisable "0" seta g_spawnInvulnerability "3000" seta g_forceRegenTime "150" seta g_autoMapCycle "1" seta g_maxGameClients "0" seta ui_gametype "3" seta ui_forcePowerDisable "0" seta ui_freeSaber "1" seta ui_rankChange "0" seta ui_opponentName "Rebellion" seta ui_teamName "Empire" seta ui_ctf_friendly "0" seta ui_ctf_timelimit "20" seta ui_ctf_capturelimit "8" seta ui_team_friendly "1" seta ui_team_timelimit "20" seta ui_team_fraglimit "0" seta ui_tourney_timelimit "15" seta ui_tourney_fraglimit "50" seta ui_ffa_timelimit "15" seta ui_ffa_fraglimit "20" seta g_blueTeam "Rebellion" seta g_redTeam "Empire" seta sv_minPing "0" seta sv_maxRate "30000" seta g_duelWeaponDisable "65531" seta g_forceBasedTeams "0" seta duel_fraglimit "15" seta g_maxForceRank "6" seta g_saberLocking "1" seta g_privateDuel "1" seta timelimit "15" seta fraglimit "20" // Maps rotationcycle set d1 "map ffa_bespin ; set nextmap vstr d2" set d2 "map ffa_deathstar ; set nextmap vstr d3" set d3 "map ctf_bespin ; set nextmap vstr d4" set d4 "map ns_hideout ; set nextmap vstr d5" set d5 "map ns_streets ; set nextmap vstr d6" set d6 "map imperial ; set nextmap vstr d7" set d7 "map ctf_imperial ; set nextmap vstr d8" set d8 "map yavin ; set nextmap vstr vstr d1 I appreciate the help Link to comment Share on other sites More sharing options...
MatrixCPA Posted April 11, 2002 Share Posted April 11, 2002 How much memory does the system have? How much is JK2 using? I noticed that you have a bunch of duplicate but conflicting cvars set. One of those is sv_maxRate. I saw you have set it to 25000 at one point and 30000 at another. Do you have that fat a connection to support that? You didn't have a listing for what conx you're on. One thing you can do to test out the memory usage is to type meminfo into the server console and see what you get. Does your command line contain anything interesting or unusual? We'll figure this out one way or another. Link to comment Share on other sites More sharing options...
[FYS]EnEmY Posted April 11, 2002 Author Share Posted April 11, 2002 Actually, i took all those settings (and modified a few) from the forums and forgot to take into consideration the bandwidth. I am running my server on 768/768 DSL which should handle 16 players (and has). i typed in the mem command and it told me its using 13.84 MB in 562 blocks. the zone peaked at 28.21 MB. it said a few other things but unless they are important i wont type them out. The system is running a PIII 900 with 512MB, so i think the power is sufficient, and ever since I changed the server.cfg this has been happening. I had it running good before i messed with all the lines, but it was a very basic setup. I used this .cfg to have more options and try to figure out the game commands line for line. Link to comment Share on other sites More sharing options...
MatrixCPA Posted April 11, 2002 Share Posted April 11, 2002 Just so you know, all the ui_ cvars are for "user interface" setting and don't have any effect on a dedicated server. It also looks like your map rotation is "missing" a little bit, it reads: set d1 "map ffa_bespin ; set nextmap vstr d2" set d2 "map ffa_deathstar ; set nextmap vstr d3" set d3 "map ctf_bespin ; set nextmap vstr d4" set d4 "map ns_hideout ; set nextmap vstr d5" set d5 "map ns_streets ; set nextmap vstr d6" set d6 "map imperial ; set nextmap vstr d7" set d7 "map ctf_imperial ; set nextmap vstr d8" set d8 "map yavin ; set nextmap vstr d4-d6 and d8 don't have complete map names...all maps start with duel_ or ctf_ or ffa_. Also, d8 should end with nexmap vstr d1" I'm not sure, but the missing quote might cause a problem. It also looks like you're changing game types without using set g_gametype for those. Again, may cause a problem. Ok, I see you have g_mapAutoCycle "1" set....so I presume it's ignoring your rotation completely and just going about its business. I'd recommend you either set g_mapAutoCycle "0" or pull the rotation section out. In the end, simple is best. Just change the settings you need and leave the rest as defaults. Perhaps you should back up this config and return to the simple one. Then add options you want a couple at a time and see if it gets messed at a particular point. My config is about 20 lines long and about 1/3 of those are purely informational (administrator, url, connection, etc)--works like a charm. Link to comment Share on other sites More sharing options...
[FYS]EnEmY Posted April 11, 2002 Author Share Posted April 11, 2002 ok, ive rewritten my config based on the standard on and left out alot of crap. here it is.....hope it works // Server Config seta sv_hostname "[FYS]SmackDown" seta g_motd "Forget Your Sanity" rconpassword "nevermind" seta g_needpass "0" seta sv_privatePassword "nevermind" seta sv_privateClients "0" seta sv_maxclients "16" seta g_inactivity "0" sv_maxRate "10000" set g_allowvote "1" set timelimit "15" set capturelimit "20" set g_autoMapCycle "1" seta sv_maxping "300" seta sv_pure "1" seta sv_maxping "300" seta sv_master1 "masterjk2.ravensoft.com" seta cl_allowDownload "0" seta g_friendlyfire "0" seta g_teamForceBalance "1" seta g_teamAutoJoin "1" seta sv_floodProtect "1" seta fraglimit "20" seta g_weaponrespawn "0" seta g_adaptrespawn "1" seta sv_cheats "0" seta g_gametype "4" seta g_timeouttospec "70" seta g_friendlySaber "0" seta g_friendlyFire "0" seta g_saberInterpolate "1" seta g_weaponDisable "65531" seta g_forcePowerDisable "0" seta g_spawnInvulnerability "3000" seta g_forceRegenTime "150" seta g_blueTeam "Rebellion" seta g_redTeam "Empire" seta g_duelWeaponDisable "65531" seta g_saberLocking "1" seta g_privateDuel "1" //Enable IP Banning set g_filterban "1" seta g_banIPs "" map ffa_bespin Link to comment Share on other sites More sharing options...
MatrixCPA Posted April 11, 2002 Share Posted April 11, 2002 I noticed that you are using g_gameType 4. What type of server did you want to run? Here's a list of the various gametypes: 0 = Free For All 1 = Holocron 2 = Jedi Master 3 = Duel 5 = Team Free For All 7 = Capture the Flag 8 = Capture the Ysalimari On the FFA maps, I think the valid gametypes would be 0,1,2,5. I'm not sure about 8 because I haven't taken the time to mess with it just yet. I remember someone mentioning that gametype 4 was something "unlisted" but didn't know how it panned out since they didn't follow up. If you've messed with it, I'd like to hear what you found. Link to comment Share on other sites More sharing options...
[FYS]EnEmY Posted April 12, 2002 Author Share Posted April 12, 2002 well it looks like the gametype "4" is a FFA. Server seems to be running ok with that setting Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.