All Projects → SealedSaucer → Fake-Streamer

SealedSaucer / Fake-Streamer

Licence: Apache-2.0 License
A Code that allows you to get the "Streaming" Discord Status WITHOUT Streaming!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Fake-Streamer

Online-Forever
A Code that can make your Discord Account 24/7!
Stars: ✭ 246 (+412.5%)
Mutual labels:  discord-bot, discord-selfbot, discord-self-bot, discord-account, discord-accounts, sealedsaucer
minesweeper-bot
I'm a Discord bot that can generate a random Minesweeper game using spoiler tags, for anyone to play!
Stars: ✭ 27 (-43.75%)
Mutual labels:  discord-bot, node-js, discord-js
cytrus-re
A multipurpose Discord bot!
Stars: ✭ 16 (-66.67%)
Mutual labels:  discord-bot, node-js, discord-js
Luki
[Deprecated] The official repository for Luki the Discord bot
Stars: ✭ 21 (-56.25%)
Mutual labels:  node-js, discord-js, djs
Gyromina
Gyromina, a multipurpose Discord bot with fun + function all in one
Stars: ✭ 97 (+102.08%)
Mutual labels:  node-js, discord-js, djs
Discord-Selfbot
Discord.js selfbot
Stars: ✭ 24 (-50%)
Mutual labels:  discord-bot, discord-js, discord-selfbot
PruneBot
PruneBot is an easy to use multi-purpose bot and it has a free open source code to setup your own prune bot to your own server.
Stars: ✭ 13 (-72.92%)
Mutual labels:  discord-bot, node-js, discord-js
mass-dm-discord
A MassDM selfbot which is working in 2021. Only for educational purposes 🥱🚀
Stars: ✭ 87 (+81.25%)
Mutual labels:  discord-bot, discord-js, discord-selfbot
Discord-EmojiToRole
A discord.js bot that assigns roles based on reactions to a message.
Stars: ✭ 55 (+14.58%)
Mutual labels:  discord-bot, node-js, discord-js
delet
[DEPRECATED - see README.md] a Discord bot made using Discord.js
Stars: ✭ 46 (-4.17%)
Mutual labels:  discord-bot, node-js, discord-js
Discord-Reposter
Bot for reposting Discord messages (work in progress)
Stars: ✭ 62 (+29.17%)
Mutual labels:  discord-bot, node-js, discord-js
discord-music
Discord music bot written in Typescript
Stars: ✭ 12 (-75%)
Mutual labels:  discord-bot, discord-js
FFGNDS-Discord-Dice-Roller
Discord dice roller for EotE, AoR, FnD, Genesys, and L5R role playing games.
Stars: ✭ 63 (+31.25%)
Mutual labels:  discord-bot, discord-js
AwesomeBot
chatbot for /r/learnprogramming (un)offical discord channel
Stars: ✭ 25 (-47.92%)
Mutual labels:  discord-bot, discord-js
Invite-Manager
Invite manager is an open-source discord bot that allows you to track the invites of people who join your server.
Stars: ✭ 90 (+87.5%)
Mutual labels:  discord-bot, discord-js
markov-discord
A Markov chain Discord chat bot. Generates unique messages by learning from past messages. Also occasionally attaches images to messages.
Stars: ✭ 35 (-27.08%)
Mutual labels:  discord-bot, discord-js
Menhera-Chan
A multi-purpose discord bot. With Dashboard
Stars: ✭ 28 (-41.67%)
Mutual labels:  discord-bot, discord-js
Discord-Tools
VSCode extension allowing the integration of a Discord chat, bot templates, snippets, themes and more!
Stars: ✭ 91 (+89.58%)
Mutual labels:  discord-bot, discord-js
SpikeyBot-Discord
SpikeyBot for Discord. Hunger Games simulator, and other helpful commands.
Stars: ✭ 28 (-41.67%)
Mutual labels:  discord-bot, discord-js
Discord-Bot-TypeScript-Template
Discord bot - A discord.js bot template written with TypeScript.
Stars: ✭ 86 (+79.17%)
Mutual labels:  discord-bot, discord-js

Fake-Streamer

A Code that allows you to get the "Streaming" Discord Status WITHOUT Streaming!


The index.js is the main file. server.js prevents your repl from going to sleep. (If you have a replit hacker plan, then you can delete this file and paste this code inside the index.js file :


let discord = require('discord.js-selfbot-v11')
let rpcGenerator = require("discordrpcgenerator")
const dotenv = require('dotenv');
const TOKEN = (process.env.TOKEN);
var uuid = ()=>([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,a=>(a^Math.random()*16>>a/4).toString(16))
let client = new discord.Client()

client.login(TOKEN)
 
client.on("ready", () => {
    rpcGenerator.getRpcImage("CLIENT_ID", "IMAGE_NAME")
    .then(image => {
        let presence = new rpcGenerator.Rpc()
        .setName("twitch")
        .setUrl("https://twitch.tv/SealedSaucer")
        .setType("STREAMING")
        .setApplicationId("CLIENT_ID")
        .setAssetsLargeImage(image.id)
        .setAssetsLargeText("youtube.com/SealedSaucer")
        .setDetails("Subscribe!")
 
        client.user.setPresence(presence.toDiscord())
    }).catch(console.error)
  console.log(`${client.user.username} Successfully Logged in!`)
})

This Code is from this tutorial. If you have any doubts regarding this, feel free to contact me.

DO NOT GIVE YOUR TOKEN TO OTHERS!

Use uptimerobot.com to make your repl online 24/7.


Feel free to Star the Repository if this helped you! ;)


Fake Streamer © 2021 by SealedSaucer is licensed under Attribution 4.0 International

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].