npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fb-dota2-bot

v1.1.2

Published

A wrapper around the dota2 library that handles all login shenanigans

Downloads

4

Readme

dota2-bot

Wrapper around the node-dota2 library which handles all log-in shenanigans. This basic DotaBot class prepares an object for connection to Steam and the Dota2 Game Coordinator. As soon as connect(callback) is called, the DotaBot connects to Steam and the Dota2 GC. As soon as all connections are made, the queue is started. From then on, all scheduled functions will be executed as soon as the GC is available.

npm Dependency Status

Usage

Installation

Run npm install dota2-bot to install the package or clone from GitHub

Properties

  • steamClient The steam client used to interact with Steam. See node-steam for details.
  • steamUser The steam user for account-related functionality, including logon.. See node-steam for details.
  • steamFriends The steam friends for community functionality, such as chats and friend messages. See node-steam for details.
  • Dota2 The Dota2Client for interaction with the Dota2 Game Coordinator. See node-dota2 for details.

Getters / Setters

  • state The current state of the queue (only getter).
  • rate_limit The current rate limiting factor, i.e. the time in milliseconds between requests.
  • backoff The current backoff factor used for exponential backoff.

Methods

constructor (logonDetails, debug, debugMore)

  • logonDetails Object with two properties, account_name and password
  • debug Boolean indicating whether or not basic debug info should be shown
  • debugMoreBoolean indicating whether or not advanced debug info should be shown

Creates a new DotaBot ready to connect to Steam and the Dota2 GC

connect ()

Connect to Steam and the Dota2 GC. DotaBot will keep the connections alive until disconnect() is called

disconnect ()

Disconnect from Steam and the Dota2 GC.

schedule(fn)

  • fn Function to schedule for execution as soon as the GC is available

Example

Script

'use strict'
const DotaBot = require("DotaBot");

var logonDetails = {account_name: 'username', password:'password'};
var bot = new DotaBot(logonDetails, true, false);
bot.Dota2.on("profileCardData", function (accId, data) {
    console.log(JSON.stringify(data));
});
bot.connect();
bot.schedule(()=>{bot.Dota2.requestProfileCard(63470426);});
setTimeout(()=>{bot.disconnect();}, 25000);

Output

19 May 12:16:07 - Blocking queue
19 May 12:16:07 - Scheduling job
19 May 12:16:07 - Connected, logging on..
19 May 12:16:07 - Logged on with id = **********
19 May 12:16:07 - Launching Dota 2
19 May 12:16:07 - Received servers.
19 May 12:16:07 - sentryfile saved
19 May 12:16:08 - Sending ClientHello
19 May 12:16:08 - Received client welcome.
19 May 12:16:08 - Activating queue
19 May 12:16:08 - Executing job
19 May 12:16:08 - Sending profile card request
19 May 12:16:08 - Queue is empty, going idle
19 May 12:16:09 - Cache subscribed, type 7
19 May 12:16:09 - Unknown cache ID: 7
19 May 12:16:09 - Received profile card data for: 63470426
{"account_id":63470426,"background_def_index":0, ...
19 May 12:16:26 - Exiting Dota 2