An Extended package to sphinx-run
npm install sphinx-selfsh
npm install sphinx-self
`
Example usage for USER Class for AutoReaction
`js
const Discord = require("discord.js-selfbot-v13") // npm i discord.js-selfbot-v13 (required)
const client = new Discord.Client({checkUpdate: false})
const sphinx = require("sphinx-self");
new sphinx.Core(client).autoReaction() //hover for options
sphinx.on("giveawayCreated", giveaway => {
console.log(giveaway) //Returns giveaway message url (Where the giveaway was initalized.)
})
client.login("Your Discord Token") //Not saved.
`
Example usage for USER Class for leveling
`js
const Discord = require("discord.js-selfbot-v13") // npm i discord.js-selfbot-v13 (required)
const client = new Discord.Client({checkUpdate: false})
const sphinx = require("sphinx-self");
new sphinx.Core(client).leveling() //hover for options
client.login("Your Discord Token") //Not saved.
`
Making Bots using sphinx-self.
`js
const sphinx = require("sphinx-self");
const gen = new sphinx.Core();
(async() => {
let {token} = await gen.createBot({token: "UserToken", name: "3yl"}) //CreateBot returns promise cuz i don't want people killing discord's api
console.log(token)
})()
``