Skip to content

SHEESSHH/247

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Voicecord GitHub forks

Make your Discord Account Online 24/7 on Voice Channels!


A Code written by Python that helps you to keep your account 24/7 on Voice Channel.

Installation

• Fork the repo

• Clone to replit

• Install PyNaCl using the Package Manager

• Add TOKEN to env file

• Add id channel to the script


The main.py is the main file. keep_alive.py 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 main.py file :

import os
import discord
from keep_alive import keep_alive

client = discord.Client()

@client.event
async def on_ready():
    voice_channel = client.get_channel(add here) #<= add specific id voice channel to connect 
    await client.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="Lofi"))
    await voice_channel.connect()
    print('Logged in as {0.user}'.format(client))
    print('Connected to voice channel {}'.format(voice_channel))
  
keep_alive()
client.run(os.getenv("TOKEN"), bot = False)

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

Lastest version: See in version.txt


Voicecord © 2022 by Naru#3078

About

Make your Discord Account Online 24/7 on Voice Channels!

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 100.0%