Posts: 3
Threads: 1
Joined: May 2009
Reputation:
0
Hi guys that anybody know why when is nobody on server and when map limit is end server don't change a map? when sombody get conected you can see map limit end server will chenge level on round end and when round end the level get chenge that is good.
But is any possible to do that server will be changing level even if is nobody on server?
how to do that what command? should i use?
Thx for aby help
Posts: 7,778
Threads: 176
Joined: May 2008
Reputation:
83
05-16-2009, 08:17 PM
(This post was last modified: 05-16-2009, 08:18 PM by realchamp.)
Hmm I'm not sure 'bout that.
But I know it will change map immediately after round_draw
After a player connects
Posts: 779
Threads: 5
Joined: Apr 2008
Reputation:
9
Take a look at the AutoMap module (Mani Admin Plugin):
// *****************************************************************************
// Module : AutoMap Module
//
// Desc : This module is designed to allow a set of popular maps to be
// autoloaded if your server has a minimum number of players on it.
// A typical setup would be to switch to de_dust2 for instance if there
// are no players on the server at the time.
// *****************************************************************************
// 0 = Disable, 1 = Enable
mani_automap 1
// This cvar sets up the list of maps that you would like to switch to, you
// can setup more than one map by seperating each map with the : symbol e.g
// mani_automap_map_list "de_dust2:de_aztec:cs_office"
mani_automap_map_list "de_dust2"
// The number of players or less that will trigger the automap change
mani_automap_player_threshold 1
// Include bots in the threshold calculation.
// 0 = Exclude bots from the calculation
// 1 = Include bots in the calculation
mani_automap_include_bots 0
// Time in seconds after the player threshold has been reached that an automap
// change will take place. Default is 5 minutes (300 seconds)
mani_automap_timer 60
// If an automap event happens, you can set the next map once that map has
// loaded to be the same as the current map.
// 0 = disabled
// 1 = enabled
mani_automap_set_nextmap 1
Posts: 3,906
Threads: 404
Joined: Oct 2007
Reputation:
21
I know BM has a feature where it can sent a command if the server is empty. I'm guessing there is a plugin for SM as well.
~ Mooga ...w00t? -
SRCDS.com on Twitter
Please do not PM me for server related help
fqdn Wrote:if you've seen the any of the matrix movies, a game server is not all that different. it runs a version of the game that handles the entire world for each client connected. that's the 2 sentence explanation.