A homemade reproduction of the VintageStory Master Server as a Django app.
Project description
VintageStory MasterServer
A homemade reproduction of the VintageStory Master Server as a Django app, making the server list available to the rest of your project.
What is a "master server"? It's what allows the server browser to work. Essentially a catalogue that game servers register with so players can discover them.
Why? Besides haunting some individuals on the VS Discord server? Because I can. Personally, I use this to show a marker on my personal website for when my game server is online. The limit is merely your imagination.
Why not Python 3.xyz? More than likely this will work on your Python version, I've just not tested it. Please tell me if it works for you!
Installation
pip install vintagestory-masterserver
Add to your installed apps in project/settings.py:
INSTALLED_APPS = [
...,
'vintagestory_masterserver',
]
Modify project/urls.py to add the urls:
urlpatterns = [
...,
path("vsmaster/", include("vsmaster.urls"))
]
Obviously you can change "vsmaster/" to your preferred choice, but be aware this readme will use this in all examples.
Please remember to then run python manage.py makemigrations and migrate.
Usage
Verify it is working:
curl http://127.0.0.1:8000/vsmaster/list
example output:
{"status": "ok", "data": [{"serverName": "VintageStory Server", "serverIP": "127.0.0.1:42420", "playstyle": {"id": "surviveandbuild", "langCode": "surviveandbuild-bands"}, "Mods": [{"id": "game", "version": "1.20.3"}, {"id": "betterruins", "version": "0.4.6"}], "maxPlayers": 16, "gameVersion": "1.20.3", "hasPassword": true, "whitelisted": true, "gameDescription": "A Vintage Story Server"}]}
Get a list of all servers with heartbeats within the last 6 minutes:
servers = VSServer.objects.filter(last_heartbeat__gte=timezone.now()-timezone.timedelta(minutes=6))
Modifying game server config
In serverconfig.json, modify the MasterserverUrl line to point to your base url.
e.g. "MasterserverUrl": "http://127.0.0.1:8000/vsmaster/".
The location of the config file will depend on your operating system and the particulars of your set up, but if you're reading this I sure hope you've figured that out already.
Modifying game client config
There is no in-game UI to change this so you'll need to locate your settings file.
On Windows, this defaults to %APPDATA%\VintageStoryData\clientsettings.json.
Change the masterserverUrl line to direct to your own root url, e.g.: "masterserverUrl": "http://127.0.0.1:8000/vsmaster/"
n.b. doing this will obviously prevent you from seeing the normal public server list in-game. You may still connect to any server for which you have the address. You can always change it back later.
Background
This API attempts to replicate everything I could observe the game server and client querying, and the sort of responses I could get from the official master server.
I should say I had some light assistance/encouragement from a couple of strange people in the official VintageStory Discord guild whilst figuring this out.
Contributing
While I've tried to imagine the sorts of odd situations that could cause errors and test/correct them to match the real server's behaviour, I will surely have missed something. If you find something behaving wrongly please do raise an issue or pull request!
Also, if you have any idea how to write proper tests, that would be grand.
Thank you.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vintagestory_masterserver-1.0.2.tar.gz.
File metadata
- Download URL: vintagestory_masterserver-1.0.2.tar.gz
- Upload date:
- Size: 45.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b494ede48fa0f166374b0ca062cc3980c96bf26a3dfd637c490d552b8170db1
|
|
| MD5 |
db07152dae7b4373dfde4dabd1704227
|
|
| BLAKE2b-256 |
62dd67d26df0450b5c029314a84d3893bb9b42c8a4a9ec5104334a9321dece6f
|
File details
Details for the file vintagestory_masterserver-1.0.2-py3-none-any.whl.
File metadata
- Download URL: vintagestory_masterserver-1.0.2-py3-none-any.whl
- Upload date:
- Size: 34.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cadb4c8da404b8a67043fed8238c12756c70b00d0dd3603635b71d93c0294c07
|
|
| MD5 |
193201b4be7e4fb4282e600567bfe5d6
|
|
| BLAKE2b-256 |
01d94790db92f4c2c3643c578ec440efabc7669ce461317dfd30d29f4fa4d39f
|