DJ B
Hacker
@Coolboy62ksi
Discord bot developer
0
The fun website Rickrolls your friends with this website
The fun website
A simple website with a button that leads to YouTube to Rick roll your friends!0
The fun website Rickrolls your friends with this website
0
1
0
Coolboy62ksi A simple website with a button that leads to YouTube to Rick roll your friends!4 months ago
Im having problems with my music bot it keeps saying status code 410 witch means theres an issue with the client i need help fixing it
Node.js
Hello ive made a fan/mod bot and i have no clue how to make a dashboard no YouTube video shows how to do it on here im looking for volunteers to help
Python
Hello is there away you can make your discord.py bot speak to people when they say something without the prefix?
InvisibleOne Yes there is
@client.event
async def on_message(message):
if message.author.bot:
return
if message.content == 'spam':
await message.channel.send("Hey! No spam!")
Just make sure you include 'await client.processcommands(message) or else your commands won't work after you use an onmessage()` event2 years ago
Hello im looking for away to give me a server count so how many servers my bots in
InvisibleOne len(client.guilds) should give an integer number of how many guilds your bot is in2 years ago
im looking for help as ive got a bot now on top.gg and i want to make a dashboard im looking for some code to make it for free
SamDev7 There is no free code for this out there yet, you'll have to use flask to host a dashboard.2 years ago
Hay i wanted to find out if theres any code out there i can use to make abusive discord moderators so they cant use any of my bot commands so like a b
FishballNooodle Hi, you can check out my Updated 2021 Discord Tutorial
https://replit.com/talk/learn/Links-to-all-My-Tutorials-And-a-2021-Update/1383882 years ago
VulcanWM do
#importing the replit module so you can access the replitdb where you save the people who have been banned
from replit import db
#adding someone to the banlist
def addbanlist(id):
db[str(id)] = ['Banned']
#checking if a user is in the banlist, will return True if they are, will return False if they're not
def checkifbanned(id):
if str(id) in db.keys():
return True
else:
return False
2 years ago