npm.io
1.0.4 • Published 7 years ago

darkages

Licence
ISC
Version
1.0.4
Deps
1
Size
33 kB
Vulns
0
Weekly
0
Stars
10

darkages

A Dark Ages client for Node.js applications.

Installation

npm install darkages

Usage

ES6
import { Client } from 'darkages';

const client = new Client('username', 'password');
client.connect();
CommonJS
const Darkages = require('darkages');

const client = new Darkages.Client('username', 'password');
client.connect();
Example
const client = new Client('username', 'password');

client.events.on(0x0A, packet => {
  const channel = packet.readByte();
  const message = packet.readString16();
  const [ name, whisper ] = message.split('" ');

  if (whisper === 'ping') {
    const response = new Packet(0x19);
    response.writeString8(name);
    response.writeString8('pong');
    client.send(response);
  }
});

client.connect();