Skip to content

Commit

Permalink
Update documentation7
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyD committed Jan 16, 2014
1 parent ba4d943 commit 16a3222
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Skynet

## Installation

- [Install mineflayer] (https://github.com/superjoe30/mineflayer) (`npm install mineflayer`)
- Install moment (`npm install moment`)
- Install mysql (`npm install mysql`)
- Install async (`npm install async`)
- Create the database using the [following code] (http://sqlfiddle.com/#!2/32e4e9):
* [Install mineflayer] (https://github.com/superjoe30/mineflayer) (`npm install mineflayer`)
* Install moment (`npm install moment`)
* Install mysql (`npm install mysql`)
* Install async (`npm install async`)
* Create the database using the [following code] (http://sqlfiddle.com/#!2/32e4e9):

```sql

Expand Down Expand Up @@ -63,7 +63,7 @@ ALTER TABLE `session`
```
- Update Skynet.js with your own MySQL connection settings:

```
```node
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
Expand All @@ -73,17 +73,17 @@ ALTER TABLE `session`
connection.connect();
```

- Update Skynet.js with your own Minecraft server settings:
* Update Skynet.js with your own Minecraft server settings:

```
```node
var options = {
host: "mc.civcraft.vg", // optional
port: 25565, // optional
username: "", // email and password are required only for
password: "", // online-mode=true servers
};
```
- If the server you are connecting to uses the plugin Herochat to manage its chat, overwrite
* If the server you are connecting to uses the plugin Herochat to manage its chat, overwrite
mineflayer/lib/plugins/chat.js with [patch/chat.js] (https://github.com/JonnyD/Skynet/blob/master/patch/chat.js)
-

Created by [Jonathan Devine](http://jonnydevine.com)

0 comments on commit 16a3222

Please sign in to comment.