1.1.5-beta • Published 3 years ago

serversmp-api-wrapper v1.1.5-beta

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

ServerSMP's API Wrapper npm npm install size

Just a wrapper for ServerSMP's API!

Installation

npm i serversmp-api-wrapper

Examples

Avatar

const { avatar } = require("serversmp-api-wrapper");

const user = avatar(message.author.id);
// https://api.serversmp.xyz/legacy/avatar?user=364105797162237952

const attachment = new MessageAttachment(user, "avatar.png");
message.channel.send({ files: [attachment] });

Joke

const { joke } = require("serversmp-api-wrapper");

const jokes = joke();
// {"joke":"Celibacy is not hereditary."}

message.channel.send(jokes.joke);

Duck Dungeon

const { duckdungeon } = require("serversmp-api-wrapper");

const game = duckdungeon();
// {"name":"Duck Dungeon","launcher":{"version":"1.0","link":"testlink.com"},"game":{"version":"0.10.0","patch_notes":"VERSION 0.10.0 RELEASED","description":"Test"}}

message.channel.send(game.name);

OSU

const { osu } = require("serversmp-api-wrapper");

const user = osu("Prince527");
// https://api.serversmp.xyz/osu?user=Prince527

const attachment = new MessageAttachment(user, "osu.png");
message.channel.send({ files: [attachment] });
1.1.5-beta

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago