UNPKG

alex-selfbot

Version:

A simple module help you to online selfbot very easily

25 lines (19 loc) 470 B
## Installation ```txt npm i alex-selfbot ``` ## Delcaration ```js const Alex = require("alex-selfbot"); ``` ## Fast Demo ```js const Alex = require("alex-selfbot"); const alex = new Alex(); alex.login(token); // You must type account token here alex.status("idle"); // you have to choose statues between [dnd, idle, online] alex.joinChannel("channelId", { mute: true, // you can add self mute def: true, // you can add self def }); ```