mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-21 11:36:43 +00:00
34 lines
1.2 KiB
Markdown
34 lines
1.2 KiB
Markdown
# [Live demo](https://muchassemblyrequired.com)
|
|
Program the 8086-like microprocessor of a robot in a grid-based multiplayer world. The game is web based so no installation is required.
|
|
In its current state, players can walk around the game universe and collect Biomass blobs & Iron/copper ore using the online code editor.
|
|
|
|

|
|
|
|
Wiki: [GitHub](https://github.com/simon987/Much-Assembly-Required/wiki)
|
|
Chat: [Slack](https://join.slack.com/t/muchassemblyrequired/shared_invite/enQtMjY3Mjc1OTUwNjEwLTkyOTIwOTA5OGY4MDVlMGI4NzM5YzlhMWJiMGY1OWE2NjUxODQ1NWQ1YTcxMTA1NGZkYzNjYzMyM2E1ODdmNzg)
|
|
|
|
# Deploying the server (Ubuntu or other Debian derivative)
|
|
|
|
Note: You can find the frontend [here](https://github.com/simon987/Much-Assembly-Required)
|
|
|
|
|
|
## Linux (Ubuntu 16.04)
|
|
```bash
|
|
# Install tools
|
|
sudo apt install git maven openjdk-8-jdk
|
|
|
|
# Obtain source files
|
|
git clone https://github.com/simon987/Much-Assembly-Required.git
|
|
|
|
# Build
|
|
cd Much-Assembly-Required
|
|
mvn package
|
|
|
|
# Run
|
|
cd target
|
|
java -jar server-1.2a.jar
|
|
```
|
|
|
|
## Windows
|
|
Coming eventually...
|