• Stars
    star
    107
  • Rank 322,333 (Top 7 %)
  • Language
    C#
  • License
    MIT License
  • Created almost 6 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A v.95.1 Mushroom game server emulator written in C# .NET

Edelstein Build

A v.95.1 Mushroom game server emulator written in C#.

🚀 Getting started

✨ Usage

Prerequisites

Download a release

  1. Check the releases tab and download the correct bundle based on your OS!

Download required assets

  1. Download the data from Server.NX
  2. Download the scripts from Edelstein.lua or Server.Scripts (for older builds)
  3. Unzip both into the data and scripts folder respectively

Update configuration and migrations

  1. Edit the appsettings.json file to the appropriate settings
  2. Run the scripts in with the migrate prefix in sequence

Running the server

  1. Run the Edelstein.Daemon.Server executable

📦 Docker

Download required assets

  1. Download the data from Server.NX
  2. Download the scripts from Edelstein.lua or Server.Scripts (for older builds)
  3. Unzip both into the data and scripts folder respectively

Running docker compose up

  1. Run the HOST=127.0.0.1 docker compose up command
  2. Do substitute or omit the HOST environment key accordingly

🏗️ Builds

A nightly build is published at 00:00 UTC when there are changes to the 'dev' branch.

  • Executables are available under releases tab with the nightly tag
  • Protocol and Common libraries are pushed to packages

Setting up your project for Github Packages

  1. Create a Personal Access Token with the 'read:packages' scope
  2. Create a nuget.config file on your project root with the following contents:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <packageSources>
        <clear />
        <add key="github" value="https://nuget.pkg.github.com/Kaioru/index.json" />
    </packageSources>
    <packageSourceCredentials>
        <github>
            <add key="Username" value="GITHUB_USERNAME" />
            <add key="ClearTextPassword" value="GITHUB_PERSONAL_ACCESS_TOKEN" />
        </github>
    </packageSourceCredentials>
</configuration>
  1. Remember to set your Github Username and Personal Access Token!

Check the here for more on how to setup the NuGet registry.

📦 Extra Stuff

⭐️ Acknowledgements

  • Rebirth - lot's of referencing from here.
  • Destiny - even more referencing from here.