0.6.2 • Published 2 years ago

minecraft-information v0.6.2

Weekly downloads
9
License
MIT
Repository
github
Last release
2 years ago

MINECRAFT-INFORMATION

npm version License Npm weekly downloads Discord server

About

minecraft-information is an npm that makes it easy to find minecraft data for your projects in JavaScript.

Installation

Node.js 12 or newer is required

npm install minecraft-information
yarn add minecraft-information
pnpm add minecraft-information

How to use

const { Minecraft }  = require('minecraft-information');
const { HyPixel } = require('minecraft-information');
const hypixel = new HyPixel('HIPIXEL_API_KEY');


Minecraft.avatar('example').then(async(res) => {
  console.log(res)
})

hypixel.player('example').then(async x => {
    console.log(x)
})

How to use on discord.js

const { Client } = require('discord.js')
const client = new Client()
const { Minecraft }  = require('minecraft-information');

client.on('message', async(msg) => {
  if(msg.content.startsWith('?'+'avatar')){
    let avatar = await Minecraft.avatar('example')
    message.channel.send({files:[avatar]})
  }
})

Functions

Functionparams
HyPixelAPI-key
Minecraft

Hypixel

Require an api key

FunctionTypeparams
playerObjectname
friendsObjectname
recentGamesObjectname
statusObjectname
boostersObject
playerCountObject
leaderboardsObject
punishmentsObject

How to get a hypixel key:

  • Join in the server (play.hypixel.net)
  • Type the command /api new

Minecraft

FunctionTypeparams
achievementStringtitle, content, index
avatarStringname, size
bodyStringname, size
capeObjectname
headStringname
namesArrayname
profileObjectname
skinStringname
serverObjectip
itemArray or Objectname
biomeArray or Objectname
blockArray or Objectname
entityArray or Objectname

Information

If you want to get more detailed examples invite the official bot to your server and write the command: !examples

0.6.2

2 years ago

0.6.1

2 years ago

0.5.2

2 years ago

0.6.0

2 years ago

0.4.9

3 years ago

0.5.0

2 years ago

0.5.1

2 years ago

0.4.5

3 years ago

0.4.4

3 years ago

0.4.3

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.4.2

3 years ago

0.3.0

3 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago

0.1.0

4 years ago