Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CamHenlin/Roguish
open source, multiplayer, extensible rogue-like
https://github.com/CamHenlin/Roguish
Last synced: about 1 month ago
JSON representation
open source, multiplayer, extensible rogue-like
- Host: GitHub
- URL: https://github.com/CamHenlin/Roguish
- Owner: CamHenlin
- License: bsd-3-clause
- Created: 2015-02-08T02:25:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-12T22:39:51.000Z (almost 10 years ago)
- Last Synced: 2024-08-02T06:17:34.183Z (4 months ago)
- Language: HTML
- Homepage: http://roguish.rocks/
- Size: 7.06 MB
- Stars: 88
- Watchers: 17
- Forks: 32
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-open-source-games - Roguish - RPG/Rogue-like game created in JavaScript. (Browser-Based / RPG)
README
# Roguish Readme
## How to play latest demo
Go to [the demo site](http://henlin.org/roguish/)## How to clone and play locally
### On Macintosh and Linux
Open a terminal and run the commands:```bash
git clone https://github.com/CamHenlin/roguish.gitcd roguish
python -m SimpleHTTPServer 8000
```
And then point your favorite web browser at [http://localhost:8000](http://localhost:8000) or [http://localhost:8000/devindex.html](http://localhost:8000/devindex.html)
## How to build a new game.min.js after modifying game code
### On Macintosh and Linux
Open a terminal and run the commands:```bash
git clone https://github.com/CamHenlin/roguish.gitcd roguish/build
./build.sh
```#### For further instructions, see documentation on Roguish Assembla page!