{"id":21483436,"url":"https://github.com/cybershadow/mywormnet2","last_synced_at":"2026-01-03T07:56:38.162Z","repository":{"id":12588695,"uuid":"15259458","full_name":"CyberShadow/MyWormNET2","owner":"CyberShadow","description":"WormNET server written in D","archived":false,"fork":false,"pushed_at":"2024-01-17T12:35:32.000Z","size":40,"stargazers_count":12,"open_issues_count":1,"forks_count":3,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-16T22:52:52.566Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"D","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CyberShadow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-12-17T16:19:15.000Z","updated_at":"2025-03-13T14:13:01.000Z","dependencies_parsed_at":"2022-08-28T11:30:46.122Z","dependency_job_id":null,"html_url":"https://github.com/CyberShadow/MyWormNET2","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CyberShadow%2FMyWormNET2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CyberShadow%2FMyWormNET2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CyberShadow%2FMyWormNET2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CyberShadow%2FMyWormNET2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CyberShadow","download_url":"https://codeload.github.com/CyberShadow/MyWormNET2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244006303,"owners_count":20382444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-23T12:47:28.327Z","updated_at":"2026-01-03T07:56:38.122Z","avatar_url":"https://github.com/CyberShadow.png","language":"D","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is MyWormNET2, a [WormNET](http://worms2d.info/WormNET) server written in the [D Programming Language](http://dlang.org/).\n\n# Setup instructions\n\n## Install D\n\nYou'll need a D compiler to compile MyWormNET2.\n\nFor Windows, OS X, and Debian/RPM-based Linux distributions, you can use one of the installers/packages from the [D website](http://dlang.org/download.html).\n\nOn POSIX systems, you can also use the install script:\n\n    curl -fsS https://dlang.org/install.sh | bash -s dmd\n\n## Get MyWormNET2\n\n### Get MyWormNET2 using Dub\n\nUsing `dub` (included with DMD) is the simplest method to get MyWormNET2 running.\n\nIn a terminal / command prompt, run:\n\n    dub fetch mywormnet2\n\nMyWormNET2 will be downloaded to Dub's package directory (`$HOME/.dub/packages/mywormnet2-*/mywormnet2/`).\n\n### Get MyWormNET2 using Git\n\nThis will fetch MyWormNET2 and its dependencies:\n\n    git clone --recursive https://github.com/CyberShadow/MyWormNET2\n    cd MyWormNET2\n\n### Get MyWormNET2 manually\n\nYou can also download and unpack the source code using zip files (not recommended):\n\n   1. Download [MyWormNET2](https://github.com/CyberShadow/MyWormNET2/archive/v1.0.0.zip)\n      and the [ae library](https://github.com/CyberShadow/ae/archive/v0.0.2097.zip).\n   2. Unpack `MyWormNET2-v1.0.0.zip` and rename the\n      `MyWormNET2-v0.0.2097` directory to `MyWormNET2`.\n   3. Unpack `ae-v0.0.2097.zip` and move the contents of the\n      `ae-v0.0.2097` directory to the empty `MyWormNET2\\ae` directory.\n\nCommand-line instructions (again, not recommended):\n\n    wget https://github.com/CyberShadow/MyWormNET2/archive/v1.0.0.zip\n    unzip v1.0.0.zip\n    rm v1.0.0.zip\n    mv MyWormNET2-v1.0.0 MyWormNET2\n    cd MyWormNET2\n    rmdir ae\n    wget https://github.com/CyberShadow/ae/archive/v0.0.2097.zip\n    unzip v0.0.2097.zip\n    rm v0.0.2097.zip\n    mv ae-v0.0.2097 ae\n\n## Configure MyWormNET2\n\nCopy the file `mywormnet2-sample.ini` to `mywormnet2.ini`, and edit it accordingly.\n\nMyWormNET2 will look for its files in the current directory. See the comments for explanations of what the various options do.\n\n## Compile and run MyWormNET2\n\n### Using dub\n\nTo build and run MyWormNET2 with Dub, run:\n\n    dub run mywormnet2\n\nIf you'd like to just build an executable, use `build` instead of `run`:\n\n    dub build mywormnet2\n\n### Using rdmd\n\nTo build and run MyWormNET2 with `rdmd`, run:\n\n    rdmd mywormnet2\n\nIf you'd like to just build an executable, use `--build-only`:\n\n    rdmd --build-only mywormnet2\n\n## Configure Worms Armageddon\n\nIn order to connect to your MyWormNET2 server, players need to customize their `ServerList.htm` file. The file is found by default at: `graphics\\ServerLobby\\ServerList.htm`.\n\nAlternatively, you could get your server listed in the [WormNET server list](http://worms.thecybershadow.net/wormnet/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcybershadow%2Fmywormnet2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcybershadow%2Fmywormnet2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcybershadow%2Fmywormnet2/lists"}