Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.21 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.21 KB

AutoTathamet

NPM version Build Status Discord Chat Try it on gitpod

Create Diablo2 bots with a powerful, stable, and high level JavaScript API.

Features

  • chat
  • follow
  • pick up items

Roadmap

  • map
  • inventory

Usage

const { createBot } = require('autotathamet')

async function start () {
  const bot = await createBot({
    host: 'battlenetIp',
    username: 'myUser',
    password: 'myPassword',
    version: '1.14',
    keyClassic: 'my16CharsKey',
    keyExtension: 'my16CharsKey'
  })
  await bot.selectCharacter('mycharacter')
  await bot.createGame('mygame', '', 'game server', 0)
}

start()

Documentation

  • See docs/API.md