FBgameMinh / Gamecord

A Code that allows you to get the "Playing" Discord Status without playing any games!

Home Page:https://www.youtube.com/watch?v=i36SIDNTQoM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gamecord

A Code that allows you to get the "Playing" Discord Status without playing any games!


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 :


const dotenv = require('dotenv');
const TOKEN = (process.env.TOKEN);
const { Client } = require('discord.js-selfbot-v11')
const client = new Client();

client.on('ready', () => { 
  client.user.setActivity("Cyberpunk 2077", { type: "PLAYING"})
   console.log(`${client.user.username} Successfully Logged in!`)
})

client.login(TOKEN);

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

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! ;)


Gamecord © 2021 by SealedSaucer is licensed under Attribution 4.0 International

About

A Code that allows you to get the "Playing" Discord Status without playing any games!

https://www.youtube.com/watch?v=i36SIDNTQoM

License:Apache License 2.0


Languages

Language:JavaScript 100.0%