achja, hier ist noch mein server.conf script

###############################################################################
# Cube 2: Sauerbraten Game Server Configuration                               
#  
# Visit http:#hopmod.e-topic.info/ for a full list of configuration
# variables.
# 
###############################################################################

# A server name for players to identify your server.
#servername "Links|Server"

# Default connection information:
#   Game Server socket binds to UDP 79.221.181.47:20000
#   Game Server Info socket binds to UDP 79.221.181.47:<serverport+1> (20001)

# Server's IP address
#serverip "79.221.181.47"

# Game server port.
serverport 20000

# Register your server with the master server every 1 hour to appear on the public server list.
publicserver 1

# Set the maximum number of client connections allowed
maxclients 24

# Number of reserved connection slots for admin players
# Admin use: /connect <serverip> [<serverport>] <admin_password>
# Connecting admin players will have invisible admin status.
reserved_slots 5
reserved_slots_password "ger11913" # Allow reserved slot usage without giving them admin privilege

# Message of the day. This message is sent on player connection.
motd "Willkommen auf meinem Server <Link:DWVC2:> Viel Spass! XDD"

# The admin password. Same password used by all admin players to gain admin privilege, by typing /setmaster <admin_password>
admin_password "ger11913"

# Uncomment and set a server password to lock the game server and require connecting players to send the server password to get access.
# Note: The Cube 2 client doesn't provide a password dialog GUI: players must use the command line to connect to a server with a given password.
#server_password ""

###############################################################################
# Map rotation
###############################################################################

# Possible values for map_rotation_type include: standard, random, size
map_rotation_type "standard"

# The map rotation lists
#exec "conf/new_maps.conf"
exec conf/maps.conf

# The server's preferred game mode
default_gamemode "insta ctf"

# Change back to the default game mode when the server goes empty
default_game_on_empty 1

# For the next map, choose an appropiate sized map from a map rotation, depending on the number of players connected.
# The small map set is used when the player count less than or equal to <small_gamesize>, else the big map set is used.
small_single_game 5
small_team_game 5

###############################################################################
# Map vote restrictions
###############################################################################

allow_mapvote 1

allowed_gamemodes [
    "instagib"
    "instagib team"
    "regen capture"
    "insta ctf"
    "insta protect"
    "insta hold"
    "efficiency ctf"
]

# Block votes for unknown maps (known maps are released maps found in the official game distribution)
mapvote_disallow_unknown_map 1

# Block votes for maps not in the game-mode's map rotation
mapvote_disallow_excluded_map 0

###############################################################################
# Master restrictions
###############################################################################

allow_mastermode_veto 1
allow_mastermode_locked 1
allow_mastermode_private 0

###############################################################################
# Web admin configuration
###############################################################################

# The web admin control panel url is <a href="http://localhost:20000/admin" target="_blank">http://localhost:20000/admin</a>
# There is no login required when access is through localhost

# To create a new web admin user run this shell command: source bin/env.sh; bin/utils/luapp bin/utils/web_admin.lua <username> <password>
# Copy and paste the output here into the web_admins list:
web_admins [

]

###############################################################################
# Player Commands configuration
###############################################################################

enable_commands [
    specall
    unspecall
    maxclients
    uptime
    reload
    changetime
    players
    names
    pause
    resume
    motd
    givemaster
    mute
    unmute
    ban
    persist
    versus
    warning
    msg
    stats
    nextmap
    eval
    group
    specmsg
    slay
    recorddemo
    giveadmin
    forcespec
    unforcespec
    setnextmap
    traffic
    banlist
]

disable_commands [
    admin
    cheater
    whoisonline
    master
    invmaster
    invadmin
    noties
    suddendeath
    sd
    nosd
    votekick
]

###############################################################################
# Modules
###############################################################################

module "stats"                                 # Record game statistics to a database (it is needed for the stats and names commands)

module "display/best_stats"                    # Display best player stats at intermission
#module "display/ownage"                        # Display player achievement messages

module "detect/camping"                        # Name and shame players who are found to be camping

#module "balance/teams/by_adding_bots"          # Use bots to balance teams

#module "balance/server_size/by_spec_count
...zur Antwort