#development
1 messages · Page 910 of 1
if (!args[0] || !!args[0]) {
return message.reply(`:warning: Please give argument!`)
}```
there
use that one
I think he didn't understand.
don't do double negation
smh
😄
in a medium article
do !!!!!
i hate medium
tbh, it was the tagline that got me 😄
it's not wrong
on medium you are free to state your opinions, regardless of how awful it might be. which is.. fine. but it just clutters usefulness
Can I modify my bot's page look using css by using it in bot's description?
yes
Thanks!
my bot (dekbot) does the same on its dbl page
a lot of the code i 'borrowed' from the pokecord and medal pages. 🙂
xD
i think you have to keep all elements visible, and arent allowed to hide ads, but i think thats all
whats your bot?
just another music botum
i wanted to do something on mine, and I am a webdev. but I also got bored and just discarded my changes
i also didnt bother modifying mine
the only thing i did was changing "ONLINE" to "ONLINE AS FUCK" lmao
lol
but then it got deleted anyway because i fetched description from github
your bot got deleted, or the 'online as fuck'?
ahhh lol
and i didnt bother adding it back
should re-add it 😄
I thought you used JS to connect CSS from github for a second
i need to rewrite my both my github and my description anyway
since i launched a big update a couple months ago, and didnt update the docs lmao
lol, nice
nobody reads those anyway
READ THE DOCS
I mean I would say I don't but rtd doesn't load for me so I just can't
anyone here use some kinda lootbox system?
i wrote my own, but i'd like to check what features others have 😄
i always thought about doing something like that, and then I ask myself whats the point lol
i have actual purchaseable lootboxes. my point was to keep track of how many ive sold,, the profit ive made from them, and to handle the opening of them with weighted odds 🙂
also has a 'safe' mode, so it will never pay out an item with more value than half the total earnings of the lootbox
like, if the lootbox only made say 5$, and you would have got an item worth 10$, it will keep rerolling till its an item with a value of $2.50 or lower
cant be paying out what i dont have, ya know? 😄
what
using IRL money?
tbh, all lootboxes are rigged 😄
yes, its possible to use irl monies with my system, but it doesnt handle actual financial transactions, only keeps record of the box events
like umm
cheater
bruh moment
who’s the cheater
^ that box costs 1.99, it has items worth as much as 4.99
it keeps track of total earned from 'purchases' and total lost from 'openings'
it has the 'safe' flag, so will never payout more than half its total earnings
If I was really doing something like that, I’d do IRL prizes and that money can go straight to charity
tbf, when i initally wrote it, it was for a real life lootbox game that sent you the prizes direct from amazon 😉
amazon capacha are a dick tho
and didnt want to pay some service to do my capachas
I wanna do something like micheal reeves did (#memes-and-media)
Okay so no one is answering over at there server
so i thought i should bring it here
im attempting a version command only for me so i can set a version for like the status and stuff
my code
const { specialid } = require("../../loaders/reader");
module.exports = {
config: {
name: "version",
usages: "db!servers",
aliases: ["v"]
},
run: async (bot, message, args) => {
if (message.author.id !== ownerid) return;
let version = args[0];
if(!version) return message.reply("what do you wanna set it to?")
let dog = bot.db.set(`version`)
message.channel.send(`Set as ${version}! Expect it in the status shortly. ${dog}`)
}
}```
Error
at Object.set (C:\Users\Cools\discord-dogbot\node_modules\quick.db\bin\handler.js:55:36)
at Object.run (C:\Users\Cools\discord-dogbot\src\commands\owner\version.js:14:26)```
no value specified
value?
if you want to use it as a key, yes
the key is what you use to later get that value using .get() or .fetch() depending on your db
what do you want to do here?
I want it to store it in the database, then be able to use it somewhere else. Like in a stats command where it shows like owner and version and etc.
you want to save a version specific for a guild, right? so you need to use .set()
don't do that in 2 lines, you can import multiple things by doing this { thing1, thing2 }
@quartz kindle I want it to save it for the bot entirely, like it's for the bot usage it's self, not for you know guilds showing stuff.
like if you do stats it shows different for a specific guild compared to a different guild?
i mean, i dont know what exactly you want to do, but its as simple as this:
db.set("a","myversion")
db.get("a") // myversion
is that the quick db thing? i see a lot of bot devs using that
That definitely looks like quick.db with that advertising in the error message
I've always hated that package
is it actually 'bad' though?
Yes
ahh yea, there is a fair amount of newbie coders who try to make bots
lol yea
but i mean, not everyone wants the same from their database
if it works, isnt buggy, and is easy
then is it really 'bad'?
They advertise in their error messages, their tutorial videos teach new coders bad practices, and overall the package itself is just bad and not efficient
ahh, hadnt noticed the advert 😄
what advert
cool
your one to talk, mr updated months ago and ignored the docs 😄
lmao
lol
at least i have the best help command
my help command sucks 😦
xD
this is prob a simple fix
but im confused for it
let version = bot.db.get(version)
bot.user.setStatus('available')
bot.user.setPresence({
game: {
name: `Version ${version} | db!help`,
type: "PLAYING"
}
});
});```
at Client.<anonymous> (C:\Users\Cools\discord-dogbot\src\index.js:23:30)```
@astral yoke you're trying to access database version?
long story short i have a version command and trying to have it get from database then put it in the status
Version is a reserved keyword
that's easy to do, but what you could do is:
${bot.db.get(version)}
without the let version = that
also ye, it might be reserved keyword
just set up your own versions on the db in your main table
then manually change it with an update command or something of the sort like I do
and code in if you want it to also update status when you change it
no probs
then you'd wanna do a query
This is my version command.
module.exports = {
config: {
name: "version",
usages: "db!servers",
aliases: ["v"]
},
run: async (bot, message, args) => {
if (message.author.id !== ownerid) return;
let version = args[0];
if(!version) return message.reply("what do you wanna set it to?")
message.channel.send(`Set as ${version}! Expect it in the status shortly.`).then(bot.db.set(`version`,"version"), bot.db.get(`version`))
}
}```
that's a bit weird 
Very weird
if bot.db is the connection to the database, I havent used version, i've used query
to change the version with it
did you define version at all?
for?
Lol
if your key is "version", then you need to use it as a string
not as a variable
.get("version")
and you didnt set your version properly either
you set it as "version" lol
eveytime i try to play something with my bot it says this
I could not join the voice channel: Error [VOICE_CONNECTION_TIMEOUT]: Connection not established within 15 seconds.
Anyone ever heard of the issue of bots going offline for a few seconds then back on without any errors lol
I mean do you start it then stop it
Seriously?
🤷♂️
Of course not lol
Is your bot just going offline or is your app exiting as well.
Well what’s your code big man
@earnest phoenix What library are you using?
Js
I'm using node lol
It works, but it just doesn't reconnect
That's still not a library. A library for example would be Discord.js, Eris, etc.
maybe your bots struggling to maintain internet connection which is why the bots going offline but the app isnt?
Listen to the disconnect and error event and log its contents to your console. See if something is going wrong.
Me?
noop
Do you guys think amazon is a good vps because I’m gonna switch to it tomorrow
Do you know why it won't reconnect though?
amazon isnt bad, they offer a lot of things. i recently tried contabo for bot hosting and am really happy with it so far 🙂
Sadly not but what do you mean by "It works but doesn't reconnect"?
I feel like amazon is a trusted vps.
When it closes it doesn't reconnect
thats how many domains are registered to a single ip address i have with amazon
that suggests they cram as many users into a single server as possible
tbf, that is via heroku, which uses amazon.. so could be their fault.
Any ideas on how to fix where if I close it, it wint reconnect
You destroyed the socket but then try to resume it?
Oh
Well you called this.destroy()
Ohhh
What is socket? I want to look it up
It's a websocket
from what though?
ım turkish no speak english
@raven urchin you need to check your close codes
not all closes are resumable
for example if you get an invalid session close code, it will keep trying to resume forever and will always get an invalid session
How can I fix it?
check your close codes
Aight
if i put css in the description while submitting my bot will it show up?
yes
Hi
hi
Hm, I don't think you have ssh access to heroku
you're a # and your life is all about collecting 0's
lol
dunno how I'd run lavalink on heroku
how can i use custom emojis for all shards of my bot?
@near ether go to your server, type your emoji but with a backslash
i have it working and using custom emojis, the issue is when i shard
bc all but one shard will be in that emoji server
how can i get the other shards to use emojis found in one server only?
so you dont necessarily need to be in a server to use their emojis?
nonono i think im explaining it wrong or im missing something
so lets say
i have shard 0 and shard 1 of my bot
your bot can use any custom emoji from any server its in
oh, idk how shards would affect it tho
so shard 1 can access emojis from a server that only shard 0 is in?
im having trouble with the css on my bots page when i try to add font-weight: bold; to the p.bot-description it doesnt work
so shard 1 can access emojis from a server that only shard 0 is in?
Shards don't affect the emojis that your bot can use. It can use any custom emoji from any server that it's in as long as it has the use external emojis permission
on
no*
afaik you can't just try to use the emoji id and name to send it to another shard
there was a method you could use
You could spawn the server the emoji is in every shard
but I don't know if that would work
does any one know why css p.bot-description{ font-weight: bold; color: black; } this doesnt make the text bold on my bots page?
is that a thing? like, having a particular server in more than 1 shard? doesnt seem like it'd be allowed, maybe tho idk
damn
bc i have some custom emojis critical to using my bot but i cant access those custom emojis unless the shard is in the same server as the emoji
yea thats a thing thats now concerning me, since yesterday i added custom emojis for my bot to be using in the servers hes in 😄
haha yeah i legit just added it a few days ago but not sure how to progress
but maybe the emoji are tied to the bot client, and not the servers?
i wonder how bots like mudae do it, with the whole kakera thing
lemme read the docs rq
oooo yea thats a good point
is the tester function i use to get all my bots custom emojii
so do you think that we could broadcastEval the cache to all the shards?
ah
i has only newbie botum 💔
lmao itll grow dont sweat it
lmao, maybe it would if it wasnt buggy, my server counts been hovering at 80 for a few weeks 😄
im in the process of rewriting the entire thing for node 12 and discord.js 12
so no quick upload of the new version till its done 😦
i didnt bother implementing sharding because I know my bot wont hit anywhere close to enough guilds to need it
im at like 47
regular link, or fancy link?
regular
in a way yes but i want it seprate from it
[shownname](https://www.dekbot.com "when you hover i will appear")
^ use that as the field value
and it will be a fancy link
that wont show the link url, it will show 'shownname' and has hover text
ok
yuh ok ty very much
np 🙂
how do u get dev role
oh ok
I am here to tell you the tragedy of
async def on_message(ctx)```
and how I thought I ruined my code
so I reverted all changes through github
and then realized I forgot to add
await bot.process_commands(ctx)
thus all was lost.
It was a three hour process.
The N/A in the blue how does it get activated? I tried googling but got bots like “captcha bot” appear 😂
-servercount @onyx hare
@onyx hare
To have your bot's server count displayed on DBL, please read the documentation on server/shard posting. Click here to see the docs.. You may also find #312614469819826177 useful; however it is strongly discouraged as most of the examples are extremely outdated.
what would be the most efficient way to turn an object into a regular string in javascript? i know i can just JSON.stringify it, but that results in random unwanted characters as shown:
i mean, it works ofc, but it'd rather not have to regexp and replace after stringifying if possible
i guess i could just pull the id and keep it simple
but there is a chance that more than just the id would be needed, converting the object seemed safest
i see no random unwanted characters
dude that's json
Those are how objects are are structured though
yeah
yea its json, i know this, i said this above
try map then
im asking for an alternate way to convert an object to a string that isnt json 😄
Stringifying JSON is gonna give you stringified json
hey, does anyone know how to do a like kill (member) command. because mine is simply just not working
send the code
what is not working about it
if(message.isMentioned("700608658416861236")){
message.channel.send("my prefix is:" + prefix)```
what is it intended to do?
when i mention the bot it doesnt send anything
'kill' seems vague imo
What library? What version?
send the code
js and lates
so we can help
how do i send code lol
copy paste?
bot.on('message' , msg=>{
if (msg.content == Pyro!kill ${member})
msg.channel.send(Kills ${member});
})
paste bin
ive no idea what dank memer does, i dont use discord bots often 😄
Where did you define member
ohh so that might be the problem
shouldnt it be ===
do msg.member
== works
== is loose, === is strict.
^
They both work but === is 99% better.
^^
kk
if(message.isMentioned("700608658416861236")){
message.channel.send("my prefix is:" + prefix)
}```
when i mentioned my bot it doesnt send the prefix
yes
The argument should be the instance.
Not the resolvable.
If you want to check if a user was mentioned, check message.mentions (MessageMentions)
so
if(message.mentions === "<bots id>"){
code
}
That's not valid Dekita.
ahh, works in v12 😦
^ i use it for checking my bot mentioned 😄
message.isMemberMentioned( member ); is what i used in v11
It's all fun and games until a channel/role/user has the same ID somehow
I just like checking the collection strictly.
If you want to check if the bot was mentioned, I recommend you use mentions.users.has(id)
why not do
if (message.isMemberMentioned( guild.me )) {
// code...
}```
guild.me seems valid for v11 🙂
your bots member within that guild
user* w.e
i guess technically its the member, but yea, w.e
if(message.mentions.users.has("700608658416861236")){
message.channel.send("my prefix is:" + prefix)
}```
doesnt work
if you only check for the mention though, then someone could do a bunch of other words and then tag your bot, which would be allowed unless you check for that
well i really want to check if thats the first thing
cause i have a kill command and if they mention the bot in that command i dont want it to send that
do have a means of checking command args ?
just check that the args are empty as well as bot mentioned
how would i do that?
depends on how your code is implemented
my arguments are stored in an array of strings for each argument. i just check its length === 0
so how i define args?
the example should work but it may depend on how you implement it
args - in the way i am meaning, are just the extra words that are typed whena person uses a command. for example <prefix>commandname arg arg arg
to get the arguments, i parse the message content, and store each word in an array
that array is my args.
!args.length kinda does that exact thing, just slightly different logic
args.length is equal to how many elements are within the args array
if its 0, then javascript counts it as 'false'
i
so if its !0, then its true
thus, if any argument exists, !args.length would return false
questioning my own logic now, perhaps im not the best person to simplify this 😄
well i still need to get the mention to work
if (message.isMemberMentioned( guild.me )) {
// code...
}``` should work fine
guild not defined
bad habit from my ruby days 😛
when the naming convention says camelCase for vars and functions
and Pascal case for classes
lol
I mix naming conventions in cpp
but like
cpp's naming convention is make-shit-as-you-go
i use camel for functions, variables i do 'snake'
hmm
aaaaaa i still cant figure out how to share custom emojis across shards and ive looked everywhere
unless its gloabl, in which case its full caps
does anyone have any ideas?
how do you spawn servers like that?
Idk
thats a custom emojii from idk where
Never done that before
you can just have some database of those link urls maybe?
or you can get the emoji from that url
yeah
you can just store the emotes into mem
and then use them like that
the emojii id there isnt the same one that discord would use with the :identifyer: thing
i have them saved to memory on the shard that serves the emoji server, but the rest of the shards cant access it and i cant figure out how to import the emojis to other shards
@queen needle , yes, 'guild' isnt defined because you have not defined it.
you can get the guild from the message
ik
message.guild
if(message.isMemberMentioned(message.guild.me)){
message.channel.send("my prefix is:" + prefix)
}```
like that?
assuming 'message' is valid, yea
doesnt work
thats the code
the file
^
are you sure i dont use a command handler so its kinda a lot?
just the code for that command
if(message.isMemberMentioned(message.guild.me)){
message.channel.send("my prefix is:" + prefix)
}```
for the command is that
so all of my files code?
No, just that single file.
i think all the code is in one file
it is
in your umm
yeah so show that
yes do you just need that?
client.on("message", async message => {```
ok, so message should be defined. what is the error your getting when you try to use the command?
you just paste the file in this channel, it's not hard.
he might not want us to steal his awesome command ideas 😛
ahh fk that, just post it lol
gets ready to steal all the things
make sure to remove any bot tokens before pasting
bot token is in seprate file
ahh mmk good
haste bin
i hate how that site gets more traction than pastebin now
yeah
in what way?
literally any other paste service is more superior than pastebin
no because it doesn't need any modifications
dark theme by default,simple and intuitive UI, no ads, no trackers, no paywall features
perfect
wow dude, you really need a command handler in amongst this 😄
ik
shush
leaked
lol
dont go through and read all the commands lol most suck
so it turns out custom emojis are shared across shards when youre just sending them to chat like
but not as reactions
what?
i know you can definitely do it, ive seen mudae and plenty of other bots do it
i have no clue how they got around that tho
need a good music plugin that would work on heroku dynos (linux-based)
why wouldn't it work on a heroku dyno?
@neat ingot i found the solution online at
https://github.com/discordjs/guide/blob/master/guide/sharding/extended.md
never thought such a specific question would be answered in the actual guide lol
oh, thats quite a read there 😄
haha yeah its a full-on tutorial, but its very informative
so yea you basically have to eval each shard then
which really sucks bc its not that efficient but im sure theres a way to cache them
that solution likely wont work for me, as my bots contained within a docker container, and the intent was that, when i need to shard, ill be using multiple docker containers, one for each shard
which i dont think i could then broadcast anything without custom implementations
damn
lmfaooo
how to verify on chasity bot?
Anyone knows what is wrong with this? (Java)
JDA
@vestal sequoia i have a friend who knows jda and he said that:
the class that has that function should extend
ListenerAdapterand be registered asJDA#addEventListener(<class extends ListenerAdapter>)
random af: anyone know if waifu2x works with gifs?
anyone help me please
answer to my question incase anyone is interested: not by default, but there is an exxxtension with gui that supports both gif and video. 🙂
ok
how to get a server verified?
[python] hey, so i have a string that for example is:
200:ANSWER:date=06/05/2020&city=Eilat&temp=22.15&text=sky is clear
so how can i make a function that gets the string and returns a tuple that is: (22.15, "sky is clear"), which is the temp and text, but the text, temp, and city can always change so i cant use slicing
use split
aren't those just url parameters
how to get a server verified?
he also might need to use decodeURIComponent
i thought only bots and bot devs could be verified?
wait wym split?
have you ever heard of DSL @neat ingot
nope
split("&") returns an array
https://discord.com/verification @ebon dune
thanks
that's server oh I'm stupid af
chances are you don't qualify for verification though
googled DSL and urban disctionary has some interesting results 😄
along with partners
discord.com isnt top.gg tho 😄
can anyone help, i know this is simple but i dont know why the top code, circled in blue, will run perfect, but the one in red wont work as a command event though i think i typed it in correctly. same as a tutorial i was watching
that's server oh I'm stupid af
anytime i make a command using @client.command() it doesnt work
watching
there's your issue, stop using youtube tutorials and follow official docs
i am doing that too. just this code is simple and is working for everything that ive seen, just not for me
i wrote this all though, didnt copy straight from anything
don't you need to pass in the context?
im reading the docs rn and ill check but i think youre right
@ebon dune https://discord.com/verification
Verified server program
Ah beaten to it
I heard applications for verified servers are now closed btw
currently trying to use waifu2x to convert a 360p video to 1440p 😄
thinking of writing a super simple bot that uses the waifu2x to upscale user images for them 😛
waifu can do 3d now too 😛
taking an insane amount of time to upscale this south park episode tho. almost 10 minutes and not even 1% :/
south park already looks fine
not at 360p...
😄
yeah I see what you mean
its te one episode i have that isnt at least 720p lol
just ask
^
no point of asking to ask
make it return if the message doesn't start with the prefix
^^
which code language?
learn programming language
if (message.content.startsWith(prefix)){
// run code
}```
they could've learned something
and take some time to understand javascript basic fundimentals
okay
until ( . ) are seen, everyone is male to me 😄
i just don't want people to be triggered
I won't mind people being a little triggered
you use they/them when you don't know the gender out of respect and it's grammatically correct lol
pfft, even if you know someones birth gender now tho, thats not safe to use
they may identify as a refrigerator or some such
shut up
we're getting way off topic btw lol
how long have you guys been developing your bot?
A couple months maybe?
SuperGamblino is mine :b
@neat ingot How about you?
We're a team of 3 ish though
i started just near the end of december thinking 'this wont take long...'
Haha
last December too
i've been doing bot development since like late 2016 
😮
couple of months after discord introduced the bot api
an OG up in here
OG
My first commit was on Mar 13 (on this bot)
the selfbot times
god knows when they'll implement that, if they do
i really hope they do 😦
just learn javascript
Which library are you using?
why do you expect people to spoonfeed you
hes js, so likely discord.js or eris
It might be a problem if he's not using a javascript library 😛
that would be sad
im sure he said js, maybe i just assumed lmao
more like impressive lmao
how
Why would that be sad?
Ahh okay, my bad
do you know what a library is
Do you? 🙂
that's what you call a library
yea then your using discord.js library
I'm using DSharpPlus, which is "A C# library for making bots using the Discord API. "
yes dsp
that sounds painful 😄
not really if you're familiar with cs
Haha, it's not painful at all, I prefer C# over JS any day :b
genesiz, what is the code for your client.on('message') handler?
(assuming you got one of those)
31 minutes into upscaling, and ive done 10/1324 seconds worth :/
my keyboard
^
VS Code when I'm doing JS
ive used vs code since sublime text had an update that made it uses 30% cpu on my trash laptop
i use notepad++
VIM if I do bash
ok that is the same, the client is your bot instance. 🙂
i do agree learning some javascript would go a long way into understanding how to make your bot, and make it better 🙂
pretty hard to do so without learning it imo
you need to
Do you know any programming languages?
it's not like it's optional
There's libraries for all kinds of languages
i know html
Lol
html is not a programming language lol
that's why i make my bot in css
Haha
i know how to code in jsfuck 😄
yeah css is one
best language
see sharper sharp
needs a discord api tbh
brainfuck you mean
jsfuck is literally js so theoretically speaking, you can use d.js with it
that's new. cs...s?
lol yea, but its not written in jsfk, that'd be the icing
need to look it up
could probably run it through a converter though lol
yikes
Searched what up?
yeah you need to take a step back
impressed user: wow this bot is awesome, how did you code it?
bot dev: well, my dad taught me how to copy and paste... so...
^ has never happened
Well ... Copy and pasting is a part of it haha
🤣
rip
it did upscale 2x 10 second chunks to pretty good detail tho 🙂
discord.js is a library to interact with the discord api
not sure where you're getting at
@neat ingot are you trying to use the waifu2x-extension?
he is
yea
try changing the engine
i did, to cunet model and 'new version fp16p'
i guess its still using vulcan tho
i could try with the anime4k upscaler option
show me your settings
hmm
i think ill make a shorter clip for testing with till i find something that works
wtf i just updated mine, i want the old version back
lmao
i used portable version to avoid that 😄
i have other waifu programs running older builds that i didnt wanna risk overwriting some setting, the path to waifu or some crap
Me bot was going in loads and loads server now al sudden no one has added it I'm confused
Hahahah shut up lol
worked perfectly for me
you were probably featured on dbl for a while
sounds like your name
wait, it finished upscaling a video for you already?
almost
good guess
yeah missing "it"
:/
Dumb question but it's there a way to see If it was featured
by going to top gg? was featured
if it isnt anymore, i dont think so
split the video into frames with ffmpeg, rescale each pic with waifu2x and then reassemble with ffmpeg i guess
that is literally what waifu2x extension does

oh
nah it works perfectly https://this-cute-fucking-turtle.is-inside.me/91zLXJ0k.png but somehow the framerate just dies afterwards
although, it crashed with that and didnt finish...
It gained 400 servers in 2 days does top recognise that for features or is it done by how much votes
the latter
It must of been featured it was growing rapidly like I went to bed woke up with 100 servers added and now I done the same just woke up and none so
It must of been featured
yea it probably was
i remember when my bot was featured it grew tons of servers super fast, then iw as sad when it wasnt featured 💔
I got 70-80 servers pretty fast, I assume it was featured, things have been pretty stall after 😄
whats your bot do?
It's just a gambling bot, made as an open source alternative to existing gambling bots
oh nice 🙂
Yeah kind of sucks growth has completely stopped going at the past it was
i was talking earlier about my lootbox system, trying to get ideas from other peoples lootbox'es 😄
I'm using an airdrop system, which isn't really like a lootbox system though 😛
What does your bot do?
other than die, crash, and provide me problems? not much
just the typical rpg bot i guess
battle little npc enemies and pvp other players etc
kinda, but i made it more with the focus ofpvp
Ahh
and being able to kill and temp silence other members
So if I loose in a duel, I'm muted? 😄
yea for a minute 😄
Nice haha
and the winners name turns red, and they get 'killer' role for 2 minutes
What do you mean "made for"? 🙂 @earnest phoenix
That's nice 😄
How do you make pvp "fun" with a difference in level / gear?
If it's based on level and gear lol
welp having the same problem now 
Im trying to update owners on top.gg but its not working where to report
💔
whats the error @earnest phoenix
maybe its just longer videos it has issues with
Gotta get back to work, see ya
No error its not updating owners
becaus that person is not here
After and before updating its same
luca cannot update them
Ok
they have to be in this server
Same not working
user is in server now
ItzRockstarYT has deleted his account he cant join
Well duh
if someone deleted that account, it cannot update
whats this is-inside.me website?
ahh, interesting
Then what should i do
I want to add Vampire instead of ItzRockstarYT
can any staff help?
Im main owner
contact staff
but did u submit it?
I did
on this acc?
i like your avatar freestyle 🙂
thanks :)
reminds me of my father...
Which staff ? 🤔 Admin or mod
mods answer quicker, admin may not answer in weeks (i dont really know)
Ok
i think website admins only, but idk if they would be happy being tagged 😄
you need an admin to help actually
dont tag the role please, just dm one admin
Ok
or ping here and wait for answer
admins don't respond lol
the mythical admin response. it does exist!!
Waiting for response from tonkuu
And Nicole
Btw bot with only 75+ servers can get verified?
another stupid question but if i dm a moderator for the website are they able to tell me if my bot was featured at one point
yes
and yes you can start the verification process at 75 guilds
ahh yea fair point
Ok
anyone know why this returning as NaN
I will try to ask my friends to add bot I also want that cool badge 🤩
is client.uptime in milliseconds
also, try .humanize(), just in case the other plugin was somehow not imported correctly
is client.uptime in milliseconds
@pale vessel probably yes
it should be in djs
moment.duration().humanize() ?
invalid date
client.uptime is 17057964
thanks
!!eval require('moment').duration(client.uptime).format('D [days],H [hours], m [minutes], s [seconds]')```

(i had to require the moment as its not included in my eval file by default)
using the uptime value you gave*
so in short, it should be working. idk why it isnt for you :/
what is your djs and moment version
im no expert, but i think thats not how image upscaling works
@neat ingot lol fixed when I reinstall discord.js
yeah ty
np, was hard work, but i pushed through it, and everyone is better off for it imo 🙂
now it seems to work(?)
also, i've upscaled another 10sec chunk to 1440p, and it doesnt look any kinda wonky at all 😮
how has this had number 1 spot for months and months its literally got 20 votes https://gyazo.com/4fa5dcbde177c007e5138b66844c240c
yeah i just looks at partners and stuff
idk if its through bids or privately, but it pays for the spot, most do that via bids, but idk if medal has some special deal or w.e 😄
dank memer paid 2k dafuq
thats for a week.
yea, you read me correctly
dafuq
ikr 😄
they must rack in cash
especially dat premium feature
tbf, if they are paying that much for the spot, they clearly make more than that back from doing so
else they wouldnt keep doing it 😄
yep
i cant find the info for it, but im sure theres a command for it
how do people even bid anyway
@gilded plank tell me your commands
it's bids
yea but i forget the prefix 😄
you can't use it anyway
how much does a spot usually go for i wanna be on front page again
you have to apply for auctions
well i obvs cant compete with people slamming down hundreds of dollars so im not even gonna attempt it
thats only front page tho