#development
1 messages Β· Page 1435 of 1
No
oof
Β°avatar
Your issue isn't the program. It's how you ran the command.
You probably ran the command like *avatar instead of *avatar @Luca#0001
well u need to provide a user to get the avatar of
See that's your problem, the code you're using requires you to mention someone with the command
See
(and that kids is why we don't copy/paste from stack overflow ! )
Well i mean he probally should fix his program to not error out when someone forgets a parameter
idk what u mean
mentioned it all the way up here <#development message>
copying and pasting is perfectly fine as long as u know what ur doing lmao
hi
If u hate copying and pasting so much that you go and write your own regexps your fucking crazy
When people say to not copy & paste, they're really saying to not copy & paste blindly.
I'm going to bother you because I'm just a programming apprentice
yeah that's what i meant lol i copy/paste sometimes but i make sure i know what im copying
whats the js replace function?
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
its a js function which accepts regex
One message removed from a suspended account.
One message removed from a suspended account.
is x a string
One message removed from a suspended account.
One message removed from a suspended account.
is x a string
yes
One message removed from a suspended account.
show what you're doing
One message removed from a suspended account.
smh close bracket
One message removed from a suspended account.
One message removed from a suspended account.
function print_final() {
var x = document.getElementById("input1").value;
x = x.toLowerCase;
x = x.replace("a", "n");
x = x.replace("b", "o");
x = x.replace("c", "p");
x = x.replace("d", "q");
x = x.replace("e", "r");
x = x.replace("f", "s");
x = x.replace("g", "t");
x = x.replace("h", "u");
x = x.replace("i", "v");
x = x.replace("j", "w");
x = x.replace("k", "x");
x = x.replace("l", "y");
x = x.replace("m", "z");
x = x.replace("n", "a");
x = x.replace("o", "b");
x = x.replace("p", "c");
x = x.replace("q", "d");
x = x.replace("r", "e");
x = x.replace("s", "f");
x = x.replace("t", "g");
x = x.replace("u", "h");
x = x.replace("v", "i");
x = x.replace("w", "j");
x = x.replace("x", "k");
x = x.replace("y", "l");
x = x.replace("z", "m");
document.getElementById("final_encrypt").innerHTML = x;
}```
oh my lord
sorry for codeblock
One message removed from a suspended account.
shhh
One message removed from a suspended account.
im learning OK!
One message removed from a suspended account.
cringing
soooo ummmmm someone want to tell him what regex is lmao
One message removed from a suspended account.
my brother has like this thing where its his homework to do this
so im making it before him
to make fun of him
you need to do x.toLowerCase() instead
One message removed from a suspended account.
ALMOST!
One message removed from a suspended account.
out of all the languages to do that type of thing in
alr luv u all
its website
firstly
also im learning js
i do python already
ah yeah it is a website
i mean
in
lmao
what?
yeah you should A use a regex
the replace thing?
B you could use an array for mappings
500 lines of code replacing things
ik ik
i couldnt think of another way though
I would have done a mapping array
too lazy for objects
one large ass json file here i come
lmao
i stan large configs tbh
i mean how would i have done it more efficiently?
like the replace thing?
i need to shift the chars 13 +
so like a -> n
etc
You want to shift all letters by 13 (a => n, b => o, etc.)?
x = x.split("")
let newStr = ""
for ( const char of x ) {
newStr += "im not really sure of ascii / code stuff, so you'll have to find a way to convert char to 13 characters ahead, there's probably some unicode thing for that if you google it"
}
something like:
mapping = ["a" => "n", "b" => "o"]
str = "test string"
for (let i = 0; i < str.length; i++) {
str[i] = mapping[str[i]]
}```
is how i'd do it, itll probably be like 5 lines of code if you do it properly
pretend i declare a global variable like
o that is what you want to do
module.exports.thisvar = THISVARIABLE
u need to be smort
i dont do smort
lmao
What you want to do actually isn't that hard
then just use an array of abcs
THISVARIABLE = 1;
module.exports.thisvar = THISVARIABLE;
THISVARIABLE = 2;
would it output 1 or 2
find the index in the array
if i require() it
@shy turret shouldn't
if it's 2, it shows the current state of the variable
You'll need the unicode point for the start, and the modulo operator to make sure it doesn't go over 26
i don't do much js but i don't think it the global var would make a pointer to the local one
let me test
x = x.split("")
let newStr = ""
const alphabets = [ "a", "b", ... ]
for ( const char of x ) {
let i = alphabets.indexOf(x) + 13
if( i > 26 ) {
i -= 26
}
newStr += alphabets[i]
}```
this would probably work
but i haven't tested it
lemme yoink rq
references could be used here if u really wanted
var foo = { x: 5 };
var refFoo = foo;
// foo.x => 5
// refFoo.x => 5
foo.x = 6;
// foo.x => 6
// refFoo.x => 6```
taken from stack overflow
cause im lazy
lmao
do you even understand my code
if you don't
don't use it
cuz that means i just spoonfed you and you still don't get it 
gimme 1 min
when u do this
x.split("")
you split each arg
ye?
o wait i made a typo
let x = "owouwu"
x = x.split("")
let newStr = ""
const alphabets = [ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" ]
for ( const char of x ) {
let i = alphabets.indexOf(char) + 13
if( i > 26 ) {
i -= 26
}
newStr += alphabets[i]
}
now it should work
uwu
wait i wanna understand it tho
x.split("") turns "owouwu" to [ "o", "w", "o", "u", "w", "u" ]
why let not var?
hehe
let i because it's only used in that scope
wat did u change?
i hate that since i love C#, but i love it in js
for ( const char of x ) { // for loop for each character
for char in x
im smort!
@drifting wedge this is a messy function I wrote, but it sort of does the job: ```js
function shift(str, shift) {
let start = "a".charCodeAt(0);
return [...str].map((letter) => String.fromCharCode((letter.charCodeAt(0) + shift) % start + start));
}```
i stan efficient code
@spare goblet got rekt, this is smaller, so for efficient
joking ofc
thanks for the help all!
grr
i stan ppl who understands unicode mess
i dont understand unicode ordering character things

have to make do with smolbrain
try making every letter in a string lowercase without using .toLowerCase()
iteration hehe
gross
replace.replace.replace
clownery
just 1.1m more points to go
function print_final_de() {
let x = document.getElementById("input2").value;
x = x.split("")
let newStr = ""
const alphabets = [ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" ]
for ( const char of x ) {
let i = alphabets.indexOf(char) + 13
if( i > 26 ) {
i -= 26
}
newStr += alphabets[i]
}
document.getElementById("final_decrypt").innerHTML = x;
}```
i hate raw web js
uh tbh i still didnt really understand it but i understand the idea
its still borken, but imma try to big brain it?
is it possible to bigbrain it?
this should be newStr instead
so its returning split text
the web sucks
lmao
why can't we go back to black screen terminal
is it the same proccess to go backwards?
isnt it let i = aplha.indexof(char) - 13
instead of +?
im going back
but then id run into the issue of there not being alphabet left
it would have to be a loot]
loop
x = x.split("") // x is now an array of each letter in the string
let newStr = "" // an empty string
const alphabets = [ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" ]
for ( const char of x ) { // for each element of the array x, or each character of the original string,
let i = alphabets.indexOf(char) + 13
// to find the index in the original array of alphabets, then add 13. this would return the new number it would allegedly "shift to". however, for alphabets like y, it would be larger than 26, and there's only a total of 26 alphabets, SO...
// if it's more than 26,
if( i > 26 ) {
// remove 26 from the index so that it shifts back to the beginning of the array.
i -= 26
}
// add that new shifted character to the new string newStr, then continue the loop.
newStr += alphabets[i]
}
// when the loop ends, that means newStr is fully defined.
hope this explains it well
so if i go to -alphabet it goes to z
IM HAPPY!
GG!
congrats .. barnie
Thx!
I think .split("") performs weird on some unicode. Some people usually just do [...x]
smh py dev
hi, is there any way to create table in discord?
I tried using this https://github.com/astanin/python-tabulate but still doesn't looks good on ds
i have no idea what you mean exe
put it in a code block
im doing a DEcryptor now
so it should go backwards
``` before and after the msg
so it would go what u put, but -13, so it would go back to normal
O
whats Nan in js?
thx

bruh
tysm
i gotta legit learn this stuff
im decent with py honestly
but i couldnt do stuff from srarch
like i need a template kinda u now
like i dont know how to do classes
i understand them kinda
but not too well
i know that
but like for example i dont know how to code a class
like how to make the actual code
wdym
or like for flask for example
like i couldnt MAke a class from my head
like i code, with my pre existing code
which isnt a good habit
class className {
constructor()
}
its the same
ik
i know the concept
real talk tho exe
ye?
if i was 13 years old like u
and knew how to code
as well as u do
i'd be hella proud lol
lmao
lemme dm u somethying
cuz it might doxx me a bit and dont wanna be too out
just a bit
LOL
pls dont doxx urself
not doxxing myself basically lmao
pog

smart idea
umm
like i mean tho, i know how to code ofc
but i dont know how to CODE a lot of stuff
Guys
like lemme give u example
this is a class in py
for discord.py
def __init__(self,client):
self.client = client```
i know how it works
but i couldnt make one from my head
like i dont remember it
throwback to when i was accepted to an ivy league but declined, cough
but thats what google's for
I want to add a 15 minutes everyday limit to listening song in my bot
Once they cross 15 mins limit it'll say - Go back to work
ill only help u if u do something normal
like 25 mins
15 is too little lmao
jk
so dpy?
or some bad lang?
It's a private bot for some company
they said 15 mins
So their employees can take a break when they are bored
Na djs
LOL
Ok :(
the only thing ive made in js is a bot that spamms elmo hell memes
just make a timer thing
How
if u say: "no" it says i dont do consent
and if you say "What" is says stfu weeb
so very nice bot
its in 0 servers!
theres multiple ways
prob a timer module?
py is so much better
i made a full out music thing in like 500 lines
with db and all
ezpz
setTimeout(() => {
// end music
// yell at them and tell them to go back to work
}, 900000)

aight well being a child has many perks, but one disadvantage is sleep time
so gtg sleep
cya nerds
gn iawa
Nah that's not what I want
I want it to give them 15 mins daily
But they can just run command again

But I don't want that
15 mins daily
The company said
tell the company to treat their employees better
just put it in the db
or just tell them to use my bot
LOOL
They give them 30 mins break
But 15 mins separate
tmr wanna see: support group for abused employees in bot join logs
i mean i listen to music while working
so i dont see why u would limit it
anyways, good night!

Gn
the way i'd code that
would depend on
the scalability of the bot
like if itll have to scale to 100k servers
Can I share a server name my bot is in?
If I change it a bit
I have a list of really funny ones
if it does have to scale to 100k servers, i'd use a redis caching
map it by user and the amount of milliseconds left for that day
then set that caching to expire every 24h
It's not gonna scale that much lol
Oopsie
i dunno
I'm talking about my bot
your usage scenario lol
What's the point of caching?
Flex
to avoid overloading ur db
Damn
Mines in 500
My bot is in 1300 only
can i get some help?
Ask it lmao
Firstly
You want to do python file name
Like add python before
To run it
- u need to cd into folder
lol
iara?
huh
breh alr
alr
So i delete the line
Try now?
Wait
https://i.imgur.com/ZPWOsE1.png can anyone help heroku?
Add to requirements.txt
wait wait
@earnest phoenix in the picture of ur cli HOW TF DID THE FILE EXECUTE
nvm im actually retarded
@earnest phoenix how?
idek at this point
when i tried it
it said access denied
i tried chmod-ing it
but still the access denied prevailed so idek at this point
can someone help me transform
x = [ [ ['a', 1],['b', 2] ], [ ['c', 1], ['d', 2] ] ]
into
x = [ ['a', 1, 'c', 1], ['b', 2, 'd', 2] ]
in python
How do you access array in python again?
x[0] right?
im pretty sure
Ight lemme just think
yeah
You can just uh
a = [] # Make a new array
for e in x: # loop throught the array
if isinstance(e, list): # check if the value is array
i = [] # if yes then make another array
for o in e: i.push(e) # loop thorught the value array, and push the value into that array
a.push(i) # then push i array into the a array
else:
a.push(e) # push the value into the array
x = a # assign x to array a
Hope that make sense ig
let me try
Also please learn from the code :v
it doesn't works lol @earnest phoenix https://onecompiler.com/python/3wf6j7bgz
Ight i am dumb
you may push a list of elements or just the element (List[T] vs. T)
I see
Nope i cant think, sorry.
When i use a command it doesnot work
but there are no errors on the cmd
More imformation please
wdym
Dms?
Alr
Wrapper Libary
Your command handler code
module.exports = (client) => {
console.log(
`Ready to serve in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`
);
client.user.setPresence({ game: { name: 'Under extreme maintenance.' }, status: 'dnd' })
.then(console.log)
.catch(console.error);
}```
for whatever reason, this doesnt update the status and theres no error.
It's not called game anymore
What do I make it?
damn discord.js 
@earnest phoenix
#Error Handling
@client.event
async def on_command_error(ctx, error):
if isinstance(error,commands.CommandNotFound):
await ctx.send('Invalid command used.')```
Sorry π¦
Ahh
Python
Sorry,
I am not good with python
np π
@trim saddle
oh i can help
whats the error here?
side note
oh wait
that's eating all your other errors btw
How can they write like this?
DAMN
commands.errors
I mean Which language they' use
else:
raise error``` @earnest phoenix add this to your code
Python is so...confusing
so so
alr
it really isn't

why would you input like that
I just want to know they color thing
Python
That's python
Oh thanks
```LANG```
Discord just wordwrapped that block
lemem try
it's ok thanks for trying
I would stay away from CommandNotFound tho @earnest phoenix
i found the solution myself https://onecompiler.com/python/3wf6mfquy
Do you have a better handler?
I would only use the global on_command_error for CommandOnCooldown
you can use them locally in commands
Python be like:
"you'll either indent your code or you'll not code"
How to write in that' color 
Traceback (most recent call last):
File "D:\python\lib\site-packages\discord\client.py", line 333, in _run_event
await coro(*args, **kwargs)
File "C:\Users\User\Desktop\Squash Updates\squashv2.py", line 43, in on_command_error
raise error
File "D:\python\lib\site-packages\discord\ext\commands\bot.py", line 903, in invoke
await ctx.command.invoke(ctx)
File "D:\python\lib\site-packages\discord\ext\commands\core.py", line 859, in invoke
await injected(*ctx.args, **ctx.kwargs)
File "D:\python\lib\site-packages\discord\ext\commands\core.py", line 94, in wrapped
raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Bot' object has no attribute 'version'```
;-;
what are you trying
Python is so confusing π
.stats is a command?
Yes
and what is is supposed to return?
stats of the bot
and those are?
Code?
go ahead
Dms

It's always dms
async def test(ctx, *args):
retStr = str("""```css\nThis is some colored Text```""")
embed = discord.Embed(title="Random test")
embed.add_field(name="Name field can't be colored as it seems",value=retStr)
await ctx.send(embed=embed)```
Rip

Lul
πΏ
Ghoul please tell me
how do I send that
I will vote your bot daily for one week
without it transforming
```language
Like this
```
My bot is no where near ready
Language would be your chosen highlight
(of course, replace language with the language itself)
Yea but markdown works on it
print("Hello World")```
But I can see your ones in my phone too
I'm out, all yours
That doesn't look like python
Please again
Good job
and you are good to go
any one know how to get a server count of the bot for top gg
what monstrosity is that @cinder birch
That's my first program on python, i'm nostalgic now π’
Well
HAYAHAHAHAHAGAHSHDVSUBFBS



Well, this guy doesn't how the programation works.
"Python sucks"
Bruh
Python is the most used language
And big companys like youtube or google works with python
Every language has an speciality
JavaScript is for web debelopment and in some cases, app development
Python is a multi-platform language

C langs, the rest is malfunctioning scrap 
If we talk about oportunities python is better, but there is not a better language, each one has an speciality.
You are the unique here that sucks
Lol
I hate python for its indentation
If you don't know how to use python, it's not a reason to say "python sucks"
14yo?
@slender thistle come defend ur baby, they talkin sht bout py
it's just tabs....
learn more about python, work with python and then you can say if python is a good language or sucks (for you)
Thx.
Forcing it to be indented is the worst
cracks fingers and clears throat
Who's trying to show off here this time?
imagine getting triggered for small thing
python is meant to be very friendly and readable, why would It not?

Ok my keyboard warrior is still asleep and my eyes are burning
Hey dead
What does (node:647) UnhandledPromiseRejectionWarning: Response: Internal Server Error mean?
Something went wrong on their end and it's not your fault
Ok, Sorry if any of my questions are dumb
Dont worry, 90% of questions here are way worse
Like people asking if they can code discord bots with roblox
is there even a lua wrapper?
oh word
Discordia iirc
ah yea ive heard of that
theres a popular bot written in c# that suprised me
nadeko
Really?
Check my reply right after that
print("Hello World")```
good job

#p
hello?
what ?
Nothing lol just testing
yes syntax highlighting
hello, so i've finally decided to split my script into cogs
doing so smthing happened
the bot started running twice
for some reason
like anytime i run the script. it goes online twice?
here is a screenshot
Show your code
help please
User is not cached or invalid or not found
First check if money[i].id.split('_')[2] is a valid user id
Then if the user is not cached, use users.fetch(id)
you'll need to await it
yo guys i don't know why, but recently i had this error when i want to play music with my bot
erreur de dispatcher : Error: input stream: Error parsing info: Unable to retrieve video metadata
Thats a problem with the youtube library
See if there is an update, or check their github for issues
Hello guys how to get RDP to make my bot online 24/7 ?
rdp?
yes
Whats that
this server online 24/7 and have fast internet speed
A vps?
yeah
What exactly are you having problems with?
Did you buy the vps and dont know how to use it?
no i want to get him but free
i have a way but take 7 week
and get vps/rdp for 1 month
The only free vps that i know of is google compute engine
You still need a credit card to register
the problem i don't have credit card
There are other free options but they are not vps, they are more limited
Like glitch, heroku and repl.it
i think glitch is not 24/7 ?
More or less, it sleeps after a while
So you need to run a webserver on it
In any case, free options will always have limitations
There is no good full vps for free
Convert the message content to lowercase
how do i do that?
^
ok, but i can use repl.it will be 24/7 ?
i just started scripting yesterday
pinging
#String.toLowerCase()
where do i put that
U know someone doesnt know how to code when they call it scripting
What language and library are you using?
So you need to convert the message content to lowercase
LMAO
Where do you find the message content?
u know how to create folder on github?
@quartz kindle
client.on('message', message => {
if (message.member.hasPermission(['KICK_MEMBERS', 'BAN_MEMBERS']))
if(message.content.startsWith(${prefix}kick)) {
let member = message.mentions.members.first();
member.kick().then((member) => {
message.channel.send("π" + member.displayName + "Has been kicked")
})
}
})
??
where on there do i put it
@tardy hornet you deleted your code
oof
What can we do
i didnt
Check ur recycle bin
where do i put it on the script?
You see where it says message.content?
yes
Thats what you need to convert to lowercase
empty
Ok then its gone
do i make another if(message.content) or something?
On message.content
Inb4 if(message.content).toLowerCase()
Lmao
client.on('message', message => {
if (message.member.hasPermission(['KICK_MEMBERS', 'BAN_MEMBERS']))
if(message.content.toLowerCase()startsWith(${prefix}kick)) {
let member = message.mentions.members.first();
member.kick().then((member) => {
message.channel.send("π" + member.displayName + "Has been kicked")
})
}
})
like that?
Just create it? Isnt there a button in there to make a new folder?
cuz i got 5 errors now
no
use heroku. lasts 18 days. just use temp mail to make new accounts
or vds its better
Replit also sleeps your bot after a while, but they allow you to use a pinging service to wake it up
like glitch
saved it fewww
my friend used that a lot
Glitch banned pinging services afaik
almost r.i.p 1700 servers god damn it @earnest phoenix
ye
Replit didnt (yet)
what can u use to ping replit
k
ok np
How to make a filter of emoji no unicode ?
how do i make a U DONT HAVE PERMSSION text
client.on('message', message => {
if (message.member.hasPermission(['KICK_MEMBERS', 'BAN_MEMBERS']))
if(message.content.toLowerCase().startsWith(${prefix}kick)) {
let member = message.mentions.members.first();
member.kick().then((member) => {
message.channel.send("π" + member.displayName + "Has been kicked")
})
}
})
return ['\:pierredesangpfc:', '\:pfcbande:', '\:epeedesangpfc:'].includes(reaction.emoji.name) && user.id === message.author.id;
console.log("filtre reaction")
};```
I have make this but is not fonctionnal
PS C:\among us emojis> node .
Launched shard 0
internal/modules/cjs/loader.js:968
throw err;
^
Error: Cannot find module './GuildMemberUpdate'
Require stack:
- C:\among us emojis\node_modules\discord.js\src\client\actions\ActionsManager.js
- C:\among us emojis\node_modules\discord.js\src\client\Client.js
- C:\among us emojis\node_modules\discord.js\src\index.js
- C:\among us emojis\bot.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:965:15)
at Function.Module._load (internal/modules/cjs/loader.js:841:27)
at Module.require (internal/modules/cjs/loader.js:1025:19)
at require (internal/modules/cjs/helpers.js:72:18)
at new ActionsManager (C:\among us emojis\node_modules\discord.js\src\client\actions\ActionsManager.js:23:19)
at new Client (C:\among us emojis\node_modules\discord.js\src\client\Client.js:89:20)
at Object.<anonymous> (C:\among us emojis\bot.js:54:15)
at Module._compile (internal/modules/cjs/loader.js:1137:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)
at Module.load (internal/modules/cjs/loader.js:985:32) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'C:\\among us emojis\\node_modules\\discord.js\\src\\client\\actions\\ActionsManager.js',
'C:\\among us emojis\\node_modules\\discord.js\\src\\client\\Client.js',
'C:\\among us emojis\\node_modules\\discord.js\\src\\index.js',
'C:\\among us emojis\\bot.js'
]
}
i dont even use it
Did you add it to the help command? The code you posted shows only the kick command
That error is coming from the discord.js itself
what dose it mean
Reinstall it
Try reinstalling it or rebuild it
oh okay
return ['\:pierredesangpfc:', '\:pfcbande:', '\:epeedesangpfc:'].includes(reaction.emoji.name) && user.id === message.author.id;
console.log("filtre reaction")
};```
I have make this but is not fonctionnal
Can help me ?
Did you add it to the help command? The code you posted shows only the kick command
yes
ty!
Np
If anyone wants money for free click the link aboveβοΈ I have proof it's real and here I thought it was fake
Ur losππ€£ππ€£
even the name is self bot generated
@weak parrot
self bot
did anyone know the answer
how to check that server is boosted in js
#thisappsucksdick π€£ππ€£ππ€£π
oh finally a mod actually responded
Fuck all yall
If you are using discord.js, it's <Guild>.premiumTier
0 if it's not boosted, 1 if it's tier 1, 2 if it's tier 2, and 3 if it's tier 3
I deleted the ad as it's against our rules. Anyway any further advertisements from you and you will get banned @unique snow
your mother
Bruh don't add to it
hi, is there anyway to add multiple reaction to a message at once?
currently i'm looping it and the reaction added one by one
nope
why sometimes I get this thing? 
because whatever value you're trying to use is null
@oak cliff please check him
Maybe you'll have to catch it
interesting...
intents
I'm trying to use a postgressql database with my bot but when i try to do an INSERT request, i only have this RuntimeWarning: coroutine 'Command.__call__' was never awaited adduser(playerid) RuntimeWarning: Enable tracemalloc to get the object allocation traceback
and then it crash. Do someone have a solution?
can anyone tell me how to host on heroku??
don't
can you help me please?
Hey guys. I have a question about giving automatic roles. I want to give a specific role to my users who have 15 invites. How can I do that?
track user-created invites and see if the invite-count increases when a user joins
if so, just add it to some database
Is there a Discord bot does that?
Thanks, I'll learn how to make a Discord bot
I was pinged, still need help?
is there anyway to make my bot deafen in VC (discord-py)?
main.entity-content__description {
background: rgb(216, 199, 255) !important;
}
```Does anyone know why I can't change the background color of the long description?
https://discordpy.readthedocs.io/en/latest/api.html#discord.Guild.change_voice_state guild.change_voice_state()
it sucks π€
It's without main.
and !Important isn't needed anymore
just don't
**Guys can someone help me in : how i make shared command like if the user in 2 server with my bot the bot tell him you shared with 2 servers **discord.js
is it .entity-content__description or without the period
@narrow marten my bot is the best music bot discord gonna ever have i think but I don't have money to host

With
It's a class
that sounds like a privacy breach
then thats the end of your bot
make it opt-out
it's still not working
dm ill give you a free host
post what you're using now
lol
@marble juniper hope so
.entity-content__description {
background: rgb(216, 199, 255) !important;
}
lol thats what I said π€
ok
background-color works for me
uh nvm
still didn't work
How are you adding it into your description?
wdym
make sure you're not missing any brackets
.entity-content__description {
background-color: rgb(216, 199, 255) !important;
}
https://custom.discord.re, follow the first step
Remove that !important, you don't need it
I have a style tag
The bot can't tell what servers are shared by members, since it can't read those servers it's not in.
Stop asking and try to use the thing called google.com https://pro.arcgis.com/en/pro-app/get-started/provisioning-files.htm
A license file is a file that can be used to supply required authorization information in Single Use and Concurrent Use licensing.
oh wait that's the wrong thing
facepalm
<style>
.entity-wrapper {
background: rgb(216, 199, 255) !important;
}
<!--#23272A-->
.entity-content__description {
background-color: rgb(216, 199, 255) !important;
}
.entity-header__name {
color: #1D1F21 !important;
}
.entity-header__short-description {
color: #1D1F21 !important;
}
.entity-header__vertical-wrapper-section {
color: #1D1F21 !important;
}
.entity-header__stars {
color: #1D1F21 !important;
}
</style>
```This is my whole tag
@rustic nova
@earnest phoenix https://choosealicense.com/
Non-judgmental guidance on choosing a license for your open source project
Comments for css is /* here */
Yeye
oh
sorry because asking once is good enough, read up on https://choosealicense.com/ to learn what a license file is (if referring to github for example)
Non-judgmental guidance on choosing a license for your open source project
alright node gods, im testing a prod build and i'm wondering whether the bundle size of my frontend app really matters or not since it's going to be packed into an electron app
right now it's sitting at 2.49mb obfuscated
Transparent window 
windows terminal :p
@pale vessel Do you know why there's a border around the long description?
Try adding border: none; to .entity-content__description
ok
How do I convert {["Hi!"]} to ["Hi!"]
what's the context behind this question
yeah

Hmm
Sec
How do I convert {content: ["Hi!"]} to ["Hi!"]
That doesnt seem right
Sec
because it isn't
Lol
Hey guys do somebody know how to write the code for a conveyor belt?
dumb or smart?
This is me coding while drunk
A conveyor belt? Like, the real thing, in a game, in a website, in a gif???





