JSPM

probot.io

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q12317F
  • License ISC

OwO I like Dramex.

Package Exports

  • probot.io

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (probot.io) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ProBot.io Package

I made this package to make it easier for the people to claim the daily in ProBot. In the new version i will make the package support capMonster and AntiCaptcha services To make it more easier :) All you have to do just add your tokens, proxies and the package will start claiming the daily in all Accounts.

Current Added Features

  • User Details
  • Guilds Details
  • Transaction Logs
  • Claim Daily Supports Proxies

Installation

npm install probot.io

Usage

const { ProClient } = require("probot.io");
const pro = new ProClient("0IxW0YE5Z7cg8Hw", "probot");
// Or Login with your Discord Token
 const pro = new ProClient("Your Discord Account Token", "discord");

pro.on("ready", () => { // When the Client is ready.
  console.log(`Logged in as [ ${pro.user.tag} ]`);
  console.log(`Amount of guilds: ${pro.guilds.length}`);
  console.log(`The amount of all Transactions: ${pro.transactions.reduce((a, b) => a + b.transactions.length, 0)}`);
});

Claim The Daily

Param Type Required Description
Captcha String Yes Google ReCaptcha response code
Proxy Options Object False Proxy Options host: required
port: required
protocol: Optional(Default: https)
username: Optional
password: Optional

Without Proxy

pro.claimDaily("google reCaptcha Response").then(response => {
  console.log(response);
}).catch(e => {
  console.log(e);
});

With Proxy

pro.claimDaily("google reCaptcha Response", {
  protocol: "https",
  host: "127.0.0.1",
  port: "8080",
  username: "Steve123", //Optional
  password: "MyPassword123$$"
}).then(response => {
  console.log(response);
}).catch(e => {
  console.log(e);
});