1.0.4 • Published 5 years ago

darkages v1.0.4

Weekly downloads
7
License
ISC
Repository
github
Last release
5 years ago

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();
1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago