Voicecord

2025-12-10 0 301

Voicecord

Make Your Discord Account 24/7 On Voice Channels!


If you want to connect tokens to a voice channel in bulk, consider checking out my store: click here! ☄️

Feel free to star the repository if this helped you!

Disclaimer

By using this code, you are automating your Discord Account. This is against Discord\’s Terms of Service and Community Guidelines. If not used properly, your account(s) might get suspended or terminated by Discord. I, the developer, is not responsible for any consequences that may arise from the use of this code. Use this software at your own risk and responsibility. Learn more about Discord\’s Terms of Service and Community Guidelines here.

This repository is in no way affiliated with, authorized, maintained, sponsored or endorsed by Discord Inc. (discord.com) or any of its affiliates or subsidiaries.

Warning

DO NOT GIVE YOUR DISCORD TOKENS TO ANYONE.

Giving your token to someone else will give them the ability to log into your account without the password or 2FA.

Features:

  • Secure
  • Supports Stage Channels
  • Account will stay 24/7 online and connected (if you set it up correctly)
  • Supports all three status modes (Online, Idle, Do Not Disturb)
  • Can be used almost on any platform that supports Python

Installation

· Replit

The code inside the repository was originally made to be hostable on Replit, but due to a recent ban on all repositories that are against Discord\’s ToS, you won\’t be able to import this repository directly to Replit anymore.

Here\’s a workaround to solve that issue:

  1. Click here to download the latest version of this code.
  2. Unzip the file
  3. Create a new Python repl on Replit
  4. Upload the files into the repl (Just drag and drop it into the files sidebar)
  5. Overwrite the files if a prompt pops-up
  6. Add your token inside Secrets (Guide) with TOKEN as the key and your token as the value (Video)
  7. Add your Guild (Server) ID and Channel ID
  8. Modify the status mode or mute/deaf option (True or False), if you want to make any adjustments
  9. Run the repl
  10. Add your repl url to an uptime monitor (Video)

· Local Installation

  1. Install Python on your machine (Make sure you add it to PATH)
  2. Copy the code below
Click here to view the code, click again to close it

import sys
import json
import time
import requests
import websocket

status = \"online\"

GUILD_ID = ADD_YOUR_SERVER_ID_HERE
CHANNEL_ID = ADD_YOUR_CHANNEL_ID_HERE
SELF_MUTE = True
SELF_DEAF = False

usertoken = \"Add your token here\"

headers = {\"Authorization\": usertoken, \"Content-Type\": \"application/json\"}

validate = requests.get(\'https://di**sco*rdapp.com/api/v9/users/@me\', headers=headers)
if validate.status_code != 200:
  print(\"[ERROR] Your token might be invalid. Please check it again.\")
  sys.exit()

userinfo = requests.get(\'https://di**sco*rdapp.com/api/v9/users/@me\', headers=headers).json()
username = userinfo[\"username\"]
discriminator = userinfo[\"discriminator\"]
userid = userinfo[\"id\"]

def joiner(token, status):
    ws = websocket.WebSocket()
    ws.connect(\'wss://gateway.discord.gg/?v=9&encoding=json\')
    start = json.loads(ws.recv())
    heartbeat = start[\'d\'][\'heartbeat_interval\']
    auth = {\"op\": 2,\"d\": {\"token\": token,\"properties\": {\"$os\": \"Windows 10\",\"$browser\": \"Google Chrome\",\"$device\": \"Windows\"},\"presence\": {\"status\": status,\"afk\": False}},\"s\": None,\"t\": None}
    vc = {\"op\": 4,\"d\": {\"guild_id\": GUILD_ID,\"channel_id\": CHANNEL_ID,\"self_mute\": SELF_MUTE,\"self_deaf\": SELF_DEAF}}
    ws.send(json.dumps(auth))
    ws.send(json.dumps(vc))
    time.sleep(heartbeat / 1000)
    ws.send(json.dumps({\"op\": 1,\"d\": None}))

def run_joiner():
  print(f\"Logged in as {username}#{discriminator} ({userid}).\")
  while True:
    joiner(usertoken, status)
    time.sleep(30)

run_joiner()
  1. Create a new Python file and paste the code into it
  2. Add your Guild (Server) ID and Channel ID
  3. Modify the status mode or mute/deaf option (True or False), if you want to make any adjustments
  4. Save the file
  5. Create a requirements.txt file and copy paste the file contents inside requirements.txt without the Flask module
  6. Save the file
  7. Open command prompt where both the files are present and run pip install -r requirements.txt
  8. Once the packages are downloaded, either double click the python file inorder to run it or open command prompt where the python file is present and run python filename.py

Known Errors And How To Fix Them

[Replit] This repository could not be accessed, try again later/This repository possibly violates our Terms of Service. Contact support if you believe this is a mistake.

Click here to view the explanation and fix

As I mentioned before, due to a recent ban on all repositories that are against Discord\’s ToS, you won\’t be able to import this repository directly to Replit anymore. Follow this workaround to host the code on Replit.

[Replit] sh: line 1: python3: command not found

Click here to view the explanation and fix

You cloned it into a bash repl. Make sure you select \”Python\” from the languages list when you create the repl.

[Replit] Cloudflare Error/Temporarily banned from accessing Discord\’s API

Click here to view the explanation and fix

This happens because repls have Shared Public IP Addresses, and some Replit Users abuse the platform to spam (through selfbots or nukers). Whenever Discord sees lots of invalid requests coming from a single IP address, they will use Cloudflare to temporarily block any incoming requests.

Fix:

  • Go to shell
  • Enter kill 1
  • Wait for the repl to reload
  • Run the repl again

[Replit] ModuleNotFoundError: No module named \’websocket\’

Click here to view the explanation and fix

Run pip install websocket in the shell

[Replit] TypeError: WebSocket.__init() missing 3 required positional arguments: \’environ\’, \’socket\’, and \’rfile\’

Click here to view the explanation and fix

Run pip install websocket-client in the shell

Help and Support

If you have any issues or doubts regarding this, feel free to contact me.


❤️ Voicecord is licensed under GNU General Public License.

下载源码

通过命令行克隆项目:

git clone https://github.com/SealedSaucer/Voicecord.git

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

申明:本文由第三方发布,内容仅代表作者观点,与本网站无关。对本文以及其中全部或者部分内容的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。本网发布或转载文章出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,也不代表本网对其真实性负责。

左子网 编程相关 Voicecord https://www.zuozi.net/33509.html

TheMillionaireGame
上一篇: TheMillionaireGame
audiostation
下一篇: audiostation
常见问题
  • 1、自动:拍下后,点击(下载)链接即可下载;2、手动:拍下后,联系卖家发放即可或者联系官方找开发者发货。
查看详情
  • 1、源码默认交易周期:手动发货商品为1-3天,并且用户付款金额将会进入平台担保直到交易完成或者3-7天即可发放,如遇纠纷无限期延长收款金额直至纠纷解决或者退款!;
查看详情
  • 1、描述:源码描述(含标题)与实际源码不一致的(例:货不对板); 2、演示:有演示站时,与实际源码小于95%一致的(但描述中有”不保证完全一样、有变化的可能性”类似显著声明的除外); 3、发货:不发货可无理由退款; 4、安装:免费提供安装服务的源码但卖家不履行的; 5、收费:价格虚标,额外收取其他费用的(但描述中有显著声明或双方交易前有商定的除外); 6、其他:如质量方面的硬性常规问题BUG等。 注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。
查看详情
  • 1、左子会对双方交易的过程及交易商品的快照进行永久存档,以确保交易的真实、有效、安全! 2、左子无法对如“永久包更新”、“永久技术支持”等类似交易之后的商家承诺做担保,请买家自行鉴别; 3、在源码同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外); 4、在没有”无任何正当退款依据”的前提下,商品写有”一旦售出,概不支持退款”等类似的声明,视为无效声明; 5、在未拍下前,双方在QQ上所商定的交易内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准); 6、因聊天记录可作为纠纷评判依据,故双方联系时,只与对方在左子上所留的QQ、手机号沟通,以防对方不承认自我承诺。 7、虽然交易产生纠纷的几率很小,但一定要保留如聊天记录、手机短信等这样的重要信息,以防产生纠纷时便于左子介入快速处理。
查看详情

相关文章

猜你喜欢
发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务