#development
1 messages · Page 2031 of 1
oh ok can you help me tho?
if you dont know how to code, your only option is to use existing bots that are customizable, or bot making systems that do the heavy lifting for you
okay i use dyno but do you know any bot which i can customize description username and profile picture?
you need to own the bot to customize that, or you can use webhooks instead of a bot, but webhooks cant do moderation
it's the other way around
you input bot into the code
but yeah, if u want your own bot, you need to get hands dirty
Uh can you teach me or anyone teach me?
I need a teacher
there are many tutorials and courses for beginners online
like codecademy, udemy, etc
w3schools js is too geared towards browser
well, it still teaches u how to use the languages themselves
if u learn browser js it shouldn't be too hard to move to node after
I mean, that's what happened in my case
yeah but also incorrectly teaches you that browser-specific stuff is part of the lang itself and exists everywhere
like document.getElementById
yeah but the important is learning the fundamentals
after that the learning curve for other langs gets lower
I also added c, python and java tutorials there should he want to fiddle with those
yeah, but for absolute beginners to start with html-specific js is kind of a mistake imo
starting with node and then transitioning to browser would make more sense
but these courses were written before node existed
so its understandable
Beginners should use a language with training wheels(static typing) so they learn the type system. JavaScript is too powerful to start with.
Never start to easy
not "powerful", but too lenient
js doesn't give a shit about what you do as long as it executes
c/java at least care about how u do things
copying code is for beginners
and then make something out of it 
Bb
HII people, so i have simple command that sends message to mentioned channel. ```js
const {Discord, MessageEmbed } = require("discord.js")
module.exports = {
name: 'msg',
execute(message, LineSplit) {
try {
if(!message.member.permissions.has('BAN_MEMBERS')) return message.reply('You cant use this command...')
let title = LineSplit[0]
let description = LineSplit[1]
let guild = message.mentions.channels.first()
if(!title) {
message.reply('This message need to have a title.')
return
}
if(!description) {
message.reply(`You can't send an empty message, please give it description.`)
return
}
if(!guild) {
message.reply('Please mention channel where you want to send this message')
return
}
guild.send(`**${title}**
${description}`)
}
catch(err){
console.log(err)
}
}
}
const LineSplit =
message.content.slice(prefix.length).split(' -- ')
const LineCommand = LineSplit.shift().toLowerCase()
``` here is also code for the 'LineSplit'
If I’m making a GET request to a website that has Cloudflare (I’m using axios), how can I “bypass” this restriction? I’ve tried Cloudscraper, but that package is old/deprecated so sites with a captcha don’t work.
what worked for me was using puppeteer
there's another problem though
hard to get it working headless
you can get it to pass in headless by spoofing a user agent but even then you have to pray to god for it to work
does discordjs embeds support brotli or gz compressed images?
can i send .gz or .br urls in embeds?
im not sure
i think u will get error like
unknown url or cannont access to the url
hmm
compression is handled by browser automatically
this is discordjs we talking about
what about canvas?
does it load bitmap or brotli files to draw on canvas
like if you send an .gz url, it will not work, but if you send a jpg/png url, if the server responds with gz/br encoding, then whatever library they use to make the request will handle it automatically
web compression is handled with headers and encoding
not with file extensions
yeah ik
and isnt .gz extension for compresed folder
im talking about djs
like 7zip
ouu
what canvas? i dont understand your question about canvas
you're using message.mentions.channels.first()
that will always get the first channel
ahhh, so what I can doo to fix that?
mmmmmmmmmmmmskdjdksoaooaoaoaoaalallalaalaooaoaaooaooooooooooooooooooooooo
yes
i would reorder the arguments
instead of !msg title description channel
do !msg channel title description
nooooo
put it on github at least
so you can laught about it 20 years later and show it to your kids
lol it is
its just outdated
people tell me "use git and you'll never imagine how you lived without it"
smart tnx man ❤️
i honestly find it really annoying and slow
yeah you get a great code history and backups but meh
i find it slow and pressuring
anyways enough git talk
implementing a compiler for the acpi AML language is impossible
luckily other people have done so and shared it to the world
so im using an open source AML compiler
theres also a library by intel called ACPIAO which is also an AML compiler but is basically a whole wrapper around the ACPI making it more heavy and less satisfying to work with + harder to integrate
why i want to delete is because i found a way to optimise my cpu scheduler code and broke my whole os doing so
it's all fun and games until your os shits itself
Slow how so?
slow as in i find it more inconvenient than useful
like i have to make the conscious effort to implement something (which I will be testing thoroughly anyway before pushing) then write a message and push
and also choose what i want to push and what i dont want to push
because i have a lot of test code laying around other files
Alright so I am thinking about how I wanna set up my code base so I can expand it easier in the long run. Say I have two classes WebsocketShard and WebsocketShardManager or whatever right. My thought process is, WebsocketShard will handle all the gateway stuff, and the Manager will handle spawning the shards as it needs it, or closing them as it needs it At least this would be my thought process
If my thinking is a bit flawed here please let me know as I wanna learn the most I can from this project and i'd like to do it right
nothing wrong with that
Alrighty
So I noticed yo u send the presence data with the gateway indentify right? So when you wanna change the presence later on how would you do so? Would that be done via the rest api?
imagine having to re identify to update your presence
oh god
people would reach identify limit a lot
I am kinda getting distracted lmao
ah discord library dev newbie
make sure to handle the ratelimit headers!
He’s gonna have fun implementing caching
Man I am still trying to figure out how I wanna handle the gateway connection I don't care bout rate limit rn
thats the most fun part
I will just not do caching :)
Who needs caching anyway pfft
Also what rate limit headers?
every request to the api discord will send headers which show you how many requests you have left before you are ratelimited
and when that ratelimit will reset
so your library can back off for x amount of time if the requests left reaches 0
because if you have too many rate limit errors discord will ban your bot for an hour
dont ask how i know
it was a nightmare
😠
bro when you disable compiler optimisations my os dont work anymore 💀
thats very worrying
lmao
its also very worrying assembly feels natural to me
just like how i feel when i open up a new javascript project
you are beyond help now
it only took around 9 months
i only really learn when actually applying knowledge to something meaningful
yeah
also i enabled all warnings for my os and its interesting to see some of the stupid things i missed
like testing for < 0 on an unsigned number
by the way if for any reason your c/c++ code execution abruptly ends and the compiler doesnt know about it, add __builtin_unreachable(); where the code is unreachable so the compiler doesnt emit a warning + can better optimize dead code
in my case its after calling kernel::panic which freezes the whole os in a function that expects a return
panik
https://www.toptal.com/developers/hastebin/uqaqiqezuc.typescript
How this looking so far?
^
separate those private helper functions into a utility file
they'll probably be useful elsewhere in your code
I also really like the codebase
@sharp geyser might wanna reset that asap
too late already scraped all data
I already plan on it
Thanks, I got a lot of inspiration from tim and djs code base but I am not doing it as messy as djs
:^)
Just not sure how I wanna handle sharding
I might not even implement sharding rn tho
lmao
Yea?
good luck
we stan replit
why?
replit
i know its copying
automod
tim my brain fried from this gateway stuff 
dead soontm
so whats the question?
that means your package.json file is missing a start script
It is missing a start script in package.json
json.package
yes
Yes
ok what should i write in the SCRIPTS
a start one
start what?
show the code you're copying
Thanks for looking at the description, you probably skipped the whole video and looked for the source code :).
So here you go
Links :
Source code :
Repl.it - https://replit.com/@Augustisgood/Auto-mod-bot
Github - https://github.com/displayminjadine/auto-mod-bot
Discord server - https://discord.gg/qYhV9dNb5J
Subscribe - https://www.youtube.c...
This one
oh hello bun
here
@sharp geyser can you help me?
How to make a discord.js auto mod bot
are you clicking the run button?
Yes
i installed npm
and everything
"scripts": {
"start": "node index.js"
},
is this correct?
no
Glad you took that as a compliment but I definitely was referring to the fact you left your token in the code 😉
@dry imp
delete closing bracket and add , after "node index.js"
smh
fuck u
ok
like this?
yes
cause you learn nothing by copying
^^^
i am watching java script tutorials
like misty here, he's writing his own discord mini library, which he has no prior experience doing
despite not knowing exactly what he's doing, he's learning without copying because he's solving problems as they come up
that's what development is truly about
problem solving
Well I wouldn't say I am not fully not copying
But at least what I do copy I understand
much of the code there is written by you
yee
because only you would produce such an unmaintainable mountain of shit 😉
that send method and those helper functions are all tim tho
if u loved me you would be on board with working on this with me ;)
you are allowed to copy code that you understand because when there is a problem, you know whats wrong
instead of whining about being bored and then playing games all day
I'm totally on board
cough
idk tho but New Error of the day is here!
I've just been stressing over exams so been trying to not burn myself out on development
especially considering I just had to take a 4 hour cs exam today
honestly felt this, lately I have been busy asf as well so i have been doing less gaming and development
google how the json format works
okay
json is a key-value storage format
it has a very specific rules for how its organized, if you dont follow them, the file will not work
JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax. It is commonly used for transmitting data in web applications (e.g., sending some data from the server to the client, so it can be displayed on a web page, or vice versa).
no trailing commas, must use double quotes no single quotes, no comments, etc
json is a way to represent data with keys and values
jayson
jaystation
{
"key": 15,
"anotherKey": "twenty-five"
}
``` ```js
jsonObject.key // 15
jsonObject.anotherKey // "twenty-five"
where should i write this code?
and if you try and make the key be wrapped in single quotes you will get yelled at
this was an example
it's just to illustrate how json functions
ok xD
pay close attention to the rules with brackets, commas, colons and quotes
and you will see that if your package.json is not working, then its structure is incorrect, ie comma in the wrong place, missing brackets, quotes, etc
okay
is this wrong?
It seems odd
did you fix your package.json?
idk 
not really
what happens if you try to run it?
its fine like that if it is meant like that
that doesnt matter
that also doesnt matter
But it shows that is does
misty just told the ts compiler that it's wrong and he has no clue what he's doing help
no it doesnt matter
then what do i do? tell me what to do in my dms i gtg i will check my dms later , if you want to tell me anything tell me in the dms i reallllyyyy need that bot
When i run it it shows that
did you press ctrl+C?
should i?
ctrl+C means stop/shutdown the bot
did not
you press the run button
show your package.json again
show your index.js
Check this
theres a LOT OF Random letters and numbers in index.js
ok
okay
pls dont show it like that
okay lol
yes the swear words
can't show full lol
@quartz kindle check dms
byee
I'm trying to do websocket magic fun stuff with misty rn, but I keep getting TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received an instance of Object
I'm doing this.socket.send(JSON.stringify(data));, and the error is coming from doing this: ```js
// Identify
this.send({
op: GatewayOpcodes.Identify,
d: {
token: this._token,
intents: this.intents,
properties: {
$os: process.platform,
$browser: 'ChungusCord',
$device: 'ChungusCord',
},
},
});
The send function: ```ts
private send(data: GatewayPackets.BasePacket) {
console.log(DATA: ${data});
if (!this.socket) {
return Promise.reject(new Error('Not Connected to the gateway'));
}
if (!isValidRequest(data)) {
return Promise.reject(new Error('Invalid Request'));
}
if (!this._ratelimit.timer) {
this._ratelimit.timer = setTimeout(() => {
this._ratelimit.timer = null;
}, this._ratelimit.time);
}
let count = 0;
const until = Date.now() + 60000;
if (++count > this._ratelimit.limit && ![1, 2, 6].includes(data.op)) {
const error = new Error('Socket rate limit exceeded');
// error['retry_after'] = until - Date.now();
// error['remaining_tries'] = this._ratelimit.remaining - 1;
return Promise.reject(error);
}
this.socket.send(JSON.stringify(data));
return Promise.resolve();
}
But the really weird part is that it never gets to the send function. The console.log at the top is never logged
nevermind
the stringify was screwing with it for some reason
what are you trying to do?
he is still suffering with this error btw
okay now I'm just confused as fuck
TypeError: this.sendData is not a function
private sendData(data: GatewayPackets.BasePacket) {
// ...
}
``` IT LITERALLY IS
looks like the type system is helping
your this var might not be what you think it is
where was the method called
same class as the other
this gets bound to global scope when run as a function
it's a great security feature
wait a minute
wtf
it's logging as a WebSocket
export class ChungusSocketClient extends EventEmitter {
``` (don't judge the name, I did it to be 100000% sure that there was no way some weird ass name conflict could happen)
how do you create the websocket?
this.socket = new WebSocket(GatewayConstants.GatewayURL);
export class ChungusSocketClient extends EventEmitter {
public socket: WebSocket | null;
public intents: GatewayIntentBits;
private _ratelimit: Ratelimit;
private _heartBeatTimeout: number;
private _heartBeatInterval: NodeJS.Timer | null;
private _sequence: number;
private _token: string;
constructor(token: string, intents?: Array<GatewayIntentBits>) {
super();
this.socket = null;
this._token = token;
if (!intents) {
this.intents = Constants.GatewayConstants.DefaultGatewayIntents;
} else {
this.intents = parseIntentArray(intents);
}
this._ratelimit = {
limit: 120,
remaining: 120,
time: 60e3,
timer: null,
};
this._heartBeatTimeout = 0;
this._sequence = 0;
this._heartBeatInterval = null;
}
// ...
I took most of this from misty who took it from you
I think
This is by far the weirdest error I've ever encountered
and the connect method?
public connect() {
if (this.socket) return;
this.socket = new WebSocket(GatewayConstants.GatewayURL);
this.socket.on('message', this.handleData);
}
this.handleData.bind(this)
welp that worked
functions passed to event emitters are bound to the emitter by default
guess I've got a few things to learn about event emitters then
you need to either bind them back to the container class, or use an arrow function as an intermediary
I told him this btw
I thought it was just a reference to the function
He didn't believe me
it is a reference but without context
I thought I was getting hard trolled by ts for the last hour
like the socket calls the funcion and sees 'this' inside the function body
this is why people need to trust me more 😔
it assumes its its own 'this'
because is the socket that is calling it
not your class
I assumed something was off because the error was coming from WebSocket.handleData
So I am trying to listen for the debug even on my client, but the issue is I can't listen to my debug events on my socket stuff if I do so, I wanna somehow either make it so when I do client.debug I also get the socket debug stuff or find another way to do it
async def start_loop(self):
await self.api.start_loop()
print("Post Count")
async def setup(bot):
cog = DiscordListsPost(bot)
await bot.add_cog(cog)
await cog.start_loop()``` ```py
Extension 'cogs.api' raised an error: AttributeError: loop attribute cannot be accessed in non-async contexts. Consider using either an asynchronous main function and passing it to asyncio.run or using asynchronous initialisation hooks such as Client.setup_hook``` I seem to still be having an issue with my code can someone help me please i am using discord.py 2.0
Its first time am getting this error
0|Real | Response: Internal Server Error
0|Real | at RequestHandler.execute (/home/ubuntu/Real/node_modules/discord.js/src/rest/RequestHandler.js:357:15)
0|Real | at runMicrotasks (<anonymous>)
0|Real | at processTicksAndRejections (node:internal/process/task_queues:96:5)
0|Real | at async RequestHandler.push (/home/ubuntu/Real/node_modules/discord.js/src/rest/RequestHandler.js:51:14)
0|Real | at async TextChannel.send (/home/ubuntu/Real/node_modules/discord.js/src/structures/interfaces/TextBasedChannel
anyone can explain me
why it is for?
That's not the full error
Hello , maybe someone knows how to make them see my site in a Google search (as in the picture)
you need SEO
oh man i didn't even read the message
LOL i just read the "as in the picture" and thought they wanted to replicate the rtl effect
lol
i have written a command, but what I want is that I can only give the x role to members with this command, not allow it when I want to give it with another command can anyone help?
Hello can u help. Me with this
look, I'm giving the role 1 with the x command, but if someone tries to give this role 1 with the y command, I don't want them to allow it
@spring plank wait @earnest phoenix is helping me
Then exclude/filter the role ID when running the Y command
bro delete node.js and install late version
here I don't know how to do it can you do it for me
Just check if the role mentioned in command Y is the one you want to exclude and throw an error
but how
how can i do it
create an array of role IDs you want to exclude and check if the mentioned role ID is in that array
i don't know that much about bro, so I had it, but I forgot that I haven't written for a long time, I'd love it if you'd do it for me
ııı ups.. i am using v12
@earnest phoenix help me come to dms
wouldn't be a problem
Y a t il un français ?
Holy
okay thanks bro
Est-ce que quelqu'un voudrais travailler sur un projet avec moi j'aimerais bien que quelqu'un fasses un bot si quelqu'un le voudrais bien un bot qui fait tout
French?
what ?
That's just a cut off portion of the error log, show the full log so people can actually help
French?
that's on discord end, there's nothing you could do about it
Would someone like to work on a project with me I would like someone to make a bot if someone would like a bot that does everything
Mp me who can but free please
a bot that does everything 💀

i would like someone to make me a free bot
bruh
?
That’s no ad platform
Nobody does anything for free especially coding - spending hours just for you

a bot that does everything for free 💀
no, just put my bot's token in one of the codes
Pls
I have no words
idk anymore.. gl dude ig
And you’re wrong here as well
spammer 💀
Then do it yourself
If you pay me $1500 I'll build you a bot

$1498!
sure here's the code https://cutt.ly/PGCUxqv
1499?
Thx you
I would like to make a multifunction bot but without coding you have github links?
Hello
can anyone help me with thishttps://www.youtube.com/watch?v=ymEuiHY7__k
In this video I'll show you, how you can create an All in One Bot Discord Bot without coding or downloading anything!
Repl.it link/Bot Link: https://replit.com/@NotLAZER/All-in-One-Bot-Discord?v=1
Hosting: https://uptimerobot.com/
server.js codes: https://pastebin.com/wcdypYmD
Time Stamps:
0:...
I am tryna make it 24/7
but i get this error
https://just-read.it/ moment
people who know postgres
how do i force reset postgres user password?
idk what the set one was as it was installed with an install script
well
i can't login
so i can't run that
yep that worked
ping?
Is this correct?
Should i not ping you?
This
in the video too
Look
In this video I'll show you, how you can create an All in One Bot Discord Bot without coding or downloading anything!
Repl.it link/Bot Link: https://replit.com/@NotLAZER/All-in-One-Bot-Discord?v=1
Hosting: https://uptimerobot.com/
server.js codes: https://pastebin.com/wcdypYmD
Time Stamps:
0:...
It is in Replit
@earnest phoenix
in the video go here
in the timestamps
How do you do that?
🧠
My brain is dying
okay
I DID that
Me everytime I look into here
i did
you ghost pinged me
generally try not to do that
Ooo replit
What's that repl name even
@earnest phoenix can u tell me if https://uptimerobot.com is safe?
Idkk mann
I logged in my account in it ;-;
uh oh What do you mean Probably?!?!?
Uhhh i am starting to freak out man
I hope its not an VIRUS or anything HARMFUL Or DEADLY
It is safe
all it does is make a request to a server every 5 minutes
to see if it responds or not
and destroy your pc every 10 minutes
kekw
wait whattttttttttttttttttt
and load a virus up your ass
and force you to eat broccoli
and force you to eat spinach
my worst nightmare IS DIET
and vegetables
are you fat?
DIE
are you 6?
Nope
are you 9?
No i was born yesterday
Ban
: )
lmao
Bro
lol
Joke
being fat is against the tos
I am 15 currently next week is my b day
suspect test
And i am turning 16
Ok
But then we would have no discord moderators
And we would not have Tim
nepotism
they bend the rules for self benefit
typical corporation
Ikr
100% safe
okay
and 1% trust worthy
what about the 1%
1% uptime robot
plant crysis
protogent
What is haskell
Just kidding
meme
I already did that
if educative.io has it I would use their guides
tff?
I'm just looking for extra resources to read
Text font
stands for this the fuck
its urmom
ikr
True type font
lol

Jesus christ
I need help
Save me from this hell
ahyes
Show your code
I WILL CLOSE THE GATES
AND GIVE YOU PURE TORCHER
No
i never had that error in python
where
in python you have indentation error instead
i only know Basics
Do you even know what the word know means
I AM A NUB
Lemme use my telekinesis to see what your code looks like
tahts more like skill issue
goggle
Take a screenshot I ain't checking that myself
and for gods sake put it in code blocks
py-script
js2py bridge ez
yea he clone
v
yt vid
dude
i clone
dont ask him to take a screenshot pls
Where is it

I'm on mobile
Codeblocks here are cursed
Please don't make him do Screenshots of code
This place is quite the clusterfuck
Go to Brasil
Make him take Photos of his code with his phone

yea importing discord.js twice
big brain
So fucking stupid
Can you shut the fuck up genuinely
I agree
This is over exeggerating
Not even that
Its like a circuis here lol
You're throwing unnecessary shit into an escalateed situation and are doing nothing useful
TypeError: Brain can't be null
Expecting HumanBrain received null
okay
He sent the link to his repl, didn't he?
index right?
@earnest phoenix try reading the https://discordjs.guide and do it step by step before you do anything else
Dude what the fuck is this
okay
Don't watch a youtube video
he forgot new Array
Ah youtube videos right
Look at https://discordjs.guide
ty
I DON'T KNOW CODING
Look at the guide
There are resources in there too
okokokokokokokokkkk
To help you learn how to code
Yes
Take one of these guides first then come back here once you have actual knowledge
@earnest phoenix Can you publish your repl and send the link to it?
Didn't he do that
I don't know, the link he sent doesn't seem like his and I cba to check it while getting dressed
Don't learn javascript, learn something easier like c++ @earnest phoenix
Id suggest him to learn how to code in js first before even trying to make a discord bot lol
Lol
Discord bots are more of an advanced thing
or c
or rust
or assembly 64
i am not an idiot
You store your token in the environment variables?
Bro
learn php @earnest phoenix
BY HIDED I MEAN I DELETED IT
Anything but php
Id recommend learning a different language before learning rust to get familier with the concept of programming as a whole
lua
Oh. But how are you gonna use it if you delete it?
Yeah lua is fine
Can you stop spamming caps
Don't be under pressure lol
Learn game development with unity and C# before starting discord bot development @earnest phoenix
Eh whatever
You are not being chased by tigers
Be more serious
hes being chased by angry devs
lol
So he forked it without changes and the bot doesn't work?
BROOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO 5 PEOPLE AT A TIME ARE TELLING ME TO LEARN C++ C# AND UNITY GAME DEVELOPMENT
He probably did changes
Chill oit
Learn matlab and objective c
its spelled "torture"
Also you need some perl knowledge
not torcher
PAINN
and php
Learn swift and make iPhone apps
No
Have you learned perl yet?
GAINT
Learn javascript and react and svelte and vue and angular and solid js and mantine and nuxt and nextjs
Giant*
lmao
And RxJS
Also learn astro
I KNOW I SENT IT
Also
Astro is pretty cool as a static site generator
Switch to emacs
solidjs is quite interesting, but svelte looks more like my type of thing
First i will learn how to not die
of thong
Learn html and make a discord bot with it
Instead of react
You gotta learn the dot language
Which is just the entire Website being javascript
This whole chat be trolling lol
Also you need to write an emulator for the 8086 microprocessor

Write it in scala
RICK ROLLED
okay..
-ban
Can everyone honestly stop

wasn't this a spam?
No
No snitching
Not necessarily
Because it showed ur code
@earnest phoenix What changes did you make to the project after you forked it?
Can you just give a link to ur repl fork
i changed my token and nothing else
Then the original Code must be broken
Could you delete the current repl and re-fork it?
that's why cloning is a bad idea
And then screenshot what you changed?
I still think you should rather use code from the discord.js guide
Its way better than the code you forked
I forked it from here
that has 2 imports of the same package
idk if the quality is bad or my discord broken
neither
144p screenshot quality
the image is tiny
Because i zoomed out
or i would have sent 4 screenshots for each
folder
How about you
Try reading https://discordjs.guide
I don't wanna be obnoxious about it
that wont help him
@earnest phoenix
Why
yeah wait
But the code he copied in general is terrible lol
at the end of the day, starting a bot from zero is easier than trying to fix someone else's code
Yes
idk why newbies think the opposite
yes because it was made by a youtuber
exactly my way of thinking
Im just trying to tell him to make his own code or at least use code from the discord.js guide
they just put some shit together that works just enough to make a video for their yotube channel
It worked before but after i tried making it 24/7 it stopped working
Anyways im outta here im tired of this
then go back to how it was before
I gave my advice and thats it
😂
no
it's legendary actually
have you ever thought of naming a sqlite db json ?
personally I didn't
I am Bored
quick.db does that
its quickdb, they store json inside sqlite
Yes
wtf ?
huge brain
better than jasondb
sqlite.json
lmao
Also
wh-
eh quickdb is fine for small projects
ye, that's why I booli people who use quick.db
it's a terrible way of using sql (or not using at all)
wat
Do you even listen
now I feel interested enough to try quick.db
people dont want better options, they want easier options
not when 10 people are talking at the same time
Yes but there are better & easier options lol
all tables have 1 column - JSON (iirc), all the data goes in json including the id
I JUST NEED HELP WITH THIS
I thought they used 2 cols
like key and value
Also im on mobile so I can't help you that much
then I didn't recall correctly
how lazy can ppl be ?
Not like you
Ok
but yeah, still a terrible way of storing data
especially given that people who use it usually store huge amounts of data per table
no
I mean I do that
not quick.db
never watched their code
"token": "My token is here",
"prefix": "!",
"ownerIDS": [
"ownerIDS"
],
"mongo": "MONGO_DB_URL",
"everyoneMention": false,
"hostedBy": true,
"customFilters": {
"clear": "dynaudnorm=f=200",
"lowbass": "bass=g=6,dynaudnorm=f=200",
"bassboost": "bass=g=20,dynaudnorm=f=200",
"purebass": "bass=g=20,dynaudnorm=f=200,asubboost,apulsator=hz=0.08",
"8D": "apulsator=hz=0.08",
"vaporwave": "aresample=48000,asetrate=480000.8",
"nightcore": "aresample=48000,asetrate=480001.25",
"phaser": "aphaser=in_gain=0.4",
"tremolo": "tremolo",
"vibrato": "vibrato=f=6.5",
"reverse": "areverse",
"treble": "treble=g=5",
"normalizer": "dynaudnorm=f=200",
"surrounding": "surround",
"pulsator": "apulsator=hz=1",
"subboost": "asubboost",
"karaoke": "stereotools=mlev=0.03",
"flanger": "flanger",
"gate": "agate",
"haas": "haas",
"mcompand": "mcompand"
}
}
This is my config.json
so uh eh.. huh?
Index.js and config.json are the only files i edited
@earnest phoenix what the fuck is this
welcome to floating points
I did while hosting
okay
damn I cant find examples of how quick db stores data
Should have made it a comment lol
Its like that now
Try clicking the icon on the top right
same error
To format your code
Invite one?
I won't invite
nah
No
?
No
@earnest phoenix
oh wait.. here
ayo wtf ?
i dunno its in the website you gave me
It looks fine for me
anyway I found it here
https://stackoverflow.com/questions/588004/is-floating-point-math-broken
you didnt add the closing ) and moved that thing to a new line
Computer issue
If you don't like it
Use Math.round()
@earnest phoenix
at this point just hire @quartz kindle to make a bot for you
pam pam PAAAAAAAAAM
At this point delete ur bot and look at a javascript guide
you still didnt add the closing )
ok wait
@quartz kindle how much do you charge for a bot 
NoT tHe PlAcE tO aSk FoR a DeV

-needdev @rustic nova
@rustic nova
You seem to be asking for something you don't have experience for or something that hasn't been done yet, but really need for your bot/server.
You can hire developers from Fiverr or Freelancer to code the things you need for your bot/server.
that part is good now show the full code again to see if theres still something wrong, that last line should not have a red thing at the end
9999999
say less, i need boat with ping command ok
very good deal
I only charge 1 shitcoin
Yes
Besides you can't directly fork a bot and just submit that because it will be declined
Yeah and also theres an error
and it runs on v12
if I were an youtube I'd make a clickbait bot tutorial but will instead read out loud each single line of the big java book
Build a bot on 18.0.0 and host on replit
How to make a BOT FOR DISCOD 😁😁 [EASY] [GONE WRONG] [POLICE!!]
So.. like 5 US$?







