From 96ef26a21bc064cd60027b9590d90bc749e95a31 Mon Sep 17 00:00:00 2001 From: mhsjlw Date: Sat, 28 Nov 2015 07:26:36 -0500 Subject: [PATCH] Update README.md --- src/plugins/README.md | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/src/plugins/README.md b/src/plugins/README.md index 9e4ee74..20fda8b 100644 --- a/src/plugins/README.md +++ b/src/plugins/README.md @@ -1,21 +1,20 @@ -## Usage +Installing plugins +====================== -Drag plugins in this folder. +It's as easy as drag-and-drop! Just follow the instructions! + +## Installing plugins +1. Just drag it into the plugins folder! ## Creating Plugin - -1) Create folder. - -2) Create your index.js inside the folder. - -3) `cd` to the folder and type `npm init` and follow instructions. - -4) index.js should return in module.exports. player, server, or entity. All are optional. - -5.1) If you don't have config/settings.json, create it and copy everything from config/default-settings.json inside. - -5.2) Add into plugins `"plugin_name": {}`. Add any options you'd like. +1. Create folder +2. Create your `index.js` inside the folder +3. `cd` to the folder and type `npm init` and follow instructions +4. `index.js` should return in module.exports. player, server, or entity. All are optional +5. + * If you don't have config/settings.json, create it and copy everything from config/default-settings.json inside. + * Add into plugins `"plugin_name": {}`. Add any options you'd like. ## Publish plugin -Use `npm publish` and follow instructions. \ No newline at end of file +Use `npm init` and `npm publish` and follow the given instructions.