AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Source Servers (SRCDS) (https://forums.alliedmods.net/forumdisplay.php?f=130)
-   -   TF2 no mapcycle on empty server (https://forums.alliedmods.net/showthread.php?t=105386)

alpetras 10-04-2009 05:31

TF2 no mapcycle on empty server
 
hi
Ive got a linux TF2 server running with SourceMod, I think I have all the appropriate plugins. my problem is that when the server is empty, the map rotation stops, the server gets stuck on the same map. it looks like the timelimit works, when i change the map via hlsw, the timeleft starts decreasing but when 0:00 is left, the server doesnt change the map to the next map in the map cycle and says [SM] This is the last round!!
my SM plugins are the following:
Code:

[SM] Listing 28 plugins:
          01 "Admin File Reader" (1.2.3) by AlliedModders LLC
          02 "Admin Help" (1.2.3) by AlliedModders LLC
          03 "Admin Menu" (1.2.3) by AlliedModders LLC
          04 "Anti-Flood" (1.2.3) by AlliedModders LLC
          05 "HLSW Info" (1.1) by Tsunami
          06 "Basic Chat" (1.2.3) by AlliedModders LLC
          07 "Basic Comm Control" (1.2.3) by AlliedModders LLC
          08 "Basic Commands" (1.2.3) by AlliedModders LLC
          09 "Basic Info Triggers" (1.2.3) by AlliedModders LLC
          10 "Basic Votes" (1.2.3) by AlliedModders LLC
          11 "Client Preferences" (1.2.3) by AlliedModders LLC
          12 "Fun Commands" (1.2.3) by AlliedModders LLC
          13 "Fun Votes" (1.2.3) by AlliedModders LLC
          14 "Nextmap" (1.2.3) by AlliedModders LLC
          15 "Player Commands" (1.2.3) by AlliedModders LLC
          16 "Execute Configs" (1.0) by Tsunami
          17 "SourceBans" (1.4.5) by InterWave Studios Development Team
          18 "Spray Tracer" (5.8) by Nican132, CptMoore, Lebson506th
          19 "Advertisements" (0.5.5) by Tsunami
          20 "gScramble + Balance" (2.3.1) by Goerge
          21 "MapChooser" (1.2.3) by AlliedModders LLC
          22 "Rock The Vote" (1.2.3) by AlliedModders LLC
          23 "HLstatsX CE Ingame Plugin" (1.6.1) by psychonic
          24 "SuperLogs: TF2" (1.3) by psychonic
          25 "Players Votes" (1.5.0) by The Resident, pZv!
          26 "Client Execute" (1.0.0.3) by dubbeh
          27 "Web Shortcuts" (1.0.1) by James "sslice" Gray
          28 "High Ping Kicker - Lite Edition" (1.0.0.1) by Liam

server.cfg
Code:

hostname "asdffgr"        // this is your server name as shown in the server list
sv_password ""                // your server password. a pair of double quotes means it is not set and anyone can join

//rcon settings
rcon_password "strhhg"        // your rcon password to log into the dev rcon console or HLSW rcon console
sv_rcon_banpenalty 5            // Number of minutes to ban users who fail rcon authentication
sv_rcon_maxfailures 10            // Max number of times a user can fail rcon authentication before being banned

//cvars for balancing un-even teams
mp_autoteambalance 1            // 0 is off and 1 is on. if 1 then should be used in conjunction with the following 3 commands
mp_autoteambalance_delay 60        // Time (in seconds) after the teams become unbalanced to attempt to switch players
mp_autoteambalance_warning_delay 30    // Time (in seconds) after the teams become unbalanced to print a balance warning
mp_teams_unbalance_limit 2        // Teams are unbalanced when one team has this many more players than the other (0disables)

//cvars for round and game times
mp_enableroundwaittime 1        // Enable or disable timers to wait between rounds. 0 is off 1 is on
mp_bonusroundtime 10            // Time after round win until round restarts (in seconds)
mp_restartround 15            // Time the current round will restart (in seconds)
mp_stalemate_timelimit 120        // Timelimit (in seconds) of the stalemate round
mp_timelimit 30                // game time per map in minutes

//cvars for win conditions
mp_maxrounds 0                // Max number of rounds to play before server changes maps
mp_winlimit 0                // Max number of rounds one team can win before a server changes maps

//client specific cvars
mp_forcecamera 0            // force dead clients to first person mode disabling freelook. 0 is off 1 is on
mp_allowspectators 1            // enable or disable spectators on the server. 0 is off 1 is on
mp_friendlyfire 0            // 0 is off and clients can do harm to team mates. 1 is on and players can kill or injure team mates
mp_footsteps 1                // footsteps on or off. 0 is off and 1 is on
sv_cheats 0                // allow cheats to be used by the client. 0 is off 1 is on
sv_timeout 300                // the amount of time in seconds that a client is booted for no input
sv_maxspeed 320                // the maximun speed a client can move at
sv_consistency 1            // Force clients to pass a consistency check for critical files before joining server. 0 is off 1 is on
decalfrequency 10            // the pause in seconds between a decal being sprayed

//cvars for communication
sv_voiceenable 1            // allow players to use a microphone. 0 is off 1 is on
sv_alltalk 0                // toggles whether both teams can hear each others voice comms or not. 0 is off 1 is on. recommend it being off
mp_chattime 20                // players can chat for this amount of time (in seconds) after a game is over

// start download cvars
sv_allowupload 1            // allow custom decals to be uploaded. 0 is off 1 is on
sv_allowdownload 1            // allow files to be downloaded from the server. 0 is off 1 is on
net_maxfilesize 15            // Max download file size. Default is 15
sv_downloadurl ""            //redirect download location

//bandwidth rates/settings
sv_minrate 20000
sv_maxrate 30000
sv_maxupdaterate 100
sv_minupdaterate 66
sv_mincmdrate 66
sv_maxcmdrate 100

//server logging
log on
log 1                    // enable or disable server logging. on is on off is off
sv_logbans 1                // Log server bans in the server logs
sv_logecho 1                // Echo log information to the console. 0 is off 1 is on
sv_logfile 1                // Log server information in the log file. 0 is off 1 is on
sv_log_onefile 0            // log everything in one file

//cvars for general operation
sv_lan 0                // is this an internet or LAN server. 0 is internet 1 is LAN
sv_region 3                // server location. -1 is the world, 0 is USA east coast, 1 is USA west coast, 2 south america, 3 europe, 4 asia, 5 australia, 6 middle east, 7 africa
sv_contact Email        // contact email for sysop
sv_pausable 0                // enables or disables whether the server can be paused. 0 is off 1 is on
sv_pure 1                // forces all clients on the server to use content that matches what is on the server. 0 is off 1 is on
sv_pure_kick_clients 1            // kicks clients that do not have content that matches what is on the server

//execute ban files
exec banned_user.cfg
exec banned_ip.cfg
writeip
writeid

mp_disable_respawn_times 0

ive been searching the internet for a few days and didnt find any answers. can anyone help me out? i really have no ideas left.


All times are GMT -4. The time now is 16:46.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.