commit 455dd788fae74d304e0cba9d2a8bfba535ee03a2
Author: MTRNord <mtrnord1@gmail.com>
Date: Wed, 17 Aug 2016 20:56:00 +0200
Initial Commit
Diffstat:
4 files changed, 69 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,37 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+
+# Runtime data
+pids
+*.pid
+*.seed
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (http://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules
+jspm_packages
+
+# Optional npm cache directory
+.npm
+
+# Optional REPL history
+.node_repl_history
diff --git a/README.md b/README.md
@@ -0,0 +1,2 @@
+# fs-plugin-autoNick
+A Tool to auto change the Nick to an random one
diff --git a/index.js b/index.js
@@ -0,0 +1,9 @@
+/* -------------------------------------- */
+// Author: MTRNord <info@nordgedanken.de>
+// Date: 17.08.2016
+// Version: 0.0.1
+/* -------------------------------------- */
+module.exports.player = function(player, serv) { // Player is a type of entity (entity inject is called first) with added properties and functions
+ player.setXp(100); // Example of a property player entities have but not other entities
+ player.on(',,,', ...);
+}
diff --git a/package.json b/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "fs-plugin-auto_nick",
+ "version": "0.0.1",
+ "description": "A Tool to auto change the Nick to an random one",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "keywords": [
+ "flying-squid",
+ "plugin",
+ "minecraft",
+ "nick",
+ "youtube"
+ ],
+ "author": "MTRNord <info@nordgedanken.de>",
+ "license": "ISC",
+ "dependencies": {
+ "moniker": "^0.1.2"
+ }
+}