From b745006ce49f00bc8e445714b3e4ad16ad034ba4 Mon Sep 17 00:00:00 2001 From: Aske Date: Wed, 16 Dec 2020 20:12:42 +0100 Subject: [PATCH 1/2] Add of Among us - CrewLink server --- among_us/crewlink_server/README.md | 7 ++ .../crewlink_server/egg-crewlink-server.json | 82 +++++++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 among_us/crewlink_server/README.md create mode 100644 among_us/crewlink_server/egg-crewlink-server.json diff --git a/among_us/crewlink_server/README.md b/among_us/crewlink_server/README.md new file mode 100644 index 00000000..e2ab1a18 --- /dev/null +++ b/among_us/crewlink_server/README.md @@ -0,0 +1,7 @@ +# Among Us - CrewLink server +### From their [Github](https://github.com/ottomated/CrewLink) + +This is the relay server for CrewLink, an Among Us proximity voice chat program. + +### Server Port +Default port is 9736 but you can change to any port or domain/ip in the egg \ No newline at end of file diff --git a/among_us/crewlink_server/egg-crewlink-server.json b/among_us/crewlink_server/egg-crewlink-server.json new file mode 100644 index 00000000..b5b546bd --- /dev/null +++ b/among_us/crewlink_server/egg-crewlink-server.json @@ -0,0 +1,82 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v1" + }, + "exported_at": "2020-12-16T20:11:55+01:00", + "name": "Crewlink server", + "author": "panel@oxtroit.com", + "description": null, + "features": null, + "image": "quay.io\/parkervcp\/pterodactyl-images:debian_nodejs-12", + "startup": "yarn start", + "config": { + "files": "{}", + "startup": "{\r\n \"done\": \" CrewLink Server started\"\r\n}", + "logs": "{}", + "stop": "^c" + }, + "scripts": { + "installation": { + "script": "#!\/bin\/bash\r\n# Server Files: \/mnt\/server\r\napt update\r\napt install -y git\r\n\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\n\r\nINSTALL_REPO=\"https:\/\/github.com\/ottomated\/crewlink-server.git\"\r\necho -e Install repo set to ${INSTALL_REPO}\r\necho -e \"\/mnt\/server is empty.\\ncloning files from repo\"\r\necho -e \"running 'git clone --single-branch --branch ${BRANCH} ${INSTALL_REPO} .'\"\r\ngit clone --single-branch --branch ${BRANCH} ${INSTALL_REPO} .\r\n\r\nif [ -f \/mnt\/server\/package.json ]; then\r\n \/usr\/local\/bin\/yarn install\r\nfi\r\n\r\necho -e \"install complete\"\r\nexit 0", + "container": "node:12-buster-slim", + "entrypoint": "bash" + } + }, + "variables": [ + { + "name": "Github branch", + "description": "Set this to 'devel' if you wanna run a develop server.", + "env_variable": "BRANCH", + "default_value": "master", + "user_viewable": true, + "user_editable": true, + "rules": "required|string|max:20" + }, + { + "name": "Domain", + "description": "Domain of your server or ip of your server", + "env_variable": "ADDRESS", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string|max:50" + }, + { + "name": "Server name", + "description": "Specifiy the name of your Crewlink server", + "env_variable": "NAME", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string|max:75" + }, + { + "name": "Use HTTPS", + "description": "Enables https. You must place privkey.pem and fullchain.pem in your CWD.", + "env_variable": "HTTPS", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string|max:20" + }, + { + "name": "Path to SSL", + "description": "Alternate path to SSL certificates.", + "env_variable": "SSLPATH", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string|max:250" + }, + { + "name": "Port", + "description": "Choose the port your server should run on", + "env_variable": "PORT", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "required|string|max:20" + } + ] +} \ No newline at end of file From 4cad76578901deae8205fc70f21c474ce840ac91 Mon Sep 17 00:00:00 2001 From: Aske Date: Wed, 16 Dec 2020 20:18:23 +0100 Subject: [PATCH 2/2] Add right readme and add to big readme --- README.md | 1 + among_us/crewlink_server/README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ae6120b..43793aa0 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ If you are reading this it looks like you are looking to add an egg to your serv ## Game Eggs [Among Us Impostor Server](/among_us/impostor_server) +[Among Us - CrewLink Server](/among_us/crewlink_server) [Cryofall](/cryofall) diff --git a/among_us/crewlink_server/README.md b/among_us/crewlink_server/README.md index e2ab1a18..14b45b1b 100644 --- a/among_us/crewlink_server/README.md +++ b/among_us/crewlink_server/README.md @@ -1,7 +1,7 @@ # Among Us - CrewLink server ### From their [Github](https://github.com/ottomated/CrewLink) -This is the relay server for CrewLink, an Among Us proximity voice chat program. +This project implements proximity voice chat in Among Us. Everyone in an Among Us lobby with this program running will be able to communicate over voice in-game, with no third-party programs required. Spatial audio ensures that you can only hear people close to you. ### Server Port Default port is 9736 but you can change to any port or domain/ip in the egg \ No newline at end of file