diff --git a/Teeworlds/README.md b/Teeworlds/README.md new file mode 100644 index 0000000..f05b164 --- /dev/null +++ b/Teeworlds/README.md @@ -0,0 +1,13 @@ +**Teeworlds** + +This directory contains: + + - server.cfg - standardised config file + - cfg.cfg + - dm.cfg + - duel.cfg + - tdm.cfg + - full_cvar_list.txt - full list of available command variables + + Useful Links + https://www.teeworlds.com/?page=docs&wiki=server_setup \ No newline at end of file diff --git a/Teeworlds/ctf.cfg b/Teeworlds/ctf.cfg new file mode 100644 index 0000000..a92b1a4 --- /dev/null +++ b/Teeworlds/ctf.cfg @@ -0,0 +1,7 @@ +sv_gametype ctf +sv_powerups 1 +sv_scorelimit 500 +sv_spectator_slots 0 +sv_timelimit 0 +sv_tournament_mode 0 +sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/cvars/ServerCommands.txt b/Teeworlds/cvars/ServerCommands.txt new file mode 100644 index 0000000..870764b --- /dev/null +++ b/Teeworlds/cvars/ServerCommands.txt @@ -0,0 +1,38 @@ +// **************************************************************************** +// * +// TeeWorlds - Server Commands * +// URL: https://www.teeworlds.com/?page=docs&wiki=server_commands * +// Version 281015 * +// * +// **************************************************************************** + +To kick players from the server and to do other similar things, you have to use the server commands. This doc will show you these. If you want to know how to set up a server, read the Server Setup doc. For server settings, see the Server Settings doc. + +Commands + +Command Syntax Description +echo echo text Print a text in console +exec exec file Execute the commands in the file +kick kick id Kick the user with the specified id directly +ban ban ip/id minutes Ban the ip from the server for the given time +unban unban ip Unban the ip +bans bans Show a list of bans +status status List the player's id, ip, name and score +shutdown shutdown Shut the server down +reload reload Reload the map +record record filename Start recording +stoprecord stoprecord Stop recording +tune tune variable value Tune the variable. See the Server Tuning doc +tune_reset tune_reset Reset the tuning to default +tune_dump tune_dump Make a dump that shows what tuning is used +change_map change_map mapname Change to the specified map +restart restart time Restart the round (time is optional) +broadcast broadcast text Broadcast the text +say say text Send a chat message +set_team setteam clientid team_id Move a player to a specific team (0 = red, 1 = blue, -1 = spectators) +set_team_all setteamall team_id Move all players to a specific team +add_vote add_vote description command Add a vote option for the provided command with the provided description ( description is optional) +remove_vote remove_vote command remove a vote option +force_vote forcevote type option/playerid reason Force a certain vote to be executed immediately (type can be "option", "kick" or "spectate") +clear_votes clear votes remove all vote options +vote vote yes/no Force the end result of the vote to yes/no \ No newline at end of file diff --git a/Teeworlds/cvars/ServerSettings.txt b/Teeworlds/cvars/ServerSettings.txt new file mode 100644 index 0000000..9028540 --- /dev/null +++ b/Teeworlds/cvars/ServerSettings.txt @@ -0,0 +1,66 @@ +// **************************************************************************** +// * +// TeeWorlds - Server Settings * +// URL: https://www.teeworlds.com/?page=docs&wiki=server_settings * +// Version 281015 * +// * +// **************************************************************************** + +There are lots of server settings to change all from the score limit, to the speed of the shotgun. This doc will show you what those are, not how to set up a server. Read the Server Setup doc to learn that. For server commands, see the Server Commands doc. + +Syntax: setting value + +Physics settings + +To change the game's physics, read the Server Tuning doc. + +Engine settings + +* means it can't be changed while running the server. + +Settings Description Default +sv_name Name of the server unnamed server +bindaddr * Address to bind +sv_port * Port the server will listen on 8303 +sv_external_port * Port to report to the master servers (e.g. in case of a firewall rename) 0 +sv_max_clients * Number of clients that can be connected to the server at the same time 12 +sv_max_clients_per_ip Number of clients with the same ip that can be connected to the server at the same time 12 +sv_high_bandwidth * Use high bandwidth mode, for LAN servers only 0 +sv_register Register on the master servers 1 +sv_map Map to use dm1 +sv_rcon_password Password to access the remote console (if not set, rcon is disabled) +password Password to connect to the server +logfile Path to a logfile +console_output_level Adjust the amount of messages in the console 0 +sv_rcon_max_tries Maximum number of tries for remote console authetication 3 +sv_rcon_bantime Time (in minutes) a client gets banned if remote console authentication fails (0 makes it just use kick) 5 +sv_auto_demo_record Automatically record demos 0 +sv_auto_demo_max Maximum number of automatically recorded demos (0 = no limit) 10 +ec_bindaddr Address to bind the external console to. Anything but 'localhost' is dangerous" localhost +ec_port Port to use for the external console +ec_password External console password" +ec_bantime The time a client gets banned if econ authentication fails. 0 just closes the connection 0 +ec_auth_timeout Time in seconds before the the econ authentication times out 30 +ec_output_level Adjusts the amount of information in the external console 1 +Game settings + +Settings Description Default +sv_warmup Warmup time between rounds 0 +sv_scorelimit Score limit of the game (0 disables it) 20 +sv_timelimit Time limit of the game (in case of equal points there will be sudden death) 0 +sv_gametype Gametype (dm/ctf/tdm) (This setting needs the map to be reloaded in order to take effect) dm +sv_maprotation The maps to be rotated +sv_rounds_per_map Number of rounds before changing to next map in rotation 1 +sv_motd Message of the day, shown in server info and when joining a server +sv_spectator_slots Number of clients that can only be spectators 0 +sv_teambalance_time Time in minutes after the teams are uneven, to auto balance 1 +sv_spamprotection Enable spam filter 1 +sv_tournament_mode Players will automatically join as spectator 0 +sv_respawn_delay_tdm Time in seconds needed to respawn in the tdm gametype 3 +sv_teamdamage Enable friendly fire 0 +sv_powerups Enable powerups (katana) 1 +sv_vote_kick Enable kick voting 1 +sv_vote_kick_bantime Time in minutes to ban a player if kicked by voting (0 equals only kick) 5 +sv_vote_kick_min Minimum number of players required to start a kick vote 0 +sv_inactivekick_time Time in minutes after an inactive player will be taken care of 3 +sv_inactivekick How to deal with inactive players (0 = move to spectator, 1 = move to free spectator slot/kick, 2 = kick) 1 \ No newline at end of file diff --git a/Teeworlds/cvars/TuningReference.txt b/Teeworlds/cvars/TuningReference.txt new file mode 100644 index 0000000..a8eceb2 --- /dev/null +++ b/Teeworlds/cvars/TuningReference.txt @@ -0,0 +1,51 @@ +// **************************************************************************** +// * +// TeeWorlds - Tuning reference * +// URL: https://www.teeworlds.com/?page=docs&wiki=server_settings * +// Version 281015 * +// * +// **************************************************************************** + +Tuning is a way to edit physics and weapon settings so that the server is more customizable. Tuning can only be used on non-pure gametypes. Set the gametype to mod using sv_gametype mod and execute the following in rcon or config to tune a variable: + +tune gravity 1.0 where you replace gravity 1.0 with the variable and value you want. + +Physics tuning + +Tuning Description Default Unit +ground_control_speed Max speed the tee can get on ground 10.0 +ground_control_accel Acceleration speed on the ground 2.0 +ground_friction Friction on the ground 0.5 +ground_jump_impulse Impulse when jumping on ground 13.2 +air_jump_impulse Impulse when jumping in air 12.0 +air_control_speed Max speed the tee can get in the air 5.0 +air_control_accel Acceleration speed in air 1.5 +air_friction Friction in the air 0.95 +hook_length Length of the hook 380.0 pixels +hook_fire_speed How fast the hook is fired 80.0 +hook_drag_accel Acceleration when hook is stuck 3.0 +hook_drag_speed Drag speed of the hook 15.0 +gravity Gravity of the teeworld 0.5 +velramp_start Velocity ramp start 550.0 +velramp_range Velocity ramp range 2000.0 +velramp_curvature Velocity ramp curvature 1.4 +player_collision Enable player collisions 1 +player_hooking Enable player vs player hooking 1 +Weapon tuning + +Tuning Description Default Unit +gun_curvature Gun curvature 1.25 +gun_speed Gun speed 2200.0 pixels / sec +gun_lifetime Gun lifetime 2.0 sec +shotgun_curvature Shotgun curvature 1.25 +shotgun_speed Shotgun speed 2750.0 pixels / sec +shotgun_speeddiff (UNUSED) Speed difference between shotgun bullets 0.8 +shotgun_lifetime Shotgun lifetime 0.20 sec +grenade_curvature Grenade curvature 7.0 +grenade_speed Grenade speed 1000.0 pixels / sec +grenade_lifetime Grenade lifetime 2.0 sec +laser_reach How long the laser can reach 800.0 pixels +laser_bounce_delay When bouncing, stop the laser this long 150.0 ms +laser_bounce_num How many times the laser can bounce 1.0 +laser_bounce_cost Remove this much from reach when laser is bouncing 0.0 pixels +laser_damage Laser damage 5.0 damage diff --git a/Teeworlds/dm.cfg b/Teeworlds/dm.cfg new file mode 100644 index 0000000..426386d --- /dev/null +++ b/Teeworlds/dm.cfg @@ -0,0 +1,7 @@ +sv_gametype dm +sv_powerups 1 +sv_scorelimit 20 +sv_spectator_slots 0 +sv_timelimit 0 +sv_tournament_mode 0 +sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/duel.cfg b/Teeworlds/duel.cfg new file mode 100644 index 0000000..b70e632 --- /dev/null +++ b/Teeworlds/duel.cfg @@ -0,0 +1,7 @@ +sv_gametype tdm +sv_powerups 0 +sv_scorelimit 10 +sv_spectator_slots 10 +sv_timelimit 5 +sv_tournament_mode 1 +sv_map_reload 1 \ No newline at end of file diff --git a/Teeworlds/server.cfg b/Teeworlds/server.cfg new file mode 100644 index 0000000..efefdf1 --- /dev/null +++ b/Teeworlds/server.cfg @@ -0,0 +1,26 @@ +sv_name "" +sv_rcon_password "" +password "" +sv_max_clients 12 +sv_port 8303 +sv_register 1 +sv_spamprotection 0 +sv_vote_map 1 +sv_warmup 10 +logfile "" +addvote restart 10 +addvote exec dm.cfg +addvote exec ctf.cfg +addvote exec duel.cfg +addvote exec tdm.cfg +addvote "change_map ctf1" +addvote "change_map ctf2" +addvote "change_map ctf3" +addvote "change_map ctf4" +addvote "change_map ctf5" +addvote "change_map dm1" +addvote "change_map dm2" +addvote "change_map dm6" +addvote "change_map dm7" +addvote "change_map dm8" +addvote "change_map dm9" \ No newline at end of file diff --git a/Teeworlds/tdm.cfg b/Teeworlds/tdm.cfg new file mode 100644 index 0000000..c2ab043 --- /dev/null +++ b/Teeworlds/tdm.cfg @@ -0,0 +1,14 @@ +// **************************************************************************** +// * +// TeeWorlds - tdm.cfg * +// Version 281015 * +// * +// **************************************************************************** + +sv_gametype tdm +sv_powerups 1 +sv_scorelimit 50 +sv_spectator_slots 0 +sv_timelimit 0 +sv_tournament_mode 0 +sv_map_reload 1 \ No newline at end of file