From 89b81718ee0ca3ff9c182ff9a28b56a20985a418 Mon Sep 17 00:00:00 2001 From: parkervcp Date: Wed, 2 Sep 2020 18:03:26 -0400 Subject: [PATCH 1/2] add teeworlds base files --- teeworlds/teeworlds/README.md | 20 ++++++++++++++++++++ teeworlds/teeworlds/autoexec.cfg | 12 ++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 teeworlds/teeworlds/README.md create mode 100644 teeworlds/teeworlds/autoexec.cfg diff --git a/teeworlds/teeworlds/README.md b/teeworlds/teeworlds/README.md new file mode 100644 index 00000000..639036e4 --- /dev/null +++ b/teeworlds/teeworlds/README.md @@ -0,0 +1,20 @@ +# Example Server Name +### From their [Github](https://github.com/parkervcp/eggs) +A link to the site that you download game files from. +The description of the server usually provided by the game/server maker. + +### Install notes +Due to rate limiting the console on the panel cannot keep up with the game console and the build will complete before the panel console may show it. Reloading the console will load it to the latest part of the log. + +### Minimum RAM warning +Minimum required memory to run the server. + + +### Server Ports +Ports required to run the server in a table format. + +| Port | default | +|---------|---------| +| Game | 8308 | + +#### Mods/Plugins may require ports to be added to the server. diff --git a/teeworlds/teeworlds/autoexec.cfg b/teeworlds/teeworlds/autoexec.cfg new file mode 100644 index 00000000..c86e01c5 --- /dev/null +++ b/teeworlds/teeworlds/autoexec.cfg @@ -0,0 +1,12 @@ +## These settings are set on start. +## changing them will be overwritten on start +bindaddr 0.0.0.0 +sv_port 8308 +sv_name A Pterodactyl Hosted Teeworlds Server +sv_motd A Pterodactyl Hosted Teeworlds Server + +## These can be changed manually +sv_map dm1 +sv_scorelimit 20 +sv_timelimit 10 +sv_gametype dm \ No newline at end of file From bfd2b00e4deb48c0f663a3a03fccd727d0db6aa9 Mon Sep 17 00:00:00 2001 From: parkervcp Date: Wed, 2 Sep 2020 18:04:47 -0400 Subject: [PATCH 2/2] add storage cfg file --- teeworlds/teeworlds/storage.cfg | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 teeworlds/teeworlds/storage.cfg diff --git a/teeworlds/teeworlds/storage.cfg b/teeworlds/teeworlds/storage.cfg new file mode 100644 index 00000000..7ddbdd10 --- /dev/null +++ b/teeworlds/teeworlds/storage.cfg @@ -0,0 +1,37 @@ +#### +# This specifies where and in which order Teeworlds looks +# for its data (sounds, skins, ...). The search goes top +# down which means the first path has the highest priority. +# Furthermore the top entry also defines the save path where +# all data (settings.cfg, screenshots, ...) are stored. +# There are 3 special paths available: +# $USERDIR +# - ~/.appname on UNIX based systems +# - ~/Library/Applications Support/appname on Mac OS X +# - %APPDATA%/Appname on Windows based systems +# $DATADIR +# - the 'data' directory which is part of an official +# release +# $CURRENTDIR +# - current working directory +# $APPDIR +# - usable path provided by argv[0] +# +# +# The default file has the following entries: +# add_path $USERDIR +# add_path $DATADIR +# add_path $CURRENTDIR +# +# A customised one could look like this: +# add_path user +# add_path mods/mymod +#### + +## +# Touch it and your server may not start. +## + +add_path $DATADIR +add_path $CURRENTDIR +add_path $APPDIR \ No newline at end of file