Skip to content

Commit

Permalink
Fix README.
Browse files Browse the repository at this point in the history
  • Loading branch information
doughsay committed May 21, 2017
1 parent 160a887 commit 9b2cb7a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RoomJS 3.x Game Engine
======================
[![Travis](https://img.shields.io/travis/doughsay/room.js.svg?style=flat-square)](https://travis-ci.org/doughsay/room.js) [![Code Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard) [![Codecov](https://img.shields.io/codecov/c/github/doughsay/room.js.svg?style=flat-square)](https://codecov.io/gh/doughsay/room.js) [![David](https://img.shields.io/david/doughsay/room.js.svg?style=flat-square)](https://david-dm.org/doughsay/room.js) [![David](https://img.shields.io/david/dev/doughsay/room.js.svg?style=flat-square)](https://david-dm.org/doughsay/room.js?type=dev)
[![Travis](https://img.shields.io/travis/doughsay/room.js.svg?style=flat-square)](https://travis-ci.org/doughsay/room.js) [![Code Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://standardjs.com/) [![Codecov](https://img.shields.io/codecov/c/github/doughsay/room.js.svg?style=flat-square)](https://codecov.io/gh/doughsay/room.js) [![David](https://img.shields.io/david/doughsay/room.js.svg?style=flat-square)](https://david-dm.org/doughsay/room.js) [![David](https://img.shields.io/david/dev/doughsay/room.js.svg?style=flat-square)](https://david-dm.org/doughsay/room.js?type=dev)

This repository contains the RoomJS game engine (or server).

Expand All @@ -17,9 +17,9 @@ Clone the repository or download a ZIP archive.

Installation steps are straightforward:

1. `npm install`
1. `yarn install`
2. Create a `.env` file to customize the server's configuration. See `.env.development` for examples and explanations.
3. `npm start`
3. `yarn start`

To interact with the server, you must use a web client application. The standard [client](https://github.com/doughsay/room.js-client) is provided in a separate repository.

Expand Down
2 changes: 1 addition & 1 deletion demo/users.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"password": "wqM8HoMtrWOi::U4lJqB1jJZDYZM1V8BUysXgH1WplZoKUWPqa8jTo::30::10000",
"createdAt": "2016-09-17T17:58:43.527Z",
"updatedAt": "2016-09-17T17:58:43.527Z",
"lastLoginAt": "2016-09-17T18:28:04.935Z"
"lastLoginAt": "2017-05-21T21:57:10.082Z"
}
}
10 changes: 5 additions & 5 deletions demo/world/lib/player/player.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"file": "announceSay.js"
},
"chat": {
"verb": true,
"file": "chat.js",
"verb": true,
"pattern": "ch*at",
"dobjarg": "any",
"preparg": "any",
"iobjarg": "any"
},
"inventory": {
"verb": true,
"file": "inventory.js",
"verb": true,
"pattern": "i*nventory",
"dobjarg": "none",
"preparg": "none",
Expand All @@ -43,8 +43,8 @@
"file": "renderPrompt.js"
},
"say": {
"verb": true,
"file": "say.js",
"verb": true,
"pattern": "say \"",
"dobjarg": "any",
"preparg": "any",
Expand All @@ -55,16 +55,16 @@
"file": "setMode.js"
},
"who": {
"verb": true,
"file": "who.js",
"verb": true,
"pattern": "who",
"dobjarg": "none",
"preparg": "none",
"iobjarg": "none"
},
"readHelp": {
"verb": true,
"file": "readHelp.js",
"verb": true,
"pattern": "h*elp ?",
"dobjarg": "any",
"preparg": "none",
Expand Down
20 changes: 20 additions & 0 deletions demo/world/players/wizard/wizard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "Wizard",
"aliases": [],
"traitIds": [
"lib_player"
],
"locationId": null,
"userId": "root",
"properties": {
"programmer": {
"value": true
},
"previousLocation": {
"ref": "areas_city_southstreet1"
},
"mode": {
"ref": "modes_playmode"
}
}
}

0 comments on commit 9b2cb7a

Please sign in to comment.