JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 10
  • Score
    100M100P100Q58152F
  • License ISC

A roblox verifier for Bloxlink and RoVer.

Package Exports

  • roblox-verifier

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 (roblox-verifier) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

roblox-verifer

Tired of downloading multiple packages to sync your roblox verification?

roblox-verifier Checks for all of that for you!

Usage

const Discord = require('discord.js'),
        client = new Discord.Client(),
        verifier = require('roblox-verifier');

new verifier(client, {
    setNickname: true, // Automatically sets the users nickname using either the Bloxlink or RoVer API account.
    returnBoolean: true, // Returns true or false and if there is no account linked it returns null.
    callback: (member) => {} // The function that runs when a user is found, param pushed is a DJS GuildMember.
})

Returns Object<>

{
    found: true || false, // Returned only if returnBoolean is true
    member: DJS<GuildMember> // Always returned
}