├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── egg-request.yml │ └── install-bug-report.yml └── pull_request_template.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bots ├── discord │ ├── README.md │ ├── aoede │ │ ├── README.md │ │ └── egg-aoede.json │ ├── atlbot │ │ ├── README.md │ │ └── egg-a-t-l-bot.json │ ├── bastion │ │ ├── README.md │ │ └── egg-bastion.json │ ├── corpbot │ │ ├── README.md │ │ ├── egg-corp-bot.json │ │ └── settings_dict.json │ ├── dynamica │ │ ├── README.md │ │ └── egg-dynamica.json │ ├── fragbot │ │ ├── README.md │ │ └── egg-fragbot.json │ ├── game-server-watcher │ │ ├── README.md │ │ └── egg-game-server-watcher.json │ ├── jmusicbot │ │ ├── README.md │ │ ├── config.txt │ │ ├── egg-j-music-bot.json │ │ └── example_playlist.txt │ ├── muse │ │ ├── README.md │ │ └── egg-muse.json │ ├── parkertron │ │ ├── README.md │ │ └── egg-parkertron.json │ ├── pixelbot │ │ ├── README.md │ │ └── egg-pixel-bot.json │ ├── redbot │ │ ├── README.md │ │ ├── config.json │ │ └── egg-red.json │ ├── ree6 │ │ ├── README.md │ │ ├── config.yml │ │ └── egg-ree6.json │ └── sinusbot │ │ ├── README.md │ │ └── egg-sinusbot.json ├── other │ └── bigbrotherbot │ │ ├── README.md │ │ └── egg-big-brother-bot.json ├── teamspeak3 │ ├── README.md │ └── jts3servermod │ │ └── egg-j-t-s3-server-mod.json └── twitch │ ├── README.md │ ├── phantombot │ ├── README.md │ └── egg-phantom-bot.json │ └── sogebot │ ├── README.md │ └── egg-soge-bot.json ├── database ├── README.md ├── nosql │ ├── mongodb │ │ ├── README.md │ │ ├── egg-mongo-d-b.json │ │ ├── egg-mongo-d-b6.json │ │ └── egg-mongo-d-b7.json │ └── rethinkdb │ │ ├── README.md │ │ └── egg-rethinkdb.json ├── redis │ ├── redis-5 │ │ ├── README.md │ │ └── egg-redis-5.json │ ├── redis-6 │ │ ├── README.md │ │ ├── egg-redis-6.json │ │ └── redis.conf │ └── redis-7 │ │ ├── README.md │ │ ├── egg-redis-7.json │ │ └── redis.conf └── sql │ ├── mariadb │ ├── README.md │ ├── egg-maria-d-b10-3.json │ ├── install.my.cnf │ └── my.cnf │ └── postgres │ ├── README.md │ ├── egg-postgres14.json │ └── egg-postgres16.json ├── example └── README.md ├── game_eggs ├── FoundryVTT │ ├── README.md │ └── egg-FoundryVTT.json ├── README.md ├── SuperTuxKart │ ├── ReadMe.md │ └── egg-super-tux-kart.json ├── among_us │ ├── README.md │ ├── bettercrewlink_server │ │ ├── README.md │ │ └── egg-better-crewlink-server.json │ ├── crewlink_server │ │ ├── README.md │ │ └── egg-crewlink-server.json │ └── impostor_server │ │ ├── README.md │ │ └── egg-among-us--impostor-server.json ├── beamng │ ├── README.md │ ├── beammp │ │ ├── README.md │ │ └── egg-beam-m-p-server.json │ └── kissmp │ │ ├── README.md │ │ └── egg-kissmp.json ├── classicube │ └── mcgalaxy │ │ ├── README.md │ │ └── egg-classi-cube--m-g-c.json ├── clone_hero │ ├── README.md │ └── egg-clone-hero.json ├── cs2d │ ├── README.md │ └── egg-c-s2-d.json ├── cubeengine │ ├── assaultcube │ │ ├── README.md │ │ └── egg-assault-cube.json │ └── cube2 │ │ ├── README.md │ │ └── egg-cube2--sauerbraten.json ├── ddracenetwork │ ├── README.md │ └── egg-d-d-race-network.json ├── doom │ ├── readme.md │ └── zandronum │ │ ├── GeoIP.dat │ │ ├── egg-zandronum.json │ │ ├── readme.md │ │ └── zandronum.ini ├── eft │ ├── README.md │ └── egg-singleplayer-tarkov.json ├── enemy_territory │ └── etlegacy │ │ ├── README.md │ │ └── egg-e-t-legacy.json ├── factorio │ ├── README.md │ ├── clusterio │ │ ├── README.md │ │ └── egg-clusterio.json │ ├── factorio-modupdate │ │ └── egg-factorio-modupdate.json │ └── factorio │ │ ├── egg-factorio-a-r-m64.json │ │ └── egg-factorio.json ├── ftl │ └── tachyon │ │ ├── README.MD │ │ └── egg-tachyon.json ├── gta │ ├── README.md │ ├── altv │ │ ├── README.md │ │ └── egg-alt--v.json │ ├── fivem │ │ ├── README.md │ │ ├── egg-five-m.json │ │ └── server.cfg │ ├── gtac │ │ ├── README.md │ │ └── egg-grand-theft-auto-connected.json │ ├── mtasa │ │ ├── README.md │ │ └── egg-multi-theft-auto.json │ ├── openmp │ │ ├── README.md │ │ ├── config.json │ │ └── egg-open-m-p.json │ ├── ragecoop │ │ ├── README.md │ │ └── egg-rage-c-o-o-p.json │ ├── ragemp │ │ ├── README.MD │ │ ├── conf.json │ │ └── egg-rage--m-p.json │ └── samp │ │ ├── README.md │ │ └── egg-s-a--m-p.json ├── hogwarp │ ├── README.md │ └── egg-hogwarp.json ├── ksp │ ├── README.md │ └── egg-k-s-p-d-m-p.json ├── leaguesandbox │ ├── LeagueSandbox_Egg.json │ └── README.md ├── losangelescrimes │ ├── README.md │ └── egg-l-a-c--online-public-server.json ├── mindustry │ ├── README.md │ └── egg-mindustry.json ├── minecraft │ ├── README.md │ ├── bedrock │ │ ├── LiteLoader-bedrock │ │ │ ├── README.md │ │ │ └── egg-LiteLoader-bedrock.json │ │ ├── PowerNukkitX │ │ │ ├── README.md │ │ │ ├── egg-powernukkitx.json │ │ │ ├── nukkit.yml │ │ │ └── server.properties │ │ ├── README.md │ │ ├── bedrock │ │ │ ├── README.md │ │ │ ├── egg-vanilla-bedrock-ARM64.json │ │ │ └── egg-vanilla-bedrock.json │ │ ├── gomint │ │ │ ├── README.md │ │ │ ├── egg-go-mint.json │ │ │ └── server.yml │ │ ├── nukkit │ │ │ ├── README.md │ │ │ ├── egg-nukkit.json │ │ │ ├── nukkit.yml │ │ │ └── server.properties │ │ └── pocketmine_mp │ │ │ ├── README.md │ │ │ ├── egg-pocketmine-m-p.json │ │ │ └── server.properties │ ├── crossplay │ │ └── purpur-geysermc-floodgate │ │ │ ├── README.md │ │ │ └── egg-purpur-geysermc-floodgate.json │ ├── java │ │ ├── README.md │ │ ├── cuberite │ │ │ ├── README.md │ │ │ ├── egg-cuberite.json │ │ │ ├── settings.ini │ │ │ └── webadmin.ini │ │ ├── curseforge │ │ │ ├── README.md │ │ │ └── egg-curse-forge-generic.json │ │ ├── fabric │ │ │ ├── README.MD │ │ │ └── egg-fabric.json │ │ ├── feather │ │ │ ├── README.md │ │ │ ├── egg-feather.json │ │ │ └── feather.toml │ │ ├── folia │ │ │ ├── README.MD │ │ │ └── egg-folia.json │ │ ├── forge │ │ │ └── forge │ │ │ │ ├── README.md │ │ │ │ └── egg-forge-enhanced.json │ │ ├── ftb │ │ │ ├── README.md │ │ │ ├── egg-ftb-modpacksch-server.json │ │ │ └── outdated │ │ │ │ ├── egg-f-t-b-revelation.json │ │ │ │ └── egg-feed-the-beast.json │ │ ├── glowstone │ │ │ ├── README.md │ │ │ └── egg-glowstone.json │ │ ├── krypton │ │ │ ├── README.md │ │ │ ├── config.conf │ │ │ └── egg-krypton.json │ │ ├── limbo │ │ │ ├── README.md │ │ │ └── egg-limbo.json │ │ ├── magma │ │ │ ├── README.md │ │ │ └── egg-magma.json │ │ ├── modrinth │ │ │ ├── README.md │ │ │ └── egg-modrinth-generic.json │ │ ├── mohist │ │ │ ├── README.MD │ │ │ └── egg-mohist.json │ │ ├── nanolimbo │ │ │ ├── README.MD │ │ │ ├── egg-nano-limbo.json │ │ │ └── settings.yml │ │ ├── neoforge │ │ │ ├── README.md │ │ │ └── egg-neo-forge.json │ │ ├── paper │ │ │ ├── README.MD │ │ │ └── egg-paper.json │ │ ├── purpur │ │ │ ├── README.md │ │ │ └── egg-purpur.json │ │ ├── quilt │ │ │ ├── README.md │ │ │ └── egg-quilt.json │ │ ├── server.properties │ │ ├── spigot │ │ │ ├── README.MD │ │ │ └── egg-spigot.json │ │ ├── spongeforge │ │ │ ├── README.MD │ │ │ └── egg-sponge-forge.json │ │ ├── spongevanilla │ │ │ ├── README.MD │ │ │ └── egg-sponge-vanilla.json │ │ ├── technic │ │ │ ├── README.md │ │ │ ├── Tekkit-2 │ │ │ │ ├── README.md │ │ │ │ └── egg-tekkit-2.json │ │ │ ├── Tekkit │ │ │ │ ├── README.md │ │ │ │ └── egg-tekkit.json │ │ │ ├── attack-of-the-bteam │ │ │ │ ├── README.MD │ │ │ │ └── egg-attack-of-the-b--team.json │ │ │ ├── blightfall │ │ │ │ └── egg-blightfall.json │ │ │ ├── hexxit │ │ │ │ └── egg-hexxit.json │ │ │ ├── tekkit-classic │ │ │ │ ├── README.md │ │ │ │ └── egg-tekkit-classic.json │ │ │ ├── tekkit-legends │ │ │ │ └── egg-tekkit-legends.json │ │ │ ├── the-1-12-2-pack │ │ │ │ ├── README.md │ │ │ │ └── egg-the1-12-2-pack.json │ │ │ └── the-1-7-10-pack │ │ │ │ ├── README.MD │ │ │ │ └── egg-the1-7-10-pack.json │ │ └── vanillacord │ │ │ ├── README.md │ │ │ └── egg-vanilla-cord.json │ └── proxy │ │ ├── README.md │ │ ├── bedrock │ │ ├── README.md │ │ └── waterdog_pe │ │ │ ├── README.md │ │ │ ├── config.yml │ │ │ └── egg-waterdog-p-e.json │ │ ├── cross_platform │ │ ├── README.md │ │ ├── geyser │ │ │ └── README.md │ │ └── waterdog │ │ │ ├── README.md │ │ │ └── egg-waterdog.json │ │ └── java │ │ ├── README.md │ │ ├── travertine │ │ ├── README.md │ │ └── egg-travertine.json │ │ ├── velocity │ │ ├── README.md │ │ ├── egg-velocity.json │ │ └── velocity.toml │ │ ├── viaaas │ │ ├── README.md │ │ └── egg-v-i-aaa-s.json │ │ └── waterfall │ │ ├── README.md │ │ ├── config.yml │ │ └── egg-waterfall.json ├── minetest │ ├── README.md │ └── egg-minetest.json ├── mohaa │ ├── README.md │ ├── egg-mohaa.json │ └── server.cfg ├── neverwinter_nights_ee │ ├── README.md │ └── egg-neverwinter-nights--enhanced-edition.json ├── openarena │ ├── README.md │ └── egg-open-arena.json ├── openra │ ├── README.md │ ├── openra_dune2000 │ │ ├── README.md │ │ └── egg-open-r-a--dune2000.json │ ├── openra_red_alert │ │ ├── README.md │ │ └── egg-open-r-a.json │ └── openra_tiberian_dawn │ │ ├── README.md │ │ └── egg-open-r-a--tiberian-dawn.json ├── rdr │ ├── README.md │ └── redm │ │ ├── README.md │ │ └── egg-red-m.json ├── rimworld │ ├── README.md │ ├── open_world │ │ ├── README.md │ │ └── egg-rimworld-open-world.json │ └── together │ │ ├── README.md │ │ └── egg-rimworld-together.json ├── spacestation_14 │ ├── README.md │ └── egg-spacestation14.json ├── starmade │ ├── README.md │ └── egg-starmade.json ├── steamcmd_servers │ ├── 7_days_to_die │ │ ├── README.md │ │ └── egg-7-days-to-die.json │ ├── README.md │ ├── ark_survival_ascended │ │ ├── README.md │ │ └── egg-ark--survival-ascended.json │ ├── ark_survival_evolved │ │ ├── README.md │ │ └── egg-ark--survival-evolved.json │ ├── arma │ │ ├── README.md │ │ ├── arma3 │ │ │ ├── README.md │ │ │ ├── egg-arma3-config │ │ │ │ ├── basic.cfg │ │ │ │ └── server.cfg │ │ │ └── egg-arma3.json │ │ └── arma_reforger │ │ │ ├── README.md │ │ │ └── egg-arma-reforger.json │ ├── assetto_corsa │ │ ├── README.md │ │ ├── egg-assetto-corsa--freeroam--a-i.json │ │ └── egg-assetto-corsa.json │ ├── astro_colony │ │ ├── README.md │ │ ├── egg-astro-colony-wine.json │ │ └── egg-astro-colony.json │ ├── astroneer │ │ ├── README.md │ │ └── egg-astroneer-dedicated-server.json │ ├── avorion │ │ ├── README.md │ │ ├── egg-avorion.json │ │ └── server.ini │ ├── barotrauma │ │ ├── README.md │ │ └── egg-barotrauma.json │ ├── battalion_legacy │ │ ├── README.md │ │ └── egg-b-a-t-t-a-l-i-o-n--legacy.json │ ├── black_mesa │ │ ├── README.md │ │ └── egg-black-mesa.json │ ├── citadel │ │ ├── README.md │ │ └── egg-citadel-forged-with-fire.json │ ├── colony_survival │ │ ├── README.md │ │ └── egg-colony-survival.json │ ├── conan_exiles │ │ ├── README.md │ │ └── egg-conan-exiles.json │ ├── core_keeper │ │ ├── README.md │ │ └── egg-core-keeper.json │ ├── counter_strike │ │ ├── README.md │ │ ├── counter_strike_2 │ │ │ ├── README.md │ │ │ └── egg-counter--strike2.json │ │ └── counter_strike_source │ │ │ ├── README.md │ │ │ └── egg-counter--strike--source.json │ ├── craftopia │ │ ├── README.md │ │ ├── ServerSetting.ini │ │ └── egg-craftopia.json │ ├── cryofall │ │ ├── README.md │ │ └── egg-cryo-fall.json │ ├── dayz-experimental │ │ ├── README.md │ │ └── egg-dayz-experimental.json │ ├── ddnet │ │ ├── README.md │ │ └── egg-d-d-net.json │ ├── dead_matter │ │ ├── README.md │ │ └── egg-dead-matter.json │ ├── dont_starve │ │ ├── README.md │ │ ├── egg-don-t-starve-together.json │ │ ├── server.caves.ini │ │ ├── server.cluster.ini │ │ ├── server.master.ini │ │ ├── worldgenoverride.caves.lua │ │ └── worldgenoverride.master.lua │ ├── eco │ │ ├── README.md │ │ └── egg-eco.json │ ├── empyrion │ │ ├── README.md │ │ └── egg-empyrion--galactic-survival.json │ ├── enshrouded │ │ ├── README.md │ │ ├── egg-enshrouded.json │ │ └── enshrouded_server.json │ ├── fof │ │ ├── README.md │ │ └── egg-fof.json │ ├── frozen_flame │ │ ├── README.md │ │ └── egg-frozen-flame.json │ ├── ground_branch │ │ ├── README.md │ │ └── egg-ground-branch.json │ ├── hlds_server │ │ ├── rehlds │ │ │ ├── README.md │ │ │ └── egg-custom-re-h-l-d-s-engine-game.json │ │ └── vanilla │ │ │ ├── README.md │ │ │ └── egg-custom-h-l-d-s-engine-game.json │ ├── holdfast │ │ ├── README.md │ │ └── egg-holdfast-na-w.json │ ├── humanitz │ │ ├── README.md │ │ └── egg-humanit-z.json │ ├── hurtworld │ │ ├── README.md │ │ └── egg-hurtworld.json │ ├── icarus │ │ ├── README.md │ │ └── egg-icarus--dedicated.json │ ├── insurgency_sandstorm │ │ ├── README.md │ │ └── egg-insurgency--sandstorm.json │ ├── iosoccer │ │ ├── eggs-iosoccer.json │ │ └── readme.md │ ├── killing_floor_2 │ │ ├── README.md │ │ └── egg-killing-floor2.json │ ├── left4dead │ │ ├── README.md │ │ └── egg-left4dead.json │ ├── left4dead_2 │ │ ├── README.md │ │ └── egg-left4dead_2.json │ ├── longvinter │ │ ├── README.md │ │ └── egg-longvinter.json │ ├── modiverse │ │ ├── README.md │ │ ├── ServerConfiguration.json │ │ └── egg-modiverse.json │ ├── mordhau │ │ ├── README.md │ │ ├── egg-mordhau-wine.json │ │ └── egg-mordhau.json │ ├── mount_blade_II_bannerlord │ │ ├── README.md │ │ └── egg-mount--blade-i-i--bannerlord.json │ ├── myth_of_empires │ │ ├── README.md │ │ └── egg-myth-of-empires.json │ ├── necesse │ │ ├── README.md │ │ └── egg-necesse.json │ ├── neosvr │ │ ├── Config.json │ │ ├── README.md │ │ └── egg-neos-v-r.json │ ├── nmrih │ │ ├── README.md │ │ └── egg-nmrih.json │ ├── no_love_lost │ │ ├── README.md │ │ └── egg-no-love-lost.json │ ├── no_one_survived │ │ ├── README.md │ │ └── egg-no-one-survived.json │ ├── novalife_amboise │ │ ├── README.md │ │ └── egg-nova--life--amboise.json │ ├── onset │ │ ├── README.md │ │ └── egg-onset.json │ ├── open_fortress │ │ ├── README.md │ │ ├── egg-open-fortress.json │ │ └── gameinfo.txt │ ├── operation_harsh_doorstop │ │ ├── README.md │ │ └── egg-operation-harsh-doorstop.json │ ├── palworld │ │ ├── PalworldServerConfigParser-linux-amd64 │ │ ├── README.md │ │ ├── egg-palworld-proton.json │ │ ├── egg-palworld.json │ │ └── winmm.dll │ ├── pavlov_vr │ │ ├── Game.ini │ │ ├── README.md │ │ ├── RconSettings.txt │ │ └── egg-pavlov-v-r.json │ ├── pixark │ │ ├── README.md │ │ └── egg-pix-a-r-k.json │ ├── portal_knights │ │ ├── README.md │ │ └── egg-portal-knights.json │ ├── post_scriptum │ │ ├── README.md │ │ └── egg-post-scriptum.json │ ├── project_zomboid │ │ ├── README.md │ │ └── egg-project-zomboid.json │ ├── quake_live │ │ ├── README.md │ │ └── egg-quake-live.json │ ├── resonite │ │ ├── Config.json │ │ ├── README.md │ │ └── egg-resonite.json │ ├── rising_world │ │ ├── legacy │ │ │ ├── README.md │ │ │ └── egg-rising-world-legacy.json │ │ └── unity │ │ │ ├── README.md │ │ │ └── egg-rising-world-unity.json │ ├── risk_of_rain_2 │ │ ├── README.md │ │ └── egg-risk-of-rain2.json │ ├── rust │ │ ├── rust_autowipe │ │ │ ├── README.md │ │ │ └── egg-rust-autowipe.json │ │ └── rust_staging │ │ │ ├── README.md │ │ │ └── egg-rust-staging.json │ ├── satisfactory │ │ ├── README.md │ │ └── egg-satisfactory.json │ ├── scpsl │ │ ├── README.md │ │ ├── dedicated │ │ │ ├── README.md │ │ │ └── egg-scpsl.json │ │ └── exiled │ │ │ ├── README.md │ │ │ └── egg-s-c-p--s-l--exiled.json │ ├── smalland_survive_the_wilds │ │ ├── README.md │ │ └── egg-smalland--survive-the-wilds.json │ ├── solace_crafting │ │ ├── README.md │ │ └── egg-solace-crafting.json │ ├── soldat │ │ ├── README.md │ │ └── egg-soldat.json │ ├── sonsoftheforest │ │ ├── README.md │ │ ├── dedicatedserver.cfg │ │ ├── egg-sons-of-the-forest.json │ │ └── ownerswhitelist.txt │ ├── space_engineers │ │ ├── default │ │ │ ├── README.md │ │ │ ├── SpaceEngineers-Dedicated.cfg │ │ │ ├── World.zip │ │ │ └── egg-space-engineers.json │ │ └── torch │ │ │ ├── README.md │ │ │ └── egg-space-engineers--torch-server.json │ ├── squad │ │ ├── README.md │ │ └── egg-squad.json │ ├── starbound │ │ ├── README.md │ │ ├── egg-starbound.json │ │ └── starbound_server.config │ ├── stationeers │ │ ├── stationeers_bepinex │ │ │ ├── README.md │ │ │ └── egg-stationeers--bep-in-ex.json │ │ └── stationeers_vanilla │ │ │ ├── README.md │ │ │ └── egg-stationeers.json │ ├── stormworks │ │ ├── README.md │ │ └── egg-stormworks--build-and-rescue.json │ ├── subnautica_nitrox_mod │ │ ├── README.md │ │ └── egg-subnautica.json │ ├── svencoop │ │ ├── README.md │ │ └── egg-sven-co-op.json │ ├── swords_'n_Magic_and_Stuff │ │ ├── README.md │ │ └── egg-swords-n-magic-and-stuff.json │ ├── team_fortress_2_classic │ │ ├── README.md │ │ └── egg-team-fortress-2-classic.json │ ├── terratech_worlds │ │ ├── README.md │ │ └── egg-terra-tech-worlds.json │ ├── the_forest │ │ ├── README.md │ │ └── egg-the-forest.json │ ├── the_isle │ │ └── evrima │ │ │ ├── README.md │ │ │ └── egg-the-isle.json │ ├── thefront │ │ ├── README.md │ │ └── egg-the-front.json │ ├── tower_unite │ │ ├── README.md │ │ └── egg-tower-unite.json │ ├── truck-simulator │ │ ├── american-truck-simulator │ │ │ ├── README.md │ │ │ ├── ats-files │ │ │ │ ├── server_packages.dat │ │ │ │ └── server_packages.sii │ │ │ └── egg-american-truck-simulator-dedicated-server.json │ │ ├── euro-truck-simulator2 │ │ │ ├── README.md │ │ │ ├── egg-euro-truck-simulator2-dedicated-server.json │ │ │ └── ets2-files │ │ │ │ ├── server_packages.dat │ │ │ │ └── server_packages.sii │ │ └── server_config.sii │ ├── unturned │ │ ├── README.md │ │ └── egg-unturned.json │ ├── v_rising │ │ ├── v_rising_bepinex │ │ │ ├── README.md │ │ │ └── egg-v-rising-bep-in-ex.json │ │ └── v_rising_vanilla │ │ │ ├── README.md │ │ │ └── egg-v-rising.json │ ├── valheim │ │ ├── valheim_bepinex │ │ │ ├── README.md │ │ │ └── egg-valheim-bep-i-nex.json │ │ ├── valheim_plus │ │ │ ├── README.md │ │ │ └── egg-valheim-plus-mod.json │ │ └── valheim_vanilla │ │ │ ├── README.md │ │ │ └── egg-valheim.json │ ├── vein │ │ ├── Game.ini │ │ ├── README.md │ │ └── egg-v-e-i-n.json │ └── wurm_unlimited │ │ ├── README.md │ │ └── egg-wurm-unlimited.json ├── teeworlds │ ├── README.md │ ├── autoexec.cfg │ ├── egg-teeworlds.json │ └── storage.cfg ├── terraria │ ├── README.md │ ├── tmodloader │ │ ├── README.md │ │ └── egg-t-modloader.json │ ├── tshock │ │ ├── README.md │ │ ├── egg-tshock-legacy.json │ │ └── egg-tshock.json │ └── vanilla │ │ ├── README.md │ │ └── egg-terraria-vanilla.json ├── tycoon_games │ ├── README.md │ ├── openrct2 │ │ ├── README.md │ │ ├── egg-openrct2.json │ │ └── save.park │ └── openttd │ │ ├── README.md │ │ ├── egg-open-t-t-d-server.json │ │ └── openttd.cfg ├── urbanterror │ ├── README.md │ └── egg-urban-terror.json ├── veloren │ ├── README.md │ ├── egg-veloren.json │ └── settings.ron ├── vintage_story │ ├── README.md │ └── egg-vintage-story.json ├── wine │ └── generic │ │ ├── README.md │ │ └── egg-wine-generic.json └── xonotic │ └── xonotic │ ├── README.md │ └── egg-xonotic.json ├── generic ├── README.md ├── bun │ ├── README.md │ └── egg-bun.json ├── c# │ ├── README.md │ └── egg-generic-c.json ├── dart │ ├── README.md │ └── egg-dart-generic.json ├── deno │ ├── README.md │ └── egg-deno-generic.json ├── elixir │ ├── README.md │ └── egg-elixir.json ├── golang │ ├── README.md │ └── egg-golang-generic.json ├── java │ ├── README.md │ └── egg-java.json ├── lua │ └── luvit │ │ ├── README.md │ │ └── egg-luvit-generic.json ├── nodejs │ ├── README.md │ └── egg-node-js-generic.json ├── nodemon │ ├── README.md │ └── egg-nodemon.json ├── python │ ├── README.md │ └── egg-python-generic.json └── rust │ ├── README.md │ └── egg-rust-generic.json ├── minecraft ├── README.md └── java │ ├── README.md │ └── server.properties ├── monitoring ├── loki │ ├── README.md │ └── egg-loki.json └── prometheus │ ├── README.md │ └── egg-prometheus.json ├── scripts ├── download_link_validator.sh ├── file_unpacker.sh ├── git_cloner.sh ├── github_release_grabber.sh └── steamcmd_installer.sh ├── software ├── 5e-tools │ ├── README.md │ └── egg-5e-tools.json ├── code-server │ ├── README.md │ └── egg-code--server.json ├── elasticsearch │ ├── README.md │ └── egg-elasticsearch.json ├── foldingathome │ ├── README.md │ └── egg-folding--home.json ├── forgejo │ ├── README.md │ └── egg-forgejo.json ├── gitea │ ├── README.md │ └── egg-gitea.json ├── grafana │ ├── README.md │ └── egg-grafana.json ├── haste-server │ ├── README.md │ └── egg-haste-server.json ├── languagetool │ ├── README.md │ └── egg-languagetool.json ├── meilisearch │ ├── README.md │ └── egg-meilisearch.json ├── owncast │ ├── README.md │ └── egg-owncast-online.json ├── rabbitmq │ ├── README.md │ ├── egg-rabbit-m-q.json │ └── rabbitmq.conf ├── rathole │ ├── README.md │ └── egg-rathole.json ├── reposilite │ ├── README.md │ └── egg-reposilite.json ├── uptime-kuma │ ├── README.md │ └── egg-uptime-kuma.json └── yarr │ ├── README.md │ └── egg-yarr.json ├── storage ├── minio │ ├── README.md │ ├── egg-minio-s3.json │ └── minio.sh └── sftp_storage_share │ ├── README.md │ └── egg-sftp-storage-share.json └── voice_servers ├── lavalink ├── README.md └── egg-lavalink.json ├── teamspeak_ARM64 ├── Readme.md └── egg-teamspeak3-arm64-server.json ├── teaspeak ├── README.md └── egg-tea-speak.json └── ts3_manager ├── README.md └── egg-t-s3-manager.json /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/egg-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/.github/ISSUE_TEMPLATE/egg-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/install-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/.github/ISSUE_TEMPLATE/install-bug-report.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/README.md -------------------------------------------------------------------------------- /bots/discord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/README.md -------------------------------------------------------------------------------- /bots/discord/aoede/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/aoede/README.md -------------------------------------------------------------------------------- /bots/discord/aoede/egg-aoede.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/aoede/egg-aoede.json -------------------------------------------------------------------------------- /bots/discord/atlbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/atlbot/README.md -------------------------------------------------------------------------------- /bots/discord/atlbot/egg-a-t-l-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/atlbot/egg-a-t-l-bot.json -------------------------------------------------------------------------------- /bots/discord/bastion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/bastion/README.md -------------------------------------------------------------------------------- /bots/discord/bastion/egg-bastion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/bastion/egg-bastion.json -------------------------------------------------------------------------------- /bots/discord/corpbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/corpbot/README.md -------------------------------------------------------------------------------- /bots/discord/corpbot/egg-corp-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/corpbot/egg-corp-bot.json -------------------------------------------------------------------------------- /bots/discord/corpbot/settings_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/corpbot/settings_dict.json -------------------------------------------------------------------------------- /bots/discord/dynamica/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/dynamica/README.md -------------------------------------------------------------------------------- /bots/discord/dynamica/egg-dynamica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/dynamica/egg-dynamica.json -------------------------------------------------------------------------------- /bots/discord/fragbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/fragbot/README.md -------------------------------------------------------------------------------- /bots/discord/fragbot/egg-fragbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/fragbot/egg-fragbot.json -------------------------------------------------------------------------------- /bots/discord/game-server-watcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/game-server-watcher/README.md -------------------------------------------------------------------------------- /bots/discord/game-server-watcher/egg-game-server-watcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/game-server-watcher/egg-game-server-watcher.json -------------------------------------------------------------------------------- /bots/discord/jmusicbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/jmusicbot/README.md -------------------------------------------------------------------------------- /bots/discord/jmusicbot/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/jmusicbot/config.txt -------------------------------------------------------------------------------- /bots/discord/jmusicbot/egg-j-music-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/jmusicbot/egg-j-music-bot.json -------------------------------------------------------------------------------- /bots/discord/jmusicbot/example_playlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/jmusicbot/example_playlist.txt -------------------------------------------------------------------------------- /bots/discord/muse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/muse/README.md -------------------------------------------------------------------------------- /bots/discord/muse/egg-muse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/muse/egg-muse.json -------------------------------------------------------------------------------- /bots/discord/parkertron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/parkertron/README.md -------------------------------------------------------------------------------- /bots/discord/parkertron/egg-parkertron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/parkertron/egg-parkertron.json -------------------------------------------------------------------------------- /bots/discord/pixelbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/pixelbot/README.md -------------------------------------------------------------------------------- /bots/discord/pixelbot/egg-pixel-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/pixelbot/egg-pixel-bot.json -------------------------------------------------------------------------------- /bots/discord/redbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/redbot/README.md -------------------------------------------------------------------------------- /bots/discord/redbot/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/redbot/config.json -------------------------------------------------------------------------------- /bots/discord/redbot/egg-red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/redbot/egg-red.json -------------------------------------------------------------------------------- /bots/discord/ree6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/ree6/README.md -------------------------------------------------------------------------------- /bots/discord/ree6/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/ree6/config.yml -------------------------------------------------------------------------------- /bots/discord/ree6/egg-ree6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/ree6/egg-ree6.json -------------------------------------------------------------------------------- /bots/discord/sinusbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/sinusbot/README.md -------------------------------------------------------------------------------- /bots/discord/sinusbot/egg-sinusbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/discord/sinusbot/egg-sinusbot.json -------------------------------------------------------------------------------- /bots/other/bigbrotherbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/other/bigbrotherbot/README.md -------------------------------------------------------------------------------- /bots/other/bigbrotherbot/egg-big-brother-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/other/bigbrotherbot/egg-big-brother-bot.json -------------------------------------------------------------------------------- /bots/teamspeak3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/teamspeak3/README.md -------------------------------------------------------------------------------- /bots/teamspeak3/jts3servermod/egg-j-t-s3-server-mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/teamspeak3/jts3servermod/egg-j-t-s3-server-mod.json -------------------------------------------------------------------------------- /bots/twitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/twitch/README.md -------------------------------------------------------------------------------- /bots/twitch/phantombot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/twitch/phantombot/README.md -------------------------------------------------------------------------------- /bots/twitch/phantombot/egg-phantom-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/twitch/phantombot/egg-phantom-bot.json -------------------------------------------------------------------------------- /bots/twitch/sogebot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/twitch/sogebot/README.md -------------------------------------------------------------------------------- /bots/twitch/sogebot/egg-soge-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/bots/twitch/sogebot/egg-soge-bot.json -------------------------------------------------------------------------------- /database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/README.md -------------------------------------------------------------------------------- /database/nosql/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/nosql/mongodb/README.md -------------------------------------------------------------------------------- /database/nosql/mongodb/egg-mongo-d-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/nosql/mongodb/egg-mongo-d-b.json -------------------------------------------------------------------------------- /database/nosql/mongodb/egg-mongo-d-b6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/nosql/mongodb/egg-mongo-d-b6.json -------------------------------------------------------------------------------- /database/nosql/mongodb/egg-mongo-d-b7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/nosql/mongodb/egg-mongo-d-b7.json -------------------------------------------------------------------------------- /database/nosql/rethinkdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/nosql/rethinkdb/README.md -------------------------------------------------------------------------------- /database/nosql/rethinkdb/egg-rethinkdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/nosql/rethinkdb/egg-rethinkdb.json -------------------------------------------------------------------------------- /database/redis/redis-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-5/README.md -------------------------------------------------------------------------------- /database/redis/redis-5/egg-redis-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-5/egg-redis-5.json -------------------------------------------------------------------------------- /database/redis/redis-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-6/README.md -------------------------------------------------------------------------------- /database/redis/redis-6/egg-redis-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-6/egg-redis-6.json -------------------------------------------------------------------------------- /database/redis/redis-6/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-6/redis.conf -------------------------------------------------------------------------------- /database/redis/redis-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-7/README.md -------------------------------------------------------------------------------- /database/redis/redis-7/egg-redis-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-7/egg-redis-7.json -------------------------------------------------------------------------------- /database/redis/redis-7/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/redis/redis-7/redis.conf -------------------------------------------------------------------------------- /database/sql/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/mariadb/README.md -------------------------------------------------------------------------------- /database/sql/mariadb/egg-maria-d-b10-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/mariadb/egg-maria-d-b10-3.json -------------------------------------------------------------------------------- /database/sql/mariadb/install.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/mariadb/install.my.cnf -------------------------------------------------------------------------------- /database/sql/mariadb/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/mariadb/my.cnf -------------------------------------------------------------------------------- /database/sql/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/postgres/README.md -------------------------------------------------------------------------------- /database/sql/postgres/egg-postgres14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/postgres/egg-postgres14.json -------------------------------------------------------------------------------- /database/sql/postgres/egg-postgres16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/database/sql/postgres/egg-postgres16.json -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/example/README.md -------------------------------------------------------------------------------- /game_eggs/FoundryVTT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/FoundryVTT/README.md -------------------------------------------------------------------------------- /game_eggs/FoundryVTT/egg-FoundryVTT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/FoundryVTT/egg-FoundryVTT.json -------------------------------------------------------------------------------- /game_eggs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/README.md -------------------------------------------------------------------------------- /game_eggs/SuperTuxKart/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/SuperTuxKart/ReadMe.md -------------------------------------------------------------------------------- /game_eggs/SuperTuxKart/egg-super-tux-kart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/SuperTuxKart/egg-super-tux-kart.json -------------------------------------------------------------------------------- /game_eggs/among_us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/README.md -------------------------------------------------------------------------------- /game_eggs/among_us/bettercrewlink_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/bettercrewlink_server/README.md -------------------------------------------------------------------------------- /game_eggs/among_us/bettercrewlink_server/egg-better-crewlink-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/bettercrewlink_server/egg-better-crewlink-server.json -------------------------------------------------------------------------------- /game_eggs/among_us/crewlink_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/crewlink_server/README.md -------------------------------------------------------------------------------- /game_eggs/among_us/crewlink_server/egg-crewlink-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/crewlink_server/egg-crewlink-server.json -------------------------------------------------------------------------------- /game_eggs/among_us/impostor_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/impostor_server/README.md -------------------------------------------------------------------------------- /game_eggs/among_us/impostor_server/egg-among-us--impostor-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/among_us/impostor_server/egg-among-us--impostor-server.json -------------------------------------------------------------------------------- /game_eggs/beamng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/beamng/README.md -------------------------------------------------------------------------------- /game_eggs/beamng/beammp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/beamng/beammp/README.md -------------------------------------------------------------------------------- /game_eggs/beamng/beammp/egg-beam-m-p-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/beamng/beammp/egg-beam-m-p-server.json -------------------------------------------------------------------------------- /game_eggs/beamng/kissmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/beamng/kissmp/README.md -------------------------------------------------------------------------------- /game_eggs/beamng/kissmp/egg-kissmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/beamng/kissmp/egg-kissmp.json -------------------------------------------------------------------------------- /game_eggs/classicube/mcgalaxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/classicube/mcgalaxy/README.md -------------------------------------------------------------------------------- /game_eggs/classicube/mcgalaxy/egg-classi-cube--m-g-c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/classicube/mcgalaxy/egg-classi-cube--m-g-c.json -------------------------------------------------------------------------------- /game_eggs/clone_hero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/clone_hero/README.md -------------------------------------------------------------------------------- /game_eggs/clone_hero/egg-clone-hero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/clone_hero/egg-clone-hero.json -------------------------------------------------------------------------------- /game_eggs/cs2d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/cs2d/README.md -------------------------------------------------------------------------------- /game_eggs/cs2d/egg-c-s2-d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/cs2d/egg-c-s2-d.json -------------------------------------------------------------------------------- /game_eggs/cubeengine/assaultcube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/cubeengine/assaultcube/README.md -------------------------------------------------------------------------------- /game_eggs/cubeengine/assaultcube/egg-assault-cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/cubeengine/assaultcube/egg-assault-cube.json -------------------------------------------------------------------------------- /game_eggs/cubeengine/cube2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/cubeengine/cube2/README.md -------------------------------------------------------------------------------- /game_eggs/cubeengine/cube2/egg-cube2--sauerbraten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/cubeengine/cube2/egg-cube2--sauerbraten.json -------------------------------------------------------------------------------- /game_eggs/ddracenetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/ddracenetwork/README.md -------------------------------------------------------------------------------- /game_eggs/ddracenetwork/egg-d-d-race-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/ddracenetwork/egg-d-d-race-network.json -------------------------------------------------------------------------------- /game_eggs/doom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/doom/readme.md -------------------------------------------------------------------------------- /game_eggs/doom/zandronum/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/doom/zandronum/GeoIP.dat -------------------------------------------------------------------------------- /game_eggs/doom/zandronum/egg-zandronum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/doom/zandronum/egg-zandronum.json -------------------------------------------------------------------------------- /game_eggs/doom/zandronum/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/doom/zandronum/readme.md -------------------------------------------------------------------------------- /game_eggs/doom/zandronum/zandronum.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/doom/zandronum/zandronum.ini -------------------------------------------------------------------------------- /game_eggs/eft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/eft/README.md -------------------------------------------------------------------------------- /game_eggs/eft/egg-singleplayer-tarkov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/eft/egg-singleplayer-tarkov.json -------------------------------------------------------------------------------- /game_eggs/enemy_territory/etlegacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/enemy_territory/etlegacy/README.md -------------------------------------------------------------------------------- /game_eggs/enemy_territory/etlegacy/egg-e-t-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/enemy_territory/etlegacy/egg-e-t-legacy.json -------------------------------------------------------------------------------- /game_eggs/factorio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/factorio/README.md -------------------------------------------------------------------------------- /game_eggs/factorio/clusterio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/factorio/clusterio/README.md -------------------------------------------------------------------------------- /game_eggs/factorio/clusterio/egg-clusterio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/factorio/clusterio/egg-clusterio.json -------------------------------------------------------------------------------- /game_eggs/factorio/factorio-modupdate/egg-factorio-modupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/factorio/factorio-modupdate/egg-factorio-modupdate.json -------------------------------------------------------------------------------- /game_eggs/factorio/factorio/egg-factorio-a-r-m64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/factorio/factorio/egg-factorio-a-r-m64.json -------------------------------------------------------------------------------- /game_eggs/factorio/factorio/egg-factorio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/factorio/factorio/egg-factorio.json -------------------------------------------------------------------------------- /game_eggs/ftl/tachyon/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/ftl/tachyon/README.MD -------------------------------------------------------------------------------- /game_eggs/ftl/tachyon/egg-tachyon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/ftl/tachyon/egg-tachyon.json -------------------------------------------------------------------------------- /game_eggs/gta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/README.md -------------------------------------------------------------------------------- /game_eggs/gta/altv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/altv/README.md -------------------------------------------------------------------------------- /game_eggs/gta/altv/egg-alt--v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/altv/egg-alt--v.json -------------------------------------------------------------------------------- /game_eggs/gta/fivem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/fivem/README.md -------------------------------------------------------------------------------- /game_eggs/gta/fivem/egg-five-m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/fivem/egg-five-m.json -------------------------------------------------------------------------------- /game_eggs/gta/fivem/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/fivem/server.cfg -------------------------------------------------------------------------------- /game_eggs/gta/gtac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/gtac/README.md -------------------------------------------------------------------------------- /game_eggs/gta/gtac/egg-grand-theft-auto-connected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/gtac/egg-grand-theft-auto-connected.json -------------------------------------------------------------------------------- /game_eggs/gta/mtasa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/mtasa/README.md -------------------------------------------------------------------------------- /game_eggs/gta/mtasa/egg-multi-theft-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/mtasa/egg-multi-theft-auto.json -------------------------------------------------------------------------------- /game_eggs/gta/openmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/openmp/README.md -------------------------------------------------------------------------------- /game_eggs/gta/openmp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/openmp/config.json -------------------------------------------------------------------------------- /game_eggs/gta/openmp/egg-open-m-p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/openmp/egg-open-m-p.json -------------------------------------------------------------------------------- /game_eggs/gta/ragecoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/ragecoop/README.md -------------------------------------------------------------------------------- /game_eggs/gta/ragecoop/egg-rage-c-o-o-p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/ragecoop/egg-rage-c-o-o-p.json -------------------------------------------------------------------------------- /game_eggs/gta/ragemp/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/ragemp/README.MD -------------------------------------------------------------------------------- /game_eggs/gta/ragemp/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/ragemp/conf.json -------------------------------------------------------------------------------- /game_eggs/gta/ragemp/egg-rage--m-p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/ragemp/egg-rage--m-p.json -------------------------------------------------------------------------------- /game_eggs/gta/samp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/samp/README.md -------------------------------------------------------------------------------- /game_eggs/gta/samp/egg-s-a--m-p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/gta/samp/egg-s-a--m-p.json -------------------------------------------------------------------------------- /game_eggs/hogwarp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/hogwarp/README.md -------------------------------------------------------------------------------- /game_eggs/hogwarp/egg-hogwarp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/hogwarp/egg-hogwarp.json -------------------------------------------------------------------------------- /game_eggs/ksp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/ksp/README.md -------------------------------------------------------------------------------- /game_eggs/ksp/egg-k-s-p-d-m-p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/ksp/egg-k-s-p-d-m-p.json -------------------------------------------------------------------------------- /game_eggs/leaguesandbox/LeagueSandbox_Egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/leaguesandbox/LeagueSandbox_Egg.json -------------------------------------------------------------------------------- /game_eggs/leaguesandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/leaguesandbox/README.md -------------------------------------------------------------------------------- /game_eggs/losangelescrimes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/losangelescrimes/README.md -------------------------------------------------------------------------------- /game_eggs/losangelescrimes/egg-l-a-c--online-public-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/losangelescrimes/egg-l-a-c--online-public-server.json -------------------------------------------------------------------------------- /game_eggs/mindustry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/mindustry/README.md -------------------------------------------------------------------------------- /game_eggs/mindustry/egg-mindustry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/mindustry/egg-mindustry.json -------------------------------------------------------------------------------- /game_eggs/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/LiteLoader-bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/LiteLoader-bedrock/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/LiteLoader-bedrock/egg-LiteLoader-bedrock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/LiteLoader-bedrock/egg-LiteLoader-bedrock.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/PowerNukkitX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/PowerNukkitX/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/PowerNukkitX/egg-powernukkitx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/PowerNukkitX/egg-powernukkitx.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/PowerNukkitX/nukkit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/PowerNukkitX/nukkit.yml -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/PowerNukkitX/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/PowerNukkitX/server.properties -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/bedrock/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/bedrock/egg-vanilla-bedrock-ARM64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/bedrock/egg-vanilla-bedrock-ARM64.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/bedrock/egg-vanilla-bedrock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/bedrock/egg-vanilla-bedrock.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/gomint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/gomint/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/gomint/egg-go-mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/gomint/egg-go-mint.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/gomint/server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/gomint/server.yml -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/nukkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/nukkit/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/nukkit/egg-nukkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/nukkit/egg-nukkit.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/nukkit/nukkit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/nukkit/nukkit.yml -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/nukkit/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/nukkit/server.properties -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/pocketmine_mp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/pocketmine_mp/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/pocketmine_mp/egg-pocketmine-m-p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/pocketmine_mp/egg-pocketmine-m-p.json -------------------------------------------------------------------------------- /game_eggs/minecraft/bedrock/pocketmine_mp/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/bedrock/pocketmine_mp/server.properties -------------------------------------------------------------------------------- /game_eggs/minecraft/crossplay/purpur-geysermc-floodgate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/crossplay/purpur-geysermc-floodgate/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/crossplay/purpur-geysermc-floodgate/egg-purpur-geysermc-floodgate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/crossplay/purpur-geysermc-floodgate/egg-purpur-geysermc-floodgate.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/cuberite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/cuberite/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/cuberite/egg-cuberite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/cuberite/egg-cuberite.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/cuberite/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/cuberite/settings.ini -------------------------------------------------------------------------------- /game_eggs/minecraft/java/cuberite/webadmin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/cuberite/webadmin.ini -------------------------------------------------------------------------------- /game_eggs/minecraft/java/curseforge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/curseforge/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/curseforge/egg-curse-forge-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/curseforge/egg-curse-forge-generic.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/fabric/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/fabric/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/fabric/egg-fabric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/fabric/egg-fabric.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/feather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/feather/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/feather/egg-feather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/feather/egg-feather.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/feather/feather.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/feather/feather.toml -------------------------------------------------------------------------------- /game_eggs/minecraft/java/folia/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/folia/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/folia/egg-folia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/folia/egg-folia.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/forge/forge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/forge/forge/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/forge/forge/egg-forge-enhanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/forge/forge/egg-forge-enhanced.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/ftb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/ftb/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/ftb/egg-ftb-modpacksch-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/ftb/egg-ftb-modpacksch-server.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/ftb/outdated/egg-f-t-b-revelation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/ftb/outdated/egg-f-t-b-revelation.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/ftb/outdated/egg-feed-the-beast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/ftb/outdated/egg-feed-the-beast.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/glowstone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/glowstone/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/glowstone/egg-glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/glowstone/egg-glowstone.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/krypton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/krypton/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/krypton/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/krypton/config.conf -------------------------------------------------------------------------------- /game_eggs/minecraft/java/krypton/egg-krypton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/krypton/egg-krypton.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/limbo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/limbo/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/limbo/egg-limbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/limbo/egg-limbo.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/magma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/magma/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/magma/egg-magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/magma/egg-magma.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/modrinth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/modrinth/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/modrinth/egg-modrinth-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/modrinth/egg-modrinth-generic.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/mohist/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/mohist/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/mohist/egg-mohist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/mohist/egg-mohist.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/nanolimbo/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/nanolimbo/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/nanolimbo/egg-nano-limbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/nanolimbo/egg-nano-limbo.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/nanolimbo/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/nanolimbo/settings.yml -------------------------------------------------------------------------------- /game_eggs/minecraft/java/neoforge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/neoforge/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/neoforge/egg-neo-forge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/neoforge/egg-neo-forge.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/paper/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/paper/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/paper/egg-paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/paper/egg-paper.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/purpur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/purpur/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/purpur/egg-purpur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/purpur/egg-purpur.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/quilt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/quilt/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/quilt/egg-quilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/quilt/egg-quilt.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/server.properties -------------------------------------------------------------------------------- /game_eggs/minecraft/java/spigot/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/spigot/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/spigot/egg-spigot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/spigot/egg-spigot.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/spongeforge/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/spongeforge/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/spongeforge/egg-sponge-forge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/spongeforge/egg-sponge-forge.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/spongevanilla/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/spongevanilla/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/spongevanilla/egg-sponge-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/spongevanilla/egg-sponge-vanilla.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/Tekkit-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/Tekkit-2/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/Tekkit-2/egg-tekkit-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/Tekkit-2/egg-tekkit-2.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/Tekkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/Tekkit/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/Tekkit/egg-tekkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/Tekkit/egg-tekkit.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/attack-of-the-bteam/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/attack-of-the-bteam/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/attack-of-the-bteam/egg-attack-of-the-b--team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/attack-of-the-bteam/egg-attack-of-the-b--team.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/blightfall/egg-blightfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/blightfall/egg-blightfall.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/hexxit/egg-hexxit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/hexxit/egg-hexxit.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/tekkit-classic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/tekkit-classic/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/tekkit-classic/egg-tekkit-classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/tekkit-classic/egg-tekkit-classic.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/tekkit-legends/egg-tekkit-legends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/tekkit-legends/egg-tekkit-legends.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/the-1-12-2-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/the-1-12-2-pack/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/the-1-12-2-pack/egg-the1-12-2-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/the-1-12-2-pack/egg-the1-12-2-pack.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/the-1-7-10-pack/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/the-1-7-10-pack/README.MD -------------------------------------------------------------------------------- /game_eggs/minecraft/java/technic/the-1-7-10-pack/egg-the1-7-10-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/technic/the-1-7-10-pack/egg-the1-7-10-pack.json -------------------------------------------------------------------------------- /game_eggs/minecraft/java/vanillacord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/vanillacord/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/java/vanillacord/egg-vanilla-cord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/java/vanillacord/egg-vanilla-cord.json -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/bedrock/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/bedrock/waterdog_pe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/bedrock/waterdog_pe/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/bedrock/waterdog_pe/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/bedrock/waterdog_pe/config.yml -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/bedrock/waterdog_pe/egg-waterdog-p-e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/bedrock/waterdog_pe/egg-waterdog-p-e.json -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/cross_platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/cross_platform/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/cross_platform/geyser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/cross_platform/geyser/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/cross_platform/waterdog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/cross_platform/waterdog/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/cross_platform/waterdog/egg-waterdog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/cross_platform/waterdog/egg-waterdog.json -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/travertine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/travertine/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/travertine/egg-travertine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/travertine/egg-travertine.json -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/velocity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/velocity/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/velocity/egg-velocity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/velocity/egg-velocity.json -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/velocity/velocity.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/velocity/velocity.toml -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/viaaas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/viaaas/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/viaaas/egg-v-i-aaa-s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/viaaas/egg-v-i-aaa-s.json -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/waterfall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/waterfall/README.md -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/waterfall/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/waterfall/config.yml -------------------------------------------------------------------------------- /game_eggs/minecraft/proxy/java/waterfall/egg-waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minecraft/proxy/java/waterfall/egg-waterfall.json -------------------------------------------------------------------------------- /game_eggs/minetest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minetest/README.md -------------------------------------------------------------------------------- /game_eggs/minetest/egg-minetest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/minetest/egg-minetest.json -------------------------------------------------------------------------------- /game_eggs/mohaa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/mohaa/README.md -------------------------------------------------------------------------------- /game_eggs/mohaa/egg-mohaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/mohaa/egg-mohaa.json -------------------------------------------------------------------------------- /game_eggs/mohaa/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/mohaa/server.cfg -------------------------------------------------------------------------------- /game_eggs/neverwinter_nights_ee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/neverwinter_nights_ee/README.md -------------------------------------------------------------------------------- /game_eggs/neverwinter_nights_ee/egg-neverwinter-nights--enhanced-edition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/neverwinter_nights_ee/egg-neverwinter-nights--enhanced-edition.json -------------------------------------------------------------------------------- /game_eggs/openarena/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openarena/README.md -------------------------------------------------------------------------------- /game_eggs/openarena/egg-open-arena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openarena/egg-open-arena.json -------------------------------------------------------------------------------- /game_eggs/openra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/README.md -------------------------------------------------------------------------------- /game_eggs/openra/openra_dune2000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/openra_dune2000/README.md -------------------------------------------------------------------------------- /game_eggs/openra/openra_dune2000/egg-open-r-a--dune2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/openra_dune2000/egg-open-r-a--dune2000.json -------------------------------------------------------------------------------- /game_eggs/openra/openra_red_alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/openra_red_alert/README.md -------------------------------------------------------------------------------- /game_eggs/openra/openra_red_alert/egg-open-r-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/openra_red_alert/egg-open-r-a.json -------------------------------------------------------------------------------- /game_eggs/openra/openra_tiberian_dawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/openra_tiberian_dawn/README.md -------------------------------------------------------------------------------- /game_eggs/openra/openra_tiberian_dawn/egg-open-r-a--tiberian-dawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/openra/openra_tiberian_dawn/egg-open-r-a--tiberian-dawn.json -------------------------------------------------------------------------------- /game_eggs/rdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rdr/README.md -------------------------------------------------------------------------------- /game_eggs/rdr/redm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rdr/redm/README.md -------------------------------------------------------------------------------- /game_eggs/rdr/redm/egg-red-m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rdr/redm/egg-red-m.json -------------------------------------------------------------------------------- /game_eggs/rimworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rimworld/README.md -------------------------------------------------------------------------------- /game_eggs/rimworld/open_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rimworld/open_world/README.md -------------------------------------------------------------------------------- /game_eggs/rimworld/open_world/egg-rimworld-open-world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rimworld/open_world/egg-rimworld-open-world.json -------------------------------------------------------------------------------- /game_eggs/rimworld/together/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rimworld/together/README.md -------------------------------------------------------------------------------- /game_eggs/rimworld/together/egg-rimworld-together.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/rimworld/together/egg-rimworld-together.json -------------------------------------------------------------------------------- /game_eggs/spacestation_14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/spacestation_14/README.md -------------------------------------------------------------------------------- /game_eggs/spacestation_14/egg-spacestation14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/spacestation_14/egg-spacestation14.json -------------------------------------------------------------------------------- /game_eggs/starmade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/starmade/README.md -------------------------------------------------------------------------------- /game_eggs/starmade/egg-starmade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/starmade/egg-starmade.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/7_days_to_die/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/7_days_to_die/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/7_days_to_die/egg-7-days-to-die.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/7_days_to_die/egg-7-days-to-die.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ark_survival_ascended/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ark_survival_ascended/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ark_survival_ascended/egg-ark--survival-ascended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ark_survival_ascended/egg-ark--survival-ascended.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ark_survival_evolved/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ark_survival_evolved/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ark_survival_evolved/egg-ark--survival-evolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ark_survival_evolved/egg-ark--survival-evolved.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/arma3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/arma3/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/arma3/egg-arma3-config/basic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/arma3/egg-arma3-config/basic.cfg -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/arma3/egg-arma3-config/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/arma3/egg-arma3-config/server.cfg -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/arma3/egg-arma3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/arma3/egg-arma3.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/arma_reforger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/arma_reforger/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/arma/arma_reforger/egg-arma-reforger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/arma/arma_reforger/egg-arma-reforger.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/assetto_corsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/assetto_corsa/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/assetto_corsa/egg-assetto-corsa--freeroam--a-i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/assetto_corsa/egg-assetto-corsa--freeroam--a-i.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/assetto_corsa/egg-assetto-corsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/assetto_corsa/egg-assetto-corsa.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/astro_colony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/astro_colony/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/astro_colony/egg-astro-colony-wine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/astro_colony/egg-astro-colony-wine.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/astro_colony/egg-astro-colony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/astro_colony/egg-astro-colony.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/astroneer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/astroneer/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/astroneer/egg-astroneer-dedicated-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/astroneer/egg-astroneer-dedicated-server.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/avorion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/avorion/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/avorion/egg-avorion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/avorion/egg-avorion.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/avorion/server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/avorion/server.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/barotrauma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/barotrauma/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/barotrauma/egg-barotrauma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/barotrauma/egg-barotrauma.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/battalion_legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/battalion_legacy/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/battalion_legacy/egg-b-a-t-t-a-l-i-o-n--legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/battalion_legacy/egg-b-a-t-t-a-l-i-o-n--legacy.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/black_mesa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/black_mesa/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/black_mesa/egg-black-mesa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/black_mesa/egg-black-mesa.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/citadel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/citadel/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/citadel/egg-citadel-forged-with-fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/citadel/egg-citadel-forged-with-fire.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/colony_survival/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/colony_survival/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/colony_survival/egg-colony-survival.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/colony_survival/egg-colony-survival.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/conan_exiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/conan_exiles/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/conan_exiles/egg-conan-exiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/conan_exiles/egg-conan-exiles.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/core_keeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/core_keeper/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/core_keeper/egg-core-keeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/core_keeper/egg-core-keeper.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/counter_strike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/counter_strike/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/counter_strike/counter_strike_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/counter_strike/counter_strike_2/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/counter_strike/counter_strike_2/egg-counter--strike2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/counter_strike/counter_strike_2/egg-counter--strike2.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/counter_strike/counter_strike_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/counter_strike/counter_strike_source/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/counter_strike/counter_strike_source/egg-counter--strike--source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/counter_strike/counter_strike_source/egg-counter--strike--source.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/craftopia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/craftopia/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/craftopia/ServerSetting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/craftopia/ServerSetting.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/craftopia/egg-craftopia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/craftopia/egg-craftopia.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/cryofall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/cryofall/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/cryofall/egg-cryo-fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/cryofall/egg-cryo-fall.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dayz-experimental/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dayz-experimental/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dayz-experimental/egg-dayz-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dayz-experimental/egg-dayz-experimental.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ddnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ddnet/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ddnet/egg-d-d-net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ddnet/egg-d-d-net.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dead_matter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dead_matter/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dead_matter/egg-dead-matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dead_matter/egg-dead-matter.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/egg-don-t-starve-together.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/egg-don-t-starve-together.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/server.caves.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/server.caves.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/server.cluster.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/server.cluster.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/server.master.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/server.master.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/worldgenoverride.caves.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/worldgenoverride.caves.lua -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/dont_starve/worldgenoverride.master.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/dont_starve/worldgenoverride.master.lua -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/eco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/eco/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/eco/egg-eco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/eco/egg-eco.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/empyrion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/empyrion/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/empyrion/egg-empyrion--galactic-survival.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/empyrion/egg-empyrion--galactic-survival.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/enshrouded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/enshrouded/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/enshrouded/egg-enshrouded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/enshrouded/egg-enshrouded.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/enshrouded/enshrouded_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/enshrouded/enshrouded_server.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/fof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/fof/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/fof/egg-fof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/fof/egg-fof.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/frozen_flame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/frozen_flame/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/frozen_flame/egg-frozen-flame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/frozen_flame/egg-frozen-flame.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ground_branch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ground_branch/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/ground_branch/egg-ground-branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/ground_branch/egg-ground-branch.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/hlds_server/rehlds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/hlds_server/rehlds/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/hlds_server/rehlds/egg-custom-re-h-l-d-s-engine-game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/hlds_server/rehlds/egg-custom-re-h-l-d-s-engine-game.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/hlds_server/vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/hlds_server/vanilla/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/hlds_server/vanilla/egg-custom-h-l-d-s-engine-game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/hlds_server/vanilla/egg-custom-h-l-d-s-engine-game.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/holdfast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/holdfast/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/holdfast/egg-holdfast-na-w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/holdfast/egg-holdfast-na-w.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/humanitz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/humanitz/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/humanitz/egg-humanit-z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/humanitz/egg-humanit-z.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/hurtworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/hurtworld/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/hurtworld/egg-hurtworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/hurtworld/egg-hurtworld.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/icarus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/icarus/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/icarus/egg-icarus--dedicated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/icarus/egg-icarus--dedicated.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/insurgency_sandstorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/insurgency_sandstorm/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/insurgency_sandstorm/egg-insurgency--sandstorm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/insurgency_sandstorm/egg-insurgency--sandstorm.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/iosoccer/eggs-iosoccer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/iosoccer/eggs-iosoccer.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/iosoccer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/iosoccer/readme.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/killing_floor_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/killing_floor_2/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/killing_floor_2/egg-killing-floor2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/killing_floor_2/egg-killing-floor2.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/left4dead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/left4dead/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/left4dead/egg-left4dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/left4dead/egg-left4dead.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/left4dead_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/left4dead_2/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/left4dead_2/egg-left4dead_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/left4dead_2/egg-left4dead_2.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/longvinter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/longvinter/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/longvinter/egg-longvinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/longvinter/egg-longvinter.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/modiverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/modiverse/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/modiverse/ServerConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/modiverse/ServerConfiguration.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/modiverse/egg-modiverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/modiverse/egg-modiverse.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/mordhau/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/mordhau/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/mordhau/egg-mordhau-wine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/mordhau/egg-mordhau-wine.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/mordhau/egg-mordhau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/mordhau/egg-mordhau.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/mount_blade_II_bannerlord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/mount_blade_II_bannerlord/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/mount_blade_II_bannerlord/egg-mount--blade-i-i--bannerlord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/mount_blade_II_bannerlord/egg-mount--blade-i-i--bannerlord.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/myth_of_empires/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/myth_of_empires/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/myth_of_empires/egg-myth-of-empires.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/myth_of_empires/egg-myth-of-empires.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/necesse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/necesse/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/necesse/egg-necesse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/necesse/egg-necesse.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/neosvr/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/neosvr/Config.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/neosvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/neosvr/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/neosvr/egg-neos-v-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/neosvr/egg-neos-v-r.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/nmrih/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/nmrih/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/nmrih/egg-nmrih.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/nmrih/egg-nmrih.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/no_love_lost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/no_love_lost/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/no_love_lost/egg-no-love-lost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/no_love_lost/egg-no-love-lost.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/no_one_survived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/no_one_survived/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/no_one_survived/egg-no-one-survived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/no_one_survived/egg-no-one-survived.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/novalife_amboise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/novalife_amboise/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/novalife_amboise/egg-nova--life--amboise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/novalife_amboise/egg-nova--life--amboise.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/onset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/onset/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/onset/egg-onset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/onset/egg-onset.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/open_fortress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/open_fortress/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/open_fortress/egg-open-fortress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/open_fortress/egg-open-fortress.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/open_fortress/gameinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/open_fortress/gameinfo.txt -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/operation_harsh_doorstop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/operation_harsh_doorstop/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/operation_harsh_doorstop/egg-operation-harsh-doorstop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/operation_harsh_doorstop/egg-operation-harsh-doorstop.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/palworld/PalworldServerConfigParser-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/palworld/PalworldServerConfigParser-linux-amd64 -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/palworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/palworld/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/palworld/egg-palworld-proton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/palworld/egg-palworld-proton.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/palworld/egg-palworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/palworld/egg-palworld.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/palworld/winmm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/palworld/winmm.dll -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/pavlov_vr/Game.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/pavlov_vr/Game.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/pavlov_vr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/pavlov_vr/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/pavlov_vr/RconSettings.txt: -------------------------------------------------------------------------------- 1 | Password= 2 | Port= -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/pavlov_vr/egg-pavlov-v-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/pavlov_vr/egg-pavlov-v-r.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/pixark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/pixark/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/pixark/egg-pix-a-r-k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/pixark/egg-pix-a-r-k.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/portal_knights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/portal_knights/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/portal_knights/egg-portal-knights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/portal_knights/egg-portal-knights.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/post_scriptum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/post_scriptum/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/post_scriptum/egg-post-scriptum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/post_scriptum/egg-post-scriptum.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/project_zomboid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/project_zomboid/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/project_zomboid/egg-project-zomboid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/project_zomboid/egg-project-zomboid.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/quake_live/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/quake_live/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/quake_live/egg-quake-live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/quake_live/egg-quake-live.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/resonite/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/resonite/Config.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/resonite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/resonite/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/resonite/egg-resonite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/resonite/egg-resonite.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rising_world/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rising_world/legacy/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rising_world/legacy/egg-rising-world-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rising_world/legacy/egg-rising-world-legacy.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rising_world/unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rising_world/unity/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rising_world/unity/egg-rising-world-unity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rising_world/unity/egg-rising-world-unity.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/risk_of_rain_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/risk_of_rain_2/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/risk_of_rain_2/egg-risk-of-rain2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/risk_of_rain_2/egg-risk-of-rain2.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rust/rust_autowipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rust/rust_autowipe/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rust/rust_autowipe/egg-rust-autowipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rust/rust_autowipe/egg-rust-autowipe.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rust/rust_staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rust/rust_staging/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/rust/rust_staging/egg-rust-staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/rust/rust_staging/egg-rust-staging.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/satisfactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/satisfactory/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/satisfactory/egg-satisfactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/satisfactory/egg-satisfactory.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/scpsl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/scpsl/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/scpsl/dedicated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/scpsl/dedicated/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/scpsl/dedicated/egg-scpsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/scpsl/dedicated/egg-scpsl.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/scpsl/exiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/scpsl/exiled/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/scpsl/exiled/egg-s-c-p--s-l--exiled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/scpsl/exiled/egg-s-c-p--s-l--exiled.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/smalland_survive_the_wilds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/smalland_survive_the_wilds/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/smalland_survive_the_wilds/egg-smalland--survive-the-wilds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/smalland_survive_the_wilds/egg-smalland--survive-the-wilds.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/solace_crafting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/solace_crafting/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/solace_crafting/egg-solace-crafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/solace_crafting/egg-solace-crafting.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/soldat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/soldat/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/soldat/egg-soldat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/soldat/egg-soldat.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/sonsoftheforest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/sonsoftheforest/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/sonsoftheforest/dedicatedserver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/sonsoftheforest/dedicatedserver.cfg -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/sonsoftheforest/egg-sons-of-the-forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/sonsoftheforest/egg-sons-of-the-forest.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/sonsoftheforest/ownerswhitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/sonsoftheforest/ownerswhitelist.txt -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/space_engineers/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/space_engineers/default/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/space_engineers/default/SpaceEngineers-Dedicated.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/space_engineers/default/SpaceEngineers-Dedicated.cfg -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/space_engineers/default/World.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/space_engineers/default/World.zip -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/space_engineers/default/egg-space-engineers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/space_engineers/default/egg-space-engineers.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/space_engineers/torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/space_engineers/torch/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/space_engineers/torch/egg-space-engineers--torch-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/space_engineers/torch/egg-space-engineers--torch-server.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/squad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/squad/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/squad/egg-squad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/squad/egg-squad.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/starbound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/starbound/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/starbound/egg-starbound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/starbound/egg-starbound.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/starbound/starbound_server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/starbound/starbound_server.config -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/stationeers/stationeers_bepinex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/stationeers/stationeers_bepinex/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/stationeers/stationeers_bepinex/egg-stationeers--bep-in-ex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/stationeers/stationeers_bepinex/egg-stationeers--bep-in-ex.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/stationeers/stationeers_vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/stationeers/stationeers_vanilla/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/stationeers/stationeers_vanilla/egg-stationeers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/stationeers/stationeers_vanilla/egg-stationeers.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/stormworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/stormworks/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/stormworks/egg-stormworks--build-and-rescue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/stormworks/egg-stormworks--build-and-rescue.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/subnautica_nitrox_mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/subnautica_nitrox_mod/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/subnautica_nitrox_mod/egg-subnautica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/subnautica_nitrox_mod/egg-subnautica.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/svencoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/svencoop/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/svencoop/egg-sven-co-op.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/svencoop/egg-sven-co-op.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/swords_'n_Magic_and_Stuff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/swords_'n_Magic_and_Stuff/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/swords_'n_Magic_and_Stuff/egg-swords-n-magic-and-stuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/swords_'n_Magic_and_Stuff/egg-swords-n-magic-and-stuff.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/team_fortress_2_classic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/team_fortress_2_classic/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/team_fortress_2_classic/egg-team-fortress-2-classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/team_fortress_2_classic/egg-team-fortress-2-classic.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/terratech_worlds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/terratech_worlds/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/terratech_worlds/egg-terra-tech-worlds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/terratech_worlds/egg-terra-tech-worlds.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/the_forest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/the_forest/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/the_forest/egg-the-forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/the_forest/egg-the-forest.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/the_isle/evrima/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/the_isle/evrima/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/the_isle/evrima/egg-the-isle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/the_isle/evrima/egg-the-isle.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/thefront/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/thefront/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/thefront/egg-the-front.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/thefront/egg-the-front.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/tower_unite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/tower_unite/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/tower_unite/egg-tower-unite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/tower_unite/egg-tower-unite.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/ats-files/server_packages.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/ats-files/server_packages.dat -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/ats-files/server_packages.sii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/ats-files/server_packages.sii -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/egg-american-truck-simulator-dedicated-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/american-truck-simulator/egg-american-truck-simulator-dedicated-server.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/egg-euro-truck-simulator2-dedicated-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/egg-euro-truck-simulator2-dedicated-server.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/ets2-files/server_packages.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/ets2-files/server_packages.dat -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/ets2-files/server_packages.sii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/euro-truck-simulator2/ets2-files/server_packages.sii -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/truck-simulator/server_config.sii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/truck-simulator/server_config.sii -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/unturned/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/unturned/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/unturned/egg-unturned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/unturned/egg-unturned.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/v_rising/v_rising_bepinex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/v_rising/v_rising_bepinex/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/v_rising/v_rising_bepinex/egg-v-rising-bep-in-ex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/v_rising/v_rising_bepinex/egg-v-rising-bep-in-ex.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/v_rising/v_rising_vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/v_rising/v_rising_vanilla/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/v_rising/v_rising_vanilla/egg-v-rising.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/v_rising/v_rising_vanilla/egg-v-rising.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/valheim/valheim_bepinex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/valheim/valheim_bepinex/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/valheim/valheim_bepinex/egg-valheim-bep-i-nex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/valheim/valheim_bepinex/egg-valheim-bep-i-nex.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/valheim/valheim_plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/valheim/valheim_plus/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/valheim/valheim_plus/egg-valheim-plus-mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/valheim/valheim_plus/egg-valheim-plus-mod.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/valheim/valheim_vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/valheim/valheim_vanilla/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/valheim/valheim_vanilla/egg-valheim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/valheim/valheim_vanilla/egg-valheim.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/vein/Game.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/vein/Game.ini -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/vein/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/vein/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/vein/egg-v-e-i-n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/vein/egg-v-e-i-n.json -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/wurm_unlimited/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/wurm_unlimited/README.md -------------------------------------------------------------------------------- /game_eggs/steamcmd_servers/wurm_unlimited/egg-wurm-unlimited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/steamcmd_servers/wurm_unlimited/egg-wurm-unlimited.json -------------------------------------------------------------------------------- /game_eggs/teeworlds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/teeworlds/README.md -------------------------------------------------------------------------------- /game_eggs/teeworlds/autoexec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/teeworlds/autoexec.cfg -------------------------------------------------------------------------------- /game_eggs/teeworlds/egg-teeworlds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/teeworlds/egg-teeworlds.json -------------------------------------------------------------------------------- /game_eggs/teeworlds/storage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/teeworlds/storage.cfg -------------------------------------------------------------------------------- /game_eggs/terraria/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/README.md -------------------------------------------------------------------------------- /game_eggs/terraria/tmodloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/tmodloader/README.md -------------------------------------------------------------------------------- /game_eggs/terraria/tmodloader/egg-t-modloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/tmodloader/egg-t-modloader.json -------------------------------------------------------------------------------- /game_eggs/terraria/tshock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/tshock/README.md -------------------------------------------------------------------------------- /game_eggs/terraria/tshock/egg-tshock-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/tshock/egg-tshock-legacy.json -------------------------------------------------------------------------------- /game_eggs/terraria/tshock/egg-tshock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/tshock/egg-tshock.json -------------------------------------------------------------------------------- /game_eggs/terraria/vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/vanilla/README.md -------------------------------------------------------------------------------- /game_eggs/terraria/vanilla/egg-terraria-vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/terraria/vanilla/egg-terraria-vanilla.json -------------------------------------------------------------------------------- /game_eggs/tycoon_games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/README.md -------------------------------------------------------------------------------- /game_eggs/tycoon_games/openrct2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/openrct2/README.md -------------------------------------------------------------------------------- /game_eggs/tycoon_games/openrct2/egg-openrct2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/openrct2/egg-openrct2.json -------------------------------------------------------------------------------- /game_eggs/tycoon_games/openrct2/save.park: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/openrct2/save.park -------------------------------------------------------------------------------- /game_eggs/tycoon_games/openttd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/openttd/README.md -------------------------------------------------------------------------------- /game_eggs/tycoon_games/openttd/egg-open-t-t-d-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/openttd/egg-open-t-t-d-server.json -------------------------------------------------------------------------------- /game_eggs/tycoon_games/openttd/openttd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/tycoon_games/openttd/openttd.cfg -------------------------------------------------------------------------------- /game_eggs/urbanterror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/urbanterror/README.md -------------------------------------------------------------------------------- /game_eggs/urbanterror/egg-urban-terror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/urbanterror/egg-urban-terror.json -------------------------------------------------------------------------------- /game_eggs/veloren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/veloren/README.md -------------------------------------------------------------------------------- /game_eggs/veloren/egg-veloren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/veloren/egg-veloren.json -------------------------------------------------------------------------------- /game_eggs/veloren/settings.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/veloren/settings.ron -------------------------------------------------------------------------------- /game_eggs/vintage_story/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/vintage_story/README.md -------------------------------------------------------------------------------- /game_eggs/vintage_story/egg-vintage-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/vintage_story/egg-vintage-story.json -------------------------------------------------------------------------------- /game_eggs/wine/generic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/wine/generic/README.md -------------------------------------------------------------------------------- /game_eggs/wine/generic/egg-wine-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/wine/generic/egg-wine-generic.json -------------------------------------------------------------------------------- /game_eggs/xonotic/xonotic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/xonotic/xonotic/README.md -------------------------------------------------------------------------------- /game_eggs/xonotic/xonotic/egg-xonotic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/game_eggs/xonotic/xonotic/egg-xonotic.json -------------------------------------------------------------------------------- /generic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/README.md -------------------------------------------------------------------------------- /generic/bun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/bun/README.md -------------------------------------------------------------------------------- /generic/bun/egg-bun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/bun/egg-bun.json -------------------------------------------------------------------------------- /generic/c#/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/c#/README.md -------------------------------------------------------------------------------- /generic/c#/egg-generic-c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/c#/egg-generic-c.json -------------------------------------------------------------------------------- /generic/dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/dart/README.md -------------------------------------------------------------------------------- /generic/dart/egg-dart-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/dart/egg-dart-generic.json -------------------------------------------------------------------------------- /generic/deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/deno/README.md -------------------------------------------------------------------------------- /generic/deno/egg-deno-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/deno/egg-deno-generic.json -------------------------------------------------------------------------------- /generic/elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/elixir/README.md -------------------------------------------------------------------------------- /generic/elixir/egg-elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/elixir/egg-elixir.json -------------------------------------------------------------------------------- /generic/golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/golang/README.md -------------------------------------------------------------------------------- /generic/golang/egg-golang-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/golang/egg-golang-generic.json -------------------------------------------------------------------------------- /generic/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/java/README.md -------------------------------------------------------------------------------- /generic/java/egg-java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/java/egg-java.json -------------------------------------------------------------------------------- /generic/lua/luvit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/lua/luvit/README.md -------------------------------------------------------------------------------- /generic/lua/luvit/egg-luvit-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/lua/luvit/egg-luvit-generic.json -------------------------------------------------------------------------------- /generic/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/nodejs/README.md -------------------------------------------------------------------------------- /generic/nodejs/egg-node-js-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/nodejs/egg-node-js-generic.json -------------------------------------------------------------------------------- /generic/nodemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/nodemon/README.md -------------------------------------------------------------------------------- /generic/nodemon/egg-nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/nodemon/egg-nodemon.json -------------------------------------------------------------------------------- /generic/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/python/README.md -------------------------------------------------------------------------------- /generic/python/egg-python-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/python/egg-python-generic.json -------------------------------------------------------------------------------- /generic/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/rust/README.md -------------------------------------------------------------------------------- /generic/rust/egg-rust-generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/generic/rust/egg-rust-generic.json -------------------------------------------------------------------------------- /minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/minecraft/README.md -------------------------------------------------------------------------------- /minecraft/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/minecraft/java/README.md -------------------------------------------------------------------------------- /minecraft/java/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/minecraft/java/server.properties -------------------------------------------------------------------------------- /monitoring/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/monitoring/loki/README.md -------------------------------------------------------------------------------- /monitoring/loki/egg-loki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/monitoring/loki/egg-loki.json -------------------------------------------------------------------------------- /monitoring/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/monitoring/prometheus/README.md -------------------------------------------------------------------------------- /monitoring/prometheus/egg-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/monitoring/prometheus/egg-prometheus.json -------------------------------------------------------------------------------- /scripts/download_link_validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/scripts/download_link_validator.sh -------------------------------------------------------------------------------- /scripts/file_unpacker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/scripts/file_unpacker.sh -------------------------------------------------------------------------------- /scripts/git_cloner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/scripts/git_cloner.sh -------------------------------------------------------------------------------- /scripts/github_release_grabber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/scripts/github_release_grabber.sh -------------------------------------------------------------------------------- /scripts/steamcmd_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/scripts/steamcmd_installer.sh -------------------------------------------------------------------------------- /software/5e-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/5e-tools/README.md -------------------------------------------------------------------------------- /software/5e-tools/egg-5e-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/5e-tools/egg-5e-tools.json -------------------------------------------------------------------------------- /software/code-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/code-server/README.md -------------------------------------------------------------------------------- /software/code-server/egg-code--server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/code-server/egg-code--server.json -------------------------------------------------------------------------------- /software/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/elasticsearch/README.md -------------------------------------------------------------------------------- /software/elasticsearch/egg-elasticsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/elasticsearch/egg-elasticsearch.json -------------------------------------------------------------------------------- /software/foldingathome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/foldingathome/README.md -------------------------------------------------------------------------------- /software/foldingathome/egg-folding--home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/foldingathome/egg-folding--home.json -------------------------------------------------------------------------------- /software/forgejo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/forgejo/README.md -------------------------------------------------------------------------------- /software/forgejo/egg-forgejo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/forgejo/egg-forgejo.json -------------------------------------------------------------------------------- /software/gitea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/gitea/README.md -------------------------------------------------------------------------------- /software/gitea/egg-gitea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/gitea/egg-gitea.json -------------------------------------------------------------------------------- /software/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/grafana/README.md -------------------------------------------------------------------------------- /software/grafana/egg-grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/grafana/egg-grafana.json -------------------------------------------------------------------------------- /software/haste-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/haste-server/README.md -------------------------------------------------------------------------------- /software/haste-server/egg-haste-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/haste-server/egg-haste-server.json -------------------------------------------------------------------------------- /software/languagetool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/languagetool/README.md -------------------------------------------------------------------------------- /software/languagetool/egg-languagetool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/languagetool/egg-languagetool.json -------------------------------------------------------------------------------- /software/meilisearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/meilisearch/README.md -------------------------------------------------------------------------------- /software/meilisearch/egg-meilisearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/meilisearch/egg-meilisearch.json -------------------------------------------------------------------------------- /software/owncast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/owncast/README.md -------------------------------------------------------------------------------- /software/owncast/egg-owncast-online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/owncast/egg-owncast-online.json -------------------------------------------------------------------------------- /software/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/rabbitmq/README.md -------------------------------------------------------------------------------- /software/rabbitmq/egg-rabbit-m-q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/rabbitmq/egg-rabbit-m-q.json -------------------------------------------------------------------------------- /software/rabbitmq/rabbitmq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/rabbitmq/rabbitmq.conf -------------------------------------------------------------------------------- /software/rathole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/rathole/README.md -------------------------------------------------------------------------------- /software/rathole/egg-rathole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/rathole/egg-rathole.json -------------------------------------------------------------------------------- /software/reposilite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/reposilite/README.md -------------------------------------------------------------------------------- /software/reposilite/egg-reposilite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/reposilite/egg-reposilite.json -------------------------------------------------------------------------------- /software/uptime-kuma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/uptime-kuma/README.md -------------------------------------------------------------------------------- /software/uptime-kuma/egg-uptime-kuma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/uptime-kuma/egg-uptime-kuma.json -------------------------------------------------------------------------------- /software/yarr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/yarr/README.md -------------------------------------------------------------------------------- /software/yarr/egg-yarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/software/yarr/egg-yarr.json -------------------------------------------------------------------------------- /storage/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/storage/minio/README.md -------------------------------------------------------------------------------- /storage/minio/egg-minio-s3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/storage/minio/egg-minio-s3.json -------------------------------------------------------------------------------- /storage/minio/minio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/storage/minio/minio.sh -------------------------------------------------------------------------------- /storage/sftp_storage_share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/storage/sftp_storage_share/README.md -------------------------------------------------------------------------------- /storage/sftp_storage_share/egg-sftp-storage-share.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/storage/sftp_storage_share/egg-sftp-storage-share.json -------------------------------------------------------------------------------- /voice_servers/lavalink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/lavalink/README.md -------------------------------------------------------------------------------- /voice_servers/lavalink/egg-lavalink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/lavalink/egg-lavalink.json -------------------------------------------------------------------------------- /voice_servers/teamspeak_ARM64/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/teamspeak_ARM64/Readme.md -------------------------------------------------------------------------------- /voice_servers/teamspeak_ARM64/egg-teamspeak3-arm64-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/teamspeak_ARM64/egg-teamspeak3-arm64-server.json -------------------------------------------------------------------------------- /voice_servers/teaspeak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/teaspeak/README.md -------------------------------------------------------------------------------- /voice_servers/teaspeak/egg-tea-speak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/teaspeak/egg-tea-speak.json -------------------------------------------------------------------------------- /voice_servers/ts3_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/ts3_manager/README.md -------------------------------------------------------------------------------- /voice_servers/ts3_manager/egg-t-s3-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/HEAD/voice_servers/ts3_manager/egg-t-s3-manager.json --------------------------------------------------------------------------------