Advertisement
Guest User

KOTH config

a guest
May 12th, 2014
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.45 KB | None | 0 0
  1. {
  2.     "name" : "Server",
  3.     "motd" : [
  4.         "Welcome to %(server_name)s",
  5.         "Map: %(map_name)s by %(map_author)s",
  6.         "Game mode: %(game_mode)s",
  7.         "Server powered by Josh's rage"
  8.     ],
  9.     "help" : [
  10.         "Server name: %(server_name)s",
  11.         "Map: %(map_name)s by %(map_author)s",
  12.         "Game mode: %(game_mode)s",
  13.         "/STREAK    Shows how many kills in a row you got without dying",
  14.         "/INTEL     Tells you who's got the enemy intel",
  15.         "/VOTEKICK  Start a vote to temporarily ban a disruptive player",
  16.         "/TIME      Remaining time until forced map reset",
  17.         "/ACCURACY     Check how accurate a player is",
  18.         "/VOTEMAP     Vote on the next map"
  19.     ],
  20.     "tips" : [
  21.         "You are playing %(game_mode)s on %(server_name)s",
  22.         "Type /help for info & commands"
  23.     ],
  24.     "tip_frequency" : 5,
  25.     "rules" : [
  26.         "Cheating isn't welcome. Have fun!"
  27.     ],
  28.     "master" : true,
  29.     "max_players" : 20,
  30.     "max_connections_per_ip" : 3,
  31.     "port" : 32887,
  32.     "network_interface" : "",
  33.  
  34.     "game_mode" : "koth",
  35.     "cap_limit" : 10,
  36.     "default_time_limit" : 60,
  37.     "advance_on_win" : true,
  38.     "maps" : ["lonetower"],
  39.     "random_rotation" : false,
  40.  
  41.     "respawn_time" : 16,
  42.     "respawn_waves" : true,
  43.     "friendly_fire" : "on_grief",
  44.     "grief_friendly_fire_time" : 5,
  45.     "spade_teamkills_on_grief" : false,
  46.     "balanced_teams" : 2,
  47.     "teamswitch_interval" : 0,
  48.  
  49.     "speedhack_detect" : false,
  50.     "votekick_percentage" : 35,
  51.     "votekick_ban_duration" : 30,
  52.     "votekick_public_votes" : true,
  53.     "votemap_public_votes" : true,
  54.     "votemap_extension_time" : 15,
  55.     "votemap_player_driven" : false,
  56.     "votemap_autoschedule" : false,
  57.     "votemap_time" : 120,
  58.     "votemap_percentage" : 80,
  59.  
  60.     "melee_damage" : 80,
  61.     "fall_damage" : true,
  62.     "user_blocks_only" : false,
  63.     "set_god_build" : false,
  64.     "server_prefix" : "",
  65.     "time_announcements" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 30, 60, 120, 180,
  66.                             240, 300, 600, 900, 1200, 1800, 2400, 3000],
  67.     "login_retries" : 3,
  68.     "default_ban_duration" : 1440,
  69.  
  70.     "logfile" : "./logs/log.txt",
  71.     "rotate_daily" : true,
  72.     "debug_log" : false,
  73.     "profile" : false,
  74.  
  75.     "team1" : {
  76.         "name" : "Blue",
  77.         "color" : [0, 0, 255]
  78.     },
  79.     "team2" : {
  80.         "name" : "Green",
  81.         "color" : [0, 255, 0]
  82.     },
  83.    "passwords" : {
  84.         "admin" : ["adminpass1", "adminpass2", "adminpass3"],
  85.         "moderator" : ["modpass"],
  86.         "guard" : ["guardpass"],
  87.         "trusted" : ["trustedpass"]
  88.     },
  89.     "rights" : {
  90.         "moderator" : ["advance", "cancel", "dban", "fog", "from", "goto", "hackinfo", "hban", "invisible", "ip", "kick", "kickafk", "kill", "map", "master", "move", "mute", "resetgame", "switch", "teleport", "teleport_other", "tpsilent", "togglebuild", "togglekill", "togglevotekick", "trust", "undoban", "unmute", "unstick", "where", "whowas"],
  91.         "guard" : ["cancel", "fog", "from", "goto", "hackinfo", "hban", "ip", "kick", "kickafk", "kill", "move", "mute", "switch", "teleport", "teleport_other", "togglebuild", "togglekill", "togglevotekick", "trust", "unmute", "unstick", "where", "whowas"]
  92.     },
  93.     "ssh" : {
  94.         "enabled" : false,
  95.         "port" : 32887,
  96.         "users" : {
  97.             "user" : "ssh_pass_change_this"
  98.         }
  99.     },
  100.     "status_server" : {
  101.         "enabled" : false,
  102.         "port" : 32886
  103.     },
  104.     "ban_publish" : {
  105.         "enabled" : false,
  106.         "port" : 32885
  107.     },
  108.     "ban_subscribe" : {
  109.         "enabled" : true,
  110.         "urls" : [
  111.             ["http://www.blacklist.spadille.net/subscribe.json", []]
  112.         ]
  113.     },
  114.     "irc" : {
  115.         "enabled" : false,
  116.         "nickname" : "PySnip",
  117.         "username" : "PySnip",
  118.         "realname" : "PySnip",
  119.         "server" : "irc.quakenet.org",
  120.         "port" : 6667,
  121.         "channel" : "#MyServerChannel",
  122.         "password" : "",
  123.         "commandprefix" : "!",
  124.         "chatprefix" : "."
  125.     },
  126.     "scripts" : [
  127.         "rollback",
  128.         "protect",
  129.         "aimbot2",
  130.         "map_extensions",
  131.         "disco",
  132.         "votekick",
  133.         "trusted",
  134.         "ratio",
  135.         "passreload",
  136.         "blockinfo",
  137.         "afk",
  138.         "koth"
  139.     ],
  140.  
  141.     "squad_respawn_time" : 32,
  142.     "squad_size" : 4,
  143.     "auto_squad" : false,
  144.     "load_saved_map" : false,
  145.     "rollback_on_game_end" : false,
  146.     "afk_time_limit" : 30
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement