#development
1 messages Β· Page 448 of 1
1 sec
"The 400 Bad Request error is an HTTP status code that means that the request you sent to the website server, often something simple like a request to load a web page, was somehow incorrect or corrupted and the server couldn't understand it"
am i allowed to paste code in chat?
cause i think i might need a fresh set of eyes on this code
Yeah.
If it's small enough, in a codeblock yes. But use https://hastebin.com if it's bigger than like 8-10 lines.
or over 2k characters 
it is in python btw
i just pasted the repeating section in there that deals with the crap
and i think i did so many patchwork bugfixes that the system is starting to fall apart
value is empty (value="")
you will get a py discord.errors.HTTPException: BAD REQUEST (status code: 400): Invalid Form Body In embed.fields.0.value: This field is required
does bot.users.size only return cached users? discord.js btw
bot or whatever the client is defined as
i believe it does, yeah
to get all users, you need to like, loop over all guilds memberCount or something
also, for whatever reason, it seems that my search program always skips the second to last page and only post the last third of the page
im thinking it might be an issue regarding one of the index counts vs iteration counts
nvm, it was due to the first embed post if statement was overwriting the previous embed messages before they were posted
bot.users.size = length of the internal values as bot.users is a discord collection which extends javascript Map. @knotty steeple
Who might I talk to about getting a bot unmuted? @idle lotus got muted, however we have now fixed the issue. π
@commands.command(pass_context=True, aliases=["reddit"])
async def meme(self, ctx):
accounts = ['dankmemes', 'wholesomememes', 'meirl', 'beeirl', '195'] # embed.set_image(url="{}".format(resp["source"]))
async with aiohttp.ClientSession(headers={'Accept': 'application/json'}) as session:
acc = "https://api.reddit.com/r/" + rnd(accounts)
async with session.get(acc) as get:
resp = await get.json()
embed = discord.Embed(colour=0x4286f4)
embed.set_image(url="{}".format(resp["url"]))
embed.set_footer(text="{} | :speech_balloon: {}".format(resp["subreddit_name_prefixed"], resp["num_comments"]))
await self.bot.say(embed=embed)``` @trim saddle
- ew async
- uhhh
kjhgfd
@lyric sigil, talk to an online moderator hint hint, or the moderator that muted the bot.
so
await client.change_presence(game = discord.Game(name = "in " + str(len(servers)) + " servers | /help", url = "https://twitch.tv/nope", type= 1))```
as we all know in discord.py, are you able to use the change_presence function to specify the change in the bots status. Either for it being Online, Invisible, Do not Disturb, Idle, or Offline are the main ones.
However, are you also able to have the bot show streaming as well. If you add this code in, (as well as you must give the link of an existing twitch channel) you will have the bot streaming it along with the name
the type numbers go as follows:
- streaming
- 'listening'
- 'watching'
all numbers that come after that are able to be used for the status color change for invisible, idle, do not disturb and etc.
However (afaik testing wise) only streaming is the only other color able to be changed
yes
Rewrite:
await bot.change_presence(activity=discord.Streaming(name="Just a little test", url = "https://twitch.tv/something"))```
Does async do that 
yesssss....? π
Wait, what exactly are you even trying to do rn?
it just allows you to change status into streamer mode
also i do not have discord.Streaming
which discord.py are you using
why
It is just 1 line code that changes the bot status
into a streamer mode
im not a professional at all, im just sharing my knowledge or if any available π
Does it not work?
I quite forgot async since haven' used it for a while
Oh
Ok
I thought you had problems with it 
Sorry for that 
np
i actually do need some help
i would love to move away from parsing commands in message() using async and making my own functions for it
but i seriously dont know how
You use on_message() event for commands?
Commands extension /shrug
hi
hi
hi

Yeah well, using commands extension is the way besides using on_message() :p
little bit stuck, my bot has a warning point system and theres is a command that lets you see the users warning level if they have one but if a user has never been warned and you try to use the command it just sipts an UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'warns' of undefined error, is there a way to make it so this error return to a message saying that the user has no warnings sorry i'm new to this be kind >~<
then why not get the key or check if the user exists in the database of some sort?
before doing anything "check if the user do have an warning first then return"
arr ok i'll gave that a shot thanks
so
im deciding to try and convert over from on_message() command parsing to using my own async defs
@client.command(pass_context = True)
async def ping(ctx):
await client.say("Pong!")```
this is as simple as it gets when i want to try a ping
but it won't work
what have i done wrong?
it is still able to parse through on_message() just fine too
You forgot to add client.process_commands(message) in your on_message()
How do i make reload command for bot?Only for me (@brittle zephyr)
What lib?
Discord(python)
Which branch?
actually... in what sense?
Reload cog/extension/module or the bot?
hey guys were can i get soundcloud Api?
do you have a code?
if yes run it
else learn how to code and code and then run it
no
follow this tutorial https://www.youtube.com/watch?v=rVfjZrqoQ7o&list=PLR2_rarYLHfg6ZJqq0WTMmI9uLcd7_GRO
it will teach you Discord.js which is the framework of Discord in Javascript
a library to connect to Discord using JavaScript
How do i make reload command for bot?Only for me (@brittle zephyr)
Discord(python)
I need reload bot
@brittle zephyr dont ghost mention people in here or you will get muted.
Okay
Oh, it was him
sry (
the bot
And how make this box
Now I have another question
Which branch of Discord.py are you using
async or rewrite
async
yea
yea
ah alright
give me a second to dummy up some code for ya then
i recommend reading the docs
I sent the link a few messages ago
^^^
check the docs out
are you trying to replicate the exact same thing? or just get it to show? @brittle zephyr
replite.
cough
7. a. Donβt spoon-feed or attack beginners.
hmm
But well, an example is enough, I guess?
yeah
Fucking hell, I am back to mini-modding
haha
haha
kewl
embed = discord.Embed(
title = "Title goes here",
description = "Description goes here",
colour = discord.Colour([r = 255, g = 0, b = 0])
)
embed.add_field(
name = "Second title goes here",
value = "Second description goes here"
)
await client.say(embed = embed)```
@brittle zephyr
thats a rough example
@slender thistle is it done as discord.Colour([0,255,0])?
the docs says it can output the colors but π€·πΌ
value could be anything
could be a hex, could be rgb, yku
discord.Colour(r=0, g=255, b=0)? 
Oh wait
Eh, rewrite has to_rgb() while async has to_tuple() to return the colors but you have to provide a raw integer value as value in discord.Color(value=X)
Sooo
@latent heron
That doesn't work
I'll just remind you that value parameter is a raw integer value
Not a list or tuple
What the fuck is that indentation
Put embed.add_field on the same column as embed = discord.Embed
how tho
I'm so stupid i think(
Do you have rewrite installed
Should I download .deb or .rpm?
depends on which linux you have
i dont think you can install linux packages in chromebook running chromeos
you'd have to install linux on it
but then again, i've never used a chromebook, i could be wrong
what are you installing
Visual Studio Code.
there is a community build of it for chromebooks
Send me link pls/
well i found this https://code.headmelted.com/
Builds of Visual Studio Code for Chromebooks and Raspberry Pi
I pressed CTRL+ALT+T and I got this.
o
does anyone know what is your code?
I'm so mad that I'm now using both JavaScript and Phyton...
why are you using both? lmao
I can't decide which I should use.
fair
uuuuuugggggggghhhhhhhhhhhhhh
flip a coin, assign a language to each side, go with that one
I'm kinda thinkin' Phyton due to it being in High Demand so a job would be easier to find....
But Java is simple
you cant say java short for javascript 
Java and JavaScript are actual different languages
what he said
JavaScript is more for website scripting, and Java is a language for... making games with it?
Lol
you can also make an operating system with it iirc 
its a giant messy clusterfuck that eats your ram like its nothing, and cant even run shaders without top gpus
What do you guys use for Discord bots?
javascript
that's because the minecraft devs are incompetent
java is way more performant than javascript
All languages are acceptable for building a discord bot
but java is not designed for games
nothing is really designed to make games
java has terrible graphic apis and relies on some weird opengl implementation
well except things like gml i guess
I was only explaining this because the guy didn't even know what Java is 
java is the most used lang for banking systems
lets bring c# in here 
wat
there is no C+++ lol
uh
lmao
the C language
there is C++
C !== C# 
π‘
java is similar to the C family, it does many similar things, but it relies too much on the java runtime
html is not a language
Hrml isnlt a language
i like it still
Nice autocorrect failed on that message
but if you like html, then go for javascript, because they designed to be used together
websites
make a discord bot with html
you easily can
wait discord.js has that webpack thing right?
yes
if i DM a moderator will they get mad
what about a bot in json
@earnest phoenix if you have a valid reason to be, no
well, you can write a bot in any thing, but you need something to run it
Samurai, I saw a bot coded 75% on json files but other then that it was like d.js or eris
cool
json wont run itself, but you can make something that will read and execute json files
If I still remember it was d.js 
how many years did it take y'all to master coding
you never "master" coding
there is an infinite amount of things to learn
scratch 
there is over 1000 programming languages
no way
no
wait
and there is things about one single programming languages that even people with 50 years of experience with it still dont know
i thought only 6
no there is way more
C++, Phyton, JavaScript, Java, & Ruby
sass, assembly
im so dumb
just take a look at esolangs :^)
F# 
brainfuck, chef, lolcode, whitespace
yea lolcode
C, C#, C++, Java, JavaScript, Python, Ruby.
All the languages I have in my head
scratch is not a programing language to me
OMG PHYTON OR javascrippt
python
javascript 
and even if you stick with only one language for years, you will always be surprised by what it can do
ok
just go python, it's the easiest
sure
i dont even know anymore
for example, that guy who wrote an animated globe in javascript with like 200 characters
get yourself in a million indentation errors
because i dont indent any of my code
every good developer start with python to at least learn what programming is even like
python enforces indentation because it doesn't have {} or ;
pretty much the only reason
take a look
at
this
The animated ASCII globe surrounded by its own source code. An quine in 1024 bytes of JavaScript.
woah
woahh
I can't select anything, it cancels out xd
there are things we dont even imagine the languages we use can do
thats cool
take a look at the source
inb4 the main purpose of that site is to secretly grab your ip
someone hacked my account, that's the first reason i started coding in the first place.
the guy who made it made several presentations on secret tricks with javacript that nobody knows
DNS 
the creator has a decent amount of projects
i'm getting a bit fluent in html
take a look at this, this dude is amazing
Slides: http://www.slideshare.net/aemkei/1024-seconds-of-js-wizardry-jsconfeu-2013 Spoiler: The World: http://aem1k.com/world/ We spend our days creating lar...
someone was DMing me to give them answers on SoloLearn...
Lmao
Sololearn is easy and it teaches the super basics of every language
That's why I am usually using tutorial point
But sololearn has a very good machine learning course
@spring ember i used tutorial point to learn how to use express lmao
i also used it to learn a bit about assembly
tables?
i'm at tables, i'll check it out
whats css
@earnest phoenix ?
@earnest phoenix if you are not joking it has a course there as well
What do you mean
What is it used for?
@earnest phoenix node.js is a framework for JavaScript that is meant for server side developing
how did it happen, tell me please!
I mean, considering there are no {}s in that
It Would throw an error, is it in a try statement that you set to say lul
???
Ih rught
Right*
Forgot you can do that, I always include the {}s even in 1 line if statments
I remember seeing an article about how that can be true. It's possible.
Yes thank you.
wh
@client.command(pass_context = True)
@commands.has_permissions(administrator = True)
async def kick(ctx, user: discord.User): # Kicks the user from the server
if ctx.message.author.id in id_whitelist:
print("[GLOBAL] Requesting command '{command}', OK.".format(command = command + ctx.command.name))
await client.say(str(user) + " has been successfully kicked!")
await client.kick(user)
else: # If ID was not in whitelist
print("[GLOBAL] Requesting command '{command}', BAD.".format(command = ctx.command.name))
await client.say("The person you tried to kick has a higher role than you, is immune, or does not exist.")```
is there a way i can make this any more simplified or shorter
i don't like how i format it many times but π€·πΌ
also i guess i should get rid of the id checker if i am doing an admin perm check right?
iirc, f"" enables string interpolation
Whats the difference between using console.log(err) and console.error(err)?
it's like stdout and stderr
stdout and stderr?
And yes, you should use the Admin permission check but idk why you need whitelist
command is a variable i made
it is just "/"
i would do command_prefix but then it overwrite so
i was trying to run the example code on the canvas npm page but it says Canvas is not a constructor? wat
Either f-strings or/and #MoreVariables
I also recommend you converting user to discord.Member instead of discord.User 
Why does not send to the channel π¨bot, I'll say right away, but I'm Russian and fuck, help me!
if (cmd === `${prefix}help`) {
let helpEmbed = new Discord.RichEmbed()
.setTitle("ΠΡΠΆΠ½Π° ΠΏΠΎΠΌΠΎΡΡ, ΡΠΌΠΎΡΡΠΈ Π½ΠΈΠΆΠ΅!")
.setColor("#ffa500")
.setDescription("m!color - Π£Π·Π½Π°ΡΡ ΡΠ²Π΅ΡΠ° HEX/RGB\nm!ping - ΡΠ·Π½Π°ΡΡ Ping Π½Π° ΡΠ΅ΡΠ²Π΅ΡΠ΅!\nm!idea - ΠΠΎΠΌΠ°Π½Π΄Π° Π΄Π»Ρ ΠΏΡΠ΅Π΄Π»ΠΎΠΆΠ΅Π½ΠΈΡ ΠΈΠ΄Π΅ΠΈ ΡΠ΅ΡΠ²Π΅ΡΡ!")
let helpchannel = message.guild.channels.find(`name`, "453655872527269888");
if(!helpchannel) return message.channel.send("ΠΡΠΏΡΠ°Π²Π»Π΅Π½Π½ΠΎ Π² ΠΊΠ°Π½Π°Π» `π¨bot`");
message.delete().catch(O_o=>{});
helpchannel.send(helpEmbed);
}
your finding the channel by name but using an id
you can just use bot.channels.get("channelid")
or whatever you have new Discord.Client() as can replace bot
Just wondering but do you guys keep statistics of your bot how often certain commands are used etc?
Add a counter to the command handler
i was 
it's quite useful when you need to know what feature you can discard and what feature is popular
Yeahh thats why im thinking about it
Looking for a bot or someone that could make a simple bot that levels up based on the ranks not the individuals.
That way we could make Red Team, Blue Team, etc get exp.
Ping / DM me! π
ok
so
@minor valve, wrong channel for that.
id have to restart the bot
which i dont wanna do
but
message.channel.guild.members
@pale glen Whats the error?
works just fine on the other server
read above
i mean i guess i could and just run it
off console
@earnest phoenix think im up to it
rejection ReferenceError: discordUserId is not defined is what it is
UnicodeEncodeError: 'UCS-2' codec can't encode characters in position 54-54: Non-BMP character not supported in Tk
any ideas?
i want the bot to be able to recognize any emoji sent in chat
What does 'await' outside function mean on python?
?
You can only use await inside async functions
Ok
@latent heron I believe Tk and that can only support unicode characters, and Discord uses some non-unicode characters. There might be a library to help with that, or maybe you can mess with a setting in Tk, I'm not sure
In the meantime I'd say just use the
try:
do_stuff()
except: pass
thing
There should be something, maybe something in the discord.Emoji object will help
alright thanks
Anytime
does this mean i could do
hmm
well i still want to try and get the emoji from the message
a way i can parse check discord.Emoji without needing to use context in the message?
A Message.emoji would be really helpful tbh
I'm gonna check if that's coming in 1.0.0 actually, one sec
Unfortunately I can't see anything
Can't see what?
Anything, duh
Lol
A way of extracting emojis from Message.content
Maybe running it through Message.clean_content would allow you to get the double colon version of the emoji @latent heron? It's discord.py
Oh
hm
well yeah it was either try that
or try splitting by : and then find the 2 halves
and then sending it again
or
it was that or i could have my message content split by whitespace and then check for it being in an array
does nt work @ivory sapphire
Maybe
Maaayyybe
You could split by whitespace, find a way to detect non-unicode charaters, run them into discord.Emoji (I think there's a way of just doing that), then if so, try to get something out of the objects attributes
yeah
discord.Emoji allows to run with str, id, has_colons
oh
shit
my god
so
args = message.content.split(" ") # Splits by whitespace
args_char = list(args[0]) # Lists chars in command arg
if discord.Emoji(has_colons = args_char) == True:
pass```
maybe?
sometihng like this?
ignore the discord.Emoji aspect but
has_colons in the docs specifies as a bool
now obviously it would be better to run discord.Emoji with the ext.commands as context but i want it to respond via on_message()
It's worth a shot
I think there's maybe some use out of discord.Emoji.id. So you know when you \ π it returns it's unicode counterpart? That's the id command for users, so with any luck discord.Emoji.id would return the same thing
At the very least you can iterate through emojis on the server, and check their IDs or names against whatever discord returns in the Message.content
yeah
i was thinking doing either doing a list of message content and check that way
or by just seeing (if args == ":thonk:")
and etc.
I don't think Discord returns messages with the colon syntax unfortunately
mhm noo
has_colons is boolean
and no
it doesn't
sadly
why we really need a message.emoji
if args.has_emojis(),
await client.send_message(message.channel, i)```
Exactly! That'd be so useful
I guess in the meantime we're limited to unicode emojis :/
π¦
tried making a pull request but i had some compare issue
im using async
hmm
very interesting
so message.content.emoji could exist
the most important question possible to be asked on this server
ππ or ππ or ππ or ππ each of them being used for an embed msg interraction go back a page or forward a page
i do not explore the emoji library often enough apparently, thanks
So eh, I have a basic /commands/ reader, that can have commands in that folder. Is there a way to read commands from additional folders, such as /moderation/ and /help/?
Current command loader:
client.commands = new Collection();
const filteredCommands = fs.readdirSync('./commands').filter(_cmd => _cmd.endsWith('.js'));
for (const moduleFile of filteredCommands) {
try {
const c = require(`./commands/${moduleFile}`);
client.commands.set(c.name, c);
console.log(`+ loaded ${c.name}.js`);
}
catch (err) {
console.log(`- command failed\n${err.stack}`);
}
}
The line under try (easiest to reference that way); could that be wrapped in a for loop, iterating through an array of strings?
I'm assuming string concatenation like that is possible in that language (JavaScript? -- I don't program in that language if you couldn't tell)
For nekos.life
I know that I go to https://nekos.life/api/neko for a random neko
is there a copy of that for https://cdn.nekos.life/fox_girl/foxgirl_117.png the other things that are on nekos.life?
@fossil oriole you mean u want a random neko command for your bot?
I know how to do that
https://cdn.nekos.life/fox_girl/foxgirl_117.png is not neko, that's foxgirl which doesn't appear in neko does it?
idont think so
So how do I do the random neko command for the foxgirl listing?
Actually, it gets better
https://cdn.nekos.life/fox_girl/kitsune_086.jpg Because within the foxgirl listings, there's also the kitsune listings
yea
looks confusing
tbh i dont understand what he/she wants
basically the neko command for the /fox_girl/foxgirl and the /fox_girl/kitsune listings
What does 'await' outside function on python mean I'm new to this coding stuff
It's also safe to assume it's not a good idea to download all the neko images, either, even if you put a good old "i did not make these"
right?
neko/foxgirl/kitsune
@fossil oriole you could do https://cdn.nekos.life/fox_girl/kitsune_{random number}
by constructing a string then making a call to the API with that string
Guess that'd work.
Probably have to put it in a try{} loop as i don't know the uppber bound of the images, and i'd just do a random between 0 and 1000 over and over again....
Who else uses discord.js instead of that uhhhhh discord.py
uhhhhhhh what is discord.py 
What
is there any way for a bot to check if a user has a role ID on another guild?
As long as the bot is on the guild you want to check
I donβt know discord.js but I can provide general information about discord API
Canβt u just do it the same way as if itβs the same guild?
no
Just get the guild object from the ID and go from there
hmm
client.guilds.get().members.get()...
or like message.guild.roles.get() then check if the user got the role
"on another guild" - the person asking, 2018
oof
oof
could members be substituted with roles @bitter sundial?
on the line you said ^^
yes
you'd get the roles in the server yea
where do i post meme
How should I loop through a guildmembers list with d.js?
@sand roost about ur question im also trying to figure out the most efficient way cause for loops will get slow if the bot gets rlly big
Π΅
UwU, someone suggested my lib 
What does 'await' outside function on python mean I'm new to this coding stuff
Ok
outside of function?
Ya
aye boys, hows it going anyway free to help when making a bot on https://discordapp.com/developers I am getting an error which states You are being rate limited. cheers and thanks in advance
Try refreshing your page
you probably refreshed too much
That means you're requesting too much information in a short amount of time
i made like 9 bots
Wait 10 minutes and try again
maybe it is a bug
it has nothing to do with the bots you made
Read up this
ty
but like in a short time span..
also another offtopicish thing do we have any Discord Bot Developers (freelancers) that are interested in continuing a project if so dm me. (also if this is not allowed im happy to del this message etc)
How do I trigger the vote event without voting?
Idk
You can't.
restarts bot after fixing a bug
many many errors
looks at server title
it was being tested
loooks at discord after seeing it was tested - and right after sending this first line, it said the bot got approved
AnD iT oNlY tOoK 5-6 TrIeS
ty eggsy
Google lol
Please post your error
hmm
about sharding with discord.js, are there any good guides about it? The ones I found only talk about spawning them but dont say much about other methods like broadcastEval, etc.
I haven't found any yet, so not that i know of
The docs explain the methods.
I see
i fix it
There an issue with the API right now?
can bots be playing rich presence games π€
Yes but they have to be approved by discord.
ok
If I read all of it correctly.
Crontabs.
henlo whis familiar with discord webhook under d.js 
@frosty sleet Yeam Im pretty sure i got it correct coz i can access the variables properties
And its correct
You can access the variables without authorization
Global.MeBot = await this.dblApi.GetMeAsync();
Console.WriteLine(Global.MeBot.PrefixUsed);
await Global.MeBot.UpdateStatsAsync(21);
I can do this without auth?
coz
this.dblApi = new AuthDiscordBotListApi(botDiscordID, botToken);
```
Do you use API token or bot discord token?
You can do some requests without authorization
I got it wrong here didnt I
Not post request
1 sec brb
1 second later
I needed to use the bot token didnt I?
Okay thanks @frosty sleet i was using my bot token lol RIP me

(I am contributing .net api, so soon you will have "has voted" and "isWeekend" methods
Even though you can make them yourself
?
damn no one knows ok
Has voted already on GitHub, but not sure if it's on NuGet
Ok..
Vote for DBL i presume
.
If(dbl.HasVoted(User_ID))
when i play a song with my bot and it finishes and i try to play another it says it adds to queue any fix?
heres the code
https://hastebin.com/etumuhilig.js
how do i get this fixed
hey is bots having an issue connecting to voice channels right now?
yes
yeah its fixed
Cool
Hi
hi
How are you?
im good, btw for normal chat go to #general , unless you have a programming question
That's good
ElectroCrysZtaL told me to come here for some reason
I'm in now what electro
Yeah click on that create an application
I did
Gimme a ss
You basically create an application and convert it to a bot account (there's a button in the application's page that does that)
Ok but
Ye
First, make a name for it
He had to go to bed
But
I'm here to continue for him
We both know each other I'll btw
Lol wut?
Andrrw
Lol okay
Had to go to bed
Yeah got it
He told me to continue
Weird though lmao
What is even happening
Idfk
Ok
@earnest phoenix good luck mate. I'm out of this π
And make a pfp for it
Lemme think of the name
This will take probably an hour

At least
And now idk how long will it take 4 u to figure out a name now
Ok
?
go to the bot tab and click create a bot user
Ye
yes
Save changes
Ok
then go to the bot page
Ok
Now what
Press Copy
I did
Thats the key to login to your bot
Ye
don't show anyone
Dont show anyone the token
Press regen to get a new one
Ye
Basically with the token i can do anything with your bot
And is the typing thingy broken?!
I think js is the easiest
My bot π
@blazing gorge what are you gonna learn
I think you need to learn a language first then come back in here. Learning by making a bot is not the best idea imho
This is my first time tbh
Hm
Plasma next time
Say demonic instead
@blazing gorge language i mean
π€¦
Before making a bot you need to learn the language
Yeah
Then u make bot and learn how to use api warper
?
but now he made a bot .-.
Lol
Learn how to use python or nodejs or something
Go back to glitch.com
@pale marsh this dude is on mobile
I noticed...
Shut up
If my computer would work I would be on it
But no it decided to fucking crashed ππ
I'm on the website
Ok, were helping you so lets just go straight ahead
Ok
Well glitch will get your bot banned if setup wrong
U saw a file called server.js?
And its not a good dev env
What?
Ss
Go to package.json
Ok
U saw that?
Ok
Search up discord.js
Ok
Click on the first one, but dont click on docs
I did
Ok send me the screenshot
U will see
K
delete everything
Yeah
Including var
Is spoonfeeding that good
Those dosent have to do anything
Ok

Error
What does the glasses do again I legit forgot tbh π
This has gone beyond spoonfeeding
?
Isnt it 'discord.js'
Your ' ' look brokedn
Spoonfeeding isn't really allowed, stop guys. @blazing gorge, you can find good guides at https://anidiots.guide and https://discordjs.guide.
Ok
I just went from ok to now confused
ThatTonybo its not even spoonfeeding anymore
Its worse than that
What I do when I get in there @sick cloud
Read it
Why
Well my idiots pr did not get accepted yet :)
?
Ugh i just want to spoonfeed him the gdm code and be free
Boi
Starboard code is borked af in idiots guide




