├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── egg-request.yml ├── LICENSE ├── README.md ├── apps ├── Bin │ ├── README.md │ └── egg-b-i-n.json ├── forgejo │ └── egg-forgejo.json ├── hanashi-discord-push-board-listener │ ├── README.md │ └── egg-hanashi-dev--discord-push-board-listener.json ├── opengist │ └── config.yml ├── ts3-manager │ └── README.md ├── uptime-kuma │ └── egg-uptime-kuma.json └── wikijs │ └── README.md ├── bots ├── drako-bot │ └── egg-drako-bot.json └── lynx-multi-bot │ └── egg-lynx-multi--bot.json ├── games └── quake-live-minqlx │ └── egg-quake-live-with-minqlx.json └── steamcmd ├── assetto-corsa-assettoserver └── egg-assetto-corsa--assetto-server-version.json ├── assetto-corsa-competizione └── egg-assetto-corsa-competizione.json ├── astro-colony ├── ServerSettings.ini ├── egg-astro-colony-linux.json └── egg-astro-colony-wine.json ├── beast-of-bermuda ├── Game.ini └── egg-beasts-of-bermuda.json ├── conan-exile-mod-support └── README.md ├── craftopia └── egg-craftopia.json ├── day-of-dragos ├── Game.ini ├── Game.ini_old └── README.md ├── dayz └── serverDZ.cfg ├── eco └── README.md ├── enshrouded ├── config │ └── enshrouded_server.json ├── egg-enshrouded-proton.json └── egg-enshrouded-wine.json ├── foundry └── egg-foundry.json ├── humanitz └── egg-humanit-z.json ├── interstellar-rift └── README.md ├── kerbal-space-program-lmp-mod └── README.md ├── lastoasis └── egg-last-oasis.json ├── longvinter ├── Game.ini └── README.md ├── memories-of-mars ├── DedicatedServerConfig.cfg └── egg-memories-of-mars.json ├── miscreated ├── LICENSE.md ├── README.md └── egg-miscreated.json ├── mordhau-linux └── README.md ├── myth-of-empire ├── README.md └── ServerParamConfig.ini ├── natural-selection2 └── egg-natural-selection2.json ├── night-of-the-dead ├── LICENSE.md ├── README.md └── egg-night-of-the-dead.json ├── operation-harsh-doorstop └── egg-operation--harsh-doorstop.json ├── outpost-zero └── egg-outpost-zero.json ├── portal-knights └── egg-portal-knights.json ├── reign-of-kings ├── README.md └── egg-reign-of-kings.json ├── rising-world └── README.md ├── risk-of-rain2-mod-support └── README.md ├── solace-crafting └── README.md ├── sons-of-the-forrest └── egg-sons-of-the-forest.json ├── space-engineers-torch └── egg-space-engineers--torch-server.json ├── terratech-world └── egg-terra-tech-worlds.json ├── the-front ├── DefaultConfig_.json └── egg-the-front.json ├── the-warhorn └── egg-the-warhorn.json ├── valheim-bepinex ├── README.md └── egg-valheim-bep-i-nex.json ├── valheim-plus ├── README.md └── egg-valheim-plus-mod.json ├── wreckfest └── README.md └── wurm-unlimited └── egg-wurm-unlimited.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/egg-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/.github/ISSUE_TEMPLATE/egg-request.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/README.md -------------------------------------------------------------------------------- /apps/Bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/Bin/README.md -------------------------------------------------------------------------------- /apps/Bin/egg-b-i-n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/Bin/egg-b-i-n.json -------------------------------------------------------------------------------- /apps/forgejo/egg-forgejo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/forgejo/egg-forgejo.json -------------------------------------------------------------------------------- /apps/hanashi-discord-push-board-listener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/hanashi-discord-push-board-listener/README.md -------------------------------------------------------------------------------- /apps/hanashi-discord-push-board-listener/egg-hanashi-dev--discord-push-board-listener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/hanashi-discord-push-board-listener/egg-hanashi-dev--discord-push-board-listener.json -------------------------------------------------------------------------------- /apps/opengist/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/opengist/config.yml -------------------------------------------------------------------------------- /apps/ts3-manager/README.md: -------------------------------------------------------------------------------- 1 | soon... -------------------------------------------------------------------------------- /apps/uptime-kuma/egg-uptime-kuma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/uptime-kuma/egg-uptime-kuma.json -------------------------------------------------------------------------------- /apps/wikijs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/apps/wikijs/README.md -------------------------------------------------------------------------------- /bots/drako-bot/egg-drako-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/bots/drako-bot/egg-drako-bot.json -------------------------------------------------------------------------------- /bots/lynx-multi-bot/egg-lynx-multi--bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/bots/lynx-multi-bot/egg-lynx-multi--bot.json -------------------------------------------------------------------------------- /games/quake-live-minqlx/egg-quake-live-with-minqlx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/games/quake-live-minqlx/egg-quake-live-with-minqlx.json -------------------------------------------------------------------------------- /steamcmd/assetto-corsa-assettoserver/egg-assetto-corsa--assetto-server-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/assetto-corsa-assettoserver/egg-assetto-corsa--assetto-server-version.json -------------------------------------------------------------------------------- /steamcmd/assetto-corsa-competizione/egg-assetto-corsa-competizione.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/assetto-corsa-competizione/egg-assetto-corsa-competizione.json -------------------------------------------------------------------------------- /steamcmd/astro-colony/ServerSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/astro-colony/ServerSettings.ini -------------------------------------------------------------------------------- /steamcmd/astro-colony/egg-astro-colony-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/astro-colony/egg-astro-colony-linux.json -------------------------------------------------------------------------------- /steamcmd/astro-colony/egg-astro-colony-wine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/astro-colony/egg-astro-colony-wine.json -------------------------------------------------------------------------------- /steamcmd/beast-of-bermuda/Game.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/beast-of-bermuda/Game.ini -------------------------------------------------------------------------------- /steamcmd/beast-of-bermuda/egg-beasts-of-bermuda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/beast-of-bermuda/egg-beasts-of-bermuda.json -------------------------------------------------------------------------------- /steamcmd/conan-exile-mod-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/conan-exile-mod-support/README.md -------------------------------------------------------------------------------- /steamcmd/craftopia/egg-craftopia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/craftopia/egg-craftopia.json -------------------------------------------------------------------------------- /steamcmd/day-of-dragos/Game.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/day-of-dragos/Game.ini -------------------------------------------------------------------------------- /steamcmd/day-of-dragos/Game.ini_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/day-of-dragos/Game.ini_old -------------------------------------------------------------------------------- /steamcmd/day-of-dragos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/day-of-dragos/README.md -------------------------------------------------------------------------------- /steamcmd/dayz/serverDZ.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/dayz/serverDZ.cfg -------------------------------------------------------------------------------- /steamcmd/eco/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/enshrouded/config/enshrouded_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/enshrouded/config/enshrouded_server.json -------------------------------------------------------------------------------- /steamcmd/enshrouded/egg-enshrouded-proton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/enshrouded/egg-enshrouded-proton.json -------------------------------------------------------------------------------- /steamcmd/enshrouded/egg-enshrouded-wine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/enshrouded/egg-enshrouded-wine.json -------------------------------------------------------------------------------- /steamcmd/foundry/egg-foundry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/foundry/egg-foundry.json -------------------------------------------------------------------------------- /steamcmd/humanitz/egg-humanit-z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/humanitz/egg-humanit-z.json -------------------------------------------------------------------------------- /steamcmd/interstellar-rift/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/kerbal-space-program-lmp-mod/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/lastoasis/egg-last-oasis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/lastoasis/egg-last-oasis.json -------------------------------------------------------------------------------- /steamcmd/longvinter/Game.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/longvinter/Game.ini -------------------------------------------------------------------------------- /steamcmd/longvinter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/longvinter/README.md -------------------------------------------------------------------------------- /steamcmd/memories-of-mars/DedicatedServerConfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/memories-of-mars/DedicatedServerConfig.cfg -------------------------------------------------------------------------------- /steamcmd/memories-of-mars/egg-memories-of-mars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/memories-of-mars/egg-memories-of-mars.json -------------------------------------------------------------------------------- /steamcmd/miscreated/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/miscreated/LICENSE.md -------------------------------------------------------------------------------- /steamcmd/miscreated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/miscreated/README.md -------------------------------------------------------------------------------- /steamcmd/miscreated/egg-miscreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/miscreated/egg-miscreated.json -------------------------------------------------------------------------------- /steamcmd/mordhau-linux/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/myth-of-empire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/myth-of-empire/README.md -------------------------------------------------------------------------------- /steamcmd/myth-of-empire/ServerParamConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/myth-of-empire/ServerParamConfig.ini -------------------------------------------------------------------------------- /steamcmd/natural-selection2/egg-natural-selection2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/natural-selection2/egg-natural-selection2.json -------------------------------------------------------------------------------- /steamcmd/night-of-the-dead/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/night-of-the-dead/LICENSE.md -------------------------------------------------------------------------------- /steamcmd/night-of-the-dead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/night-of-the-dead/README.md -------------------------------------------------------------------------------- /steamcmd/night-of-the-dead/egg-night-of-the-dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/night-of-the-dead/egg-night-of-the-dead.json -------------------------------------------------------------------------------- /steamcmd/operation-harsh-doorstop/egg-operation--harsh-doorstop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/operation-harsh-doorstop/egg-operation--harsh-doorstop.json -------------------------------------------------------------------------------- /steamcmd/outpost-zero/egg-outpost-zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/outpost-zero/egg-outpost-zero.json -------------------------------------------------------------------------------- /steamcmd/portal-knights/egg-portal-knights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/portal-knights/egg-portal-knights.json -------------------------------------------------------------------------------- /steamcmd/reign-of-kings/README.md: -------------------------------------------------------------------------------- 1 | ## Reign of Kings -------------------------------------------------------------------------------- /steamcmd/reign-of-kings/egg-reign-of-kings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/reign-of-kings/egg-reign-of-kings.json -------------------------------------------------------------------------------- /steamcmd/rising-world/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/risk-of-rain2-mod-support/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/solace-crafting/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/sons-of-the-forrest/egg-sons-of-the-forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/sons-of-the-forrest/egg-sons-of-the-forest.json -------------------------------------------------------------------------------- /steamcmd/space-engineers-torch/egg-space-engineers--torch-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/space-engineers-torch/egg-space-engineers--torch-server.json -------------------------------------------------------------------------------- /steamcmd/terratech-world/egg-terra-tech-worlds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/terratech-world/egg-terra-tech-worlds.json -------------------------------------------------------------------------------- /steamcmd/the-front/DefaultConfig_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/the-front/DefaultConfig_.json -------------------------------------------------------------------------------- /steamcmd/the-front/egg-the-front.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/the-front/egg-the-front.json -------------------------------------------------------------------------------- /steamcmd/the-warhorn/egg-the-warhorn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/the-warhorn/egg-the-warhorn.json -------------------------------------------------------------------------------- /steamcmd/valheim-bepinex/README.md: -------------------------------------------------------------------------------- 1 | comming soon... -------------------------------------------------------------------------------- /steamcmd/valheim-bepinex/egg-valheim-bep-i-nex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/valheim-bepinex/egg-valheim-bep-i-nex.json -------------------------------------------------------------------------------- /steamcmd/valheim-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/valheim-plus/README.md -------------------------------------------------------------------------------- /steamcmd/valheim-plus/egg-valheim-plus-mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/valheim-plus/egg-valheim-plus-mod.json -------------------------------------------------------------------------------- /steamcmd/wreckfest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/wreckfest/README.md -------------------------------------------------------------------------------- /steamcmd/wurm-unlimited/egg-wurm-unlimited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gOOvER/own-pterodactyl-eggs/HEAD/steamcmd/wurm-unlimited/egg-wurm-unlimited.json --------------------------------------------------------------------------------