{"id":48199650,"url":"https://github.com/dimspell/gladiator","last_synced_at":"2026-04-04T18:19:25.480Z","repository":{"id":243558300,"uuid":"809286822","full_name":"dimspell/gladiator","owner":"dimspell","description":"Interface to play the Dispel Multiplayer game","archived":false,"fork":false,"pushed_at":"2026-01-14T11:21:15.000Z","size":1984,"stargazers_count":3,"open_issues_count":16,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-14T15:44:16.074Z","etag":null,"topics":["dispel","dispel-multi","fyne","golang","multiplayer-game-server"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dimspell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-02T09:04:34.000Z","updated_at":"2025-10-08T19:45:18.000Z","dependencies_parsed_at":"2024-12-06T19:39:24.704Z","dependency_job_id":"666c8e27-c951-4085-b877-57dc9b931d4c","html_url":"https://github.com/dimspell/gladiator","commit_stats":null,"previous_names":["dispel-re/multi","dimspell/gladiator"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/dimspell/gladiator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimspell%2Fgladiator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimspell%2Fgladiator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimspell%2Fgladiator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimspell%2Fgladiator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dimspell","download_url":"https://codeload.github.com/dimspell/gladiator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimspell%2Fgladiator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31408037,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dispel","dispel-multi","fyne","golang","multiplayer-game-server"],"created_at":"2026-04-04T18:19:24.945Z","updated_at":"2026-04-04T18:19:25.449Z","avatar_url":"https://github.com/dimspell.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gladiator\n\nThis repository is a monorepo that contains multiple projects that helps to play a Dispel Multiplayer game.\n\n* **console** - A main server handling the state preservation and communication with the clients.\n* **backend** - A backend server that handles the commands send by the `DispelMulti.exe`. It exchanges the data with the **console**.\n* **launcher** - A launcher for the game. It is a GUI app that is responsible for resolving all problems with interconnecting the game, the **console** and the **backend**.\n\n## Usage\n\n1. After **Dispel Colosseum** installation, open `regedit.exe` to find `HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\AbalonStudio\\Dispel\\Multi` and replace `Server` key with `localhost` as a new value.\n\n```diff\n- HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\AbalonStudio\\Dispel\\Multi\\Server dispel.e2soft.com\n+ HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\AbalonStudio\\Dispel\\Multi\\Server localhost\n```\n\n## Troubleshooting\n\n### Windows \n\n#### Cannot start the backend server\n\n\u003e \"An attempt was made to access a socket in a way forbidden by its access permissions.\"\n\nRestart of the Host Network Service on Windows might fix this error. Open an elevated (with admin permissions) Command Prompt and run:\n\n```console\nnet stop hns\nnet start hns\n```\n\n### Linux  \n\n#### Cannot bind the 127.0.0.X for the relayed hosts\n\n```bash\nip addr add 127.0.0.2/8 dev lo\n```\n\n#### QUIC error about the buffer being too small\n\nIn the backend logs, you might notice the following fragment:\n\n\u003e ... See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for details\n\nOn Linux you need to extend the memory for the buffer. \nNote that these settings are not persisted across reboots.\n\n```bash\nsysctl -w net.core.rmem_max=7500000\nsysctl -w net.core.wmem_max=7500000\n```\n\n\n### MacOS\n\n#### Cannot bind the 127.0.0.X for the relayed hosts\n\nNote that these settings are not persisted across reboots.\n\n```bash\nsudo ifconfig lo0 alias 127.0.0.2 netmask 0xff000000\nsudo ifconfig lo0 alias 127.0.0.3 netmask 0xff000000\nsudo ifconfig lo0 alias 127.0.0.4 netmask 0xff000000\n# ...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimspell%2Fgladiator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimspell%2Fgladiator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimspell%2Fgladiator/lists"}