#development
1 messages Β· Page 329 of 1
dmail help
@keen nest Got to #265156322012561408
Its good
@ebon helm Learn this
JavaScript (JS) is a lightweightΒ interpreted or JIT-compiledΒ programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as node.js, Apache CouchDB and Adobe Acrobat. JavaScriptΒ is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented,Β imperative, and declarative (e.g.Β functional programming) styles. Read more about JavaScript.
ok
Or Python
i got python
Python is better but i dont use it
Meh
huh
srry
tickYes
My monitor was fixed π
yay
now my screen can be large, ;D
Hi.
can someone help me
With what? @topaz fjord
google.resultsPerPage = 3
let object = args;
google(object, function (err, res){
if (err) console.error(err)
var link = res.links[1];
var link2 = res.links[2];
if(!link.title) {
test = "Nothing Found, Sorry";
}
if(!link2.title) {
test2 = "Nothing Found, Sorry";
}
if(link.link == null) {
test = "Nothing Found, Sorry";
}
if(link2.link == null) {
test2 = "Nothing Found, Sorry";
}
let test = `${link.title}\n${link.href}`;
let test2 = `${link2.title}\n${link2.href}`;
// console.log(link);
// console.log(link2)
const embed = new Discord.RichEmbed()
.setColor("RANDOM")
.setAuthor('Google Search Results', `http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Google_%22G%22_Logo.svg/1000px-Google_%22G%22_Logo.svg.png`)
.addField(`First Result`, test)
.addField(`Second Result`, test2)
.setTimestamp()
.setThumbnail('https://cdn.dribbble.com/users/604032/screenshots/2675111/1.gif');
message.channel.send({embed})
})
if(!link.title) {
^
TypeError: Cannot read property 'title' of undefined
at C:\Users\Sid\Desktop\BobBot\cmds\google.js:14:17
at Request._callback (C:\Users\Sid\Desktop\BobBot\node_modules\google\lib\google.js:96:7)
at Request.self.callback (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:188:22)
at emitTwo (events.js:125:13)
at Request.emit (events.js:213:7)
at Request.<anonymous> (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:1171:10)
at emitOne (events.js:115:13)
at Request.emit (events.js:210:7)
at IncomingMessage.<anonymous> (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:1091:12)
at Object.onceWrapper (events.js:314:30)```
tryiing to put a precaution so that if there no title then it returns something
link is undefined
title is undefined
because there is no title
link is
thats why
i wanna check id the link has no title
you never check if link is undefined
if(link.link == null) {
test = "Nothing Found, Sorry";
}
if(link2.link == null) {
test2 = "Nothing Found, Sorry";
}
i actually did
link: null,
description: '',
href: null }
{ title: 'Facebook Newsroom',
link: 'https://newsroom.fb.com/',
description: 'As part of Facebook AI Research (FAIR), this new team will join more than 100 \nscientists across Menlo Park, New York, and Paris in working to advance the field\nΒ ...',
href: 'https://newsroom.fb.com/' }```
when i console.log link
but that still doesnt work @inner jewel
@topaz fjord thats node, correct?
yes
Lib?
discord.js
moose
i wanna make it so that if the bot cant find the title of the link
it will send nothing found
Sending embed as json or Rich embed
rich
google(object, function (err, res){
if (err) console.error(err)
var link = res.links[1];
var link2 = res.links[2];
let test = `${link.title}\n${link.href}`;
let test2 = `${link2.title}\n${link2.href}`;
if(link.link == null) {
test = "Nothing Found, Sorry";
}
if(link2.link == null) {
test2 = "Nothing Found, Sorry";
}
const embed = new Discord.RichEmbed()
.setColor("RANDOM")
.setAuthor('Google Search Results', `http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Google_%22G%22_Logo.svg/1000px-Google_%22G%22_Logo.svg.png`)
.addField(`First Result`, test)
.addField(`Second Result`, test2)
.setTimestamp()
.setThumbnail('https://cdn.dribbble.com/users/604032/screenshots/2675111/1.gif');
message.channel.send({embed})
})
my code
What is the title of the link if there isn't anything foun
D
Undefined or something else?
link: null,
description: '',
href: null }
{ title: 'Facebook Newsroom',
link: 'https://newsroom.fb.com/',
description: 'As part of Facebook AI Research (FAIR), this new team will join more than 100 \nscientists across Menlo Park, New York, and Paris in working to advance the field\n ...',
href: 'https://newsroom.fb.com/' }```
an example if i console.log(link)
i want to check if link.title = null
but i keep on getting this error
let test = `${link.title}\n${link.href}`;
^
TypeError: Cannot read property 'title' of undefined
at C:\Users\Sid\Desktop\BobBot\cmds\google.js:14:23
at Request._callback (C:\Users\Sid\Desktop\BobBot\node_modules\google\lib\google.js:96:7)
at Request.self.callback (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:188:22)
at emitTwo (events.js:125:13)
at Request.emit (events.js:213:7)
at Request.<anonymous> (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:1171:10)
at emitOne (events.js:115:13)
at Request.emit (events.js:210:7)
at IncomingMessage.<anonymous> (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:1091:12)
at Object.onceWrapper (events.js:314:30)```
I have a question.
If(link.title) { title = link.title; } else { title = "Nothing Found"; }```
That should work
same error
What is link
wrote it like this
google.resultsPerPage = 3
let object = args;
google.protocol = 'https';
google(object, function (err, res){
if (err) console.error(err)
let title;
var link = res.links[1];
var link2 = res.links[2];
if(link.title) { title = link.title; } else { test = "Nothing Found"; }
if(link2.title) { title = link2.title; } else { test2 = "Nothing Found"; }
let test = `${link.title}\n${link.href}`;
let test2 = `${link2.title}\n${link2.href}`;
if(link.link == null) {
test = "Nothing Found, Sorry";
}
if(link2.link == null) {
test2 = "Nothing Found, Sorry";
}
const embed = new Discord.RichEmbed()
.setColor("RANDOM")
.setAuthor('Google Search Results', `http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Google_%22G%22_Logo.svg/1000px-Google_%22G%22_Logo.svg.png`)
.addField(`First Result`, test)
.addField(`Second Result`, test2)
.setTimestamp()
.setThumbnail('https://cdn.dribbble.com/users/604032/screenshots/2675111/1.gif');
message.channel.send({embed})
})
Can i have a script for a music bot?
No
no
Make your own
C:\Users\Sid\Desktop\BobBot\cmds\google.js:16
if(link.title) { title = link.title; } else { test = "Nothing Found"; }
^
TypeError: Cannot read property 'title' of undefined
at C:\Users\Sid\Desktop\BobBot\cmds\google.js:16:20
at Request._callback (C:\Users\Sid\Desktop\BobBot\node_modules\google\lib\google.js:96:7)
at Request.self.callback (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:188:22)
at emitTwo (events.js:125:13)
at Request.emit (events.js:213:7)
at Request.<anonymous> (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:1171:10)
at emitOne (events.js:115:13)
at Request.emit (events.js:210:7)
at IncomingMessage.<anonymous> (C:\Users\Sid\Desktop\BobBot\node_modules\request\request.js:1091:12)
at Object.onceWrapper (events.js:314:30)
There are many tutorials for making music bots
Ok.
xoxfl
?
arent you a roblox scripter
Ya.
what lang does that use
Idk I just know the scripts.
lua iirc
lol
then how do you call yourself a roblox scripter if you dont know the language your writing
any idea moose
Wait I think I know the language
lol
fake robloc scripter here ^^^
idk why your so proud of robloc scripting, its not gonna earn you shit
function f()
return ({pcall(function() return "You have paid your respects" end)}[2]
end```
Um..., I use Lua 5.1 scripting on roblox.
took you years but k
lol
@topaz fjord Check if the variable isn't null before checking its properties
Because when a variable is null, it doesn't have a property title therefore it gives you that error
null / undefined
if (link && link.title) { ...
i fixed it
the heck do you think that means
Lol
when i type -servers can i make so i can see all guilds name? discord.js
i need help with making a new comand python
cAn I gEt ScRiPt
wee
@earnest phoenix, I can help you.
It comes up as an unhandled promise rejectione rrotr
*error
No, discord.js
*rejection
Thonk

Show code wgen
The code, please.
// async run(message, args) {
doSomething().then(function(result) {
return doSomethingElse(result);
})
.then(function(newResult) {
return doThirdThing(newResult);
})
.then(function(finalResult) {
message.mentions.members.first().guildmember.ban("You have been banned")
})
.catch(failureCallback);
console.log("Command run: Ban")
}
}
It comes up unhandled
Yet, im not sure why
It has a catch to catch the faliure callback
I think can send you my system
Okay...
But whats wrong with the code lel
It seems to be handled
So im not sure why its erroring
xd
It said to either put a number value or a string value
btw what documenttion
d.js?
.ban(options)
ok ty
Yep
options = {2, "Ban reason"}
Oh
or
.ban.options?
guildMember.ban({days:3,reason:"reason here"});
Ban options. If a number, the number of days to delete messages for, if a string, the ban reason. Supplying an object allows you to do both.
its implied with knowing javascript
also
π€
message.mentions.members.first().guildmember.ban("You have been banned")
message.mentions.members.first().ban("You have been banned")
first() grabs the first instance
Lol ik ik
first() will grab you this https://discord.js.org/#/docs/main/stable/class/GuildMember
well if you know, why is it like that 
It will grab the mention
Okay, so
message.mentions.members.first().guildmember.ban("You have been banned")
This grabs the mention
Then bans the member
No
show the error
on what line
You need to ban on the guild object not the user object?
// async run(message, args) {
doSomething().then(function(result) {
return doSomethingElse(result);
})
.then(function(newResult) {
return doThirdThing(newResult);
})
.then(function(finalResult) {
message.mentions.members.first().ban({days:99,reason:"Your a bad person"})
})
.catch(failureCallback);
console.log("Command run: Ban")
}
}
Its suppose to be on the guild object though?
are you actually
using that copy pasted code
you know you dont need all that to ban a user?
right?
Guild.Ban(User,Days,Reason)m
well obviously that code wont work
See
^
It is guild.ban
its d.js
my way was perfectly fine
x d
or have you edited it to be different
in your actual code
because if thats the case, show us the actual code where the error is occuring
other wise
you have async run() commented out
and you have unnecessary callbacks and empty functions & .then()'s that do nothing lmfao
if you knew, u wouldn't be coming here for help
Um, what xD
"Lol ik"
Yes
I knew they did nothing
If they were the thing erroring the code, i didnt know
then why didn't you remove them>
well that seems stupid and unnecessary if im honest
Well you aint getting nowhere if you dont even know how to debug your code
^
docs aren't meant to teach you how to code
Ik, ment for help
they're there 2 teach you how to use the wrapper
promise.then(onFulfillment)
return codehere
.catch (error)
π€
Well, guess im figuring this out on my own
async function banCommand(message){
if(message.mentions.users == null || message.mentions.users == undefined){
// no user was tagged etc
return;
}else{
await message.mentions.members.first().ban({days:0,reason:""});
}
}
banCommand(message).then(()=>{ message.channel.send("User was banned.") });
its untested and
its not perfect
but that would be an example of how to do it
im not actually sure if mentions.users returns null or undefined if no one is tagged
but i'd gues so
It would be undefined
You need the members.first() code line
But thx!
Okay wait
Imma study this
it doesn't matter really
either way
if its null its null and it means nobody was tagged
Oh true true
so really it doesn't matter which you use
But they will be tagged
Lmao
you're going to get an error
Okay
its common sense
Yep
I need to learn asyncs and stuff
Oh i get it!
The {} are kinda like the .then statements
Only with open code
Well, in this case its what that looks like
i wonder what that means 
well obviously you're not calling it when a message event occurs
you're calling it straight away
so obviously a message doesn't exist
Β―_(γ)_/Β―
omg what is your code
you're obviously missing something or you're doing the message event completely wrong
//const commando = require('discord.js-commando');
class BanCommand extends commando.Command {
constructor(client) {
super(client, {
name: 'ban',
group: 'moderation',
memberName: 'ban',
description: 'Bans the mentioned user'
});
}
}
async function banCommand(message){
if(message.mentions.members == null || message.mentions.members == undefined){
// no user was tagged etc
return;
}else{
await message.mentions.members.first().ban({days:0,reason:""});
}
}
banCommand(message).then(()=>{ message.channel.send("User was banned.") });
module.exports = BanCommand;
It comes up with an error the second to last line
im not gr8 with classes so honestly i cant help you with what you're doing
seems like its way too complicated for what it is
hey
how can i make an announce command like this but gives me what needs to be announced not with it the command it self. I used message.content but i want it without the command
without --announce
only announced then the announcement
@earnest phoenix
Hii
@fleet epoch
is the //command stuff in your code
No
commando*
Does any one know what?
its how you block stuff out
Oh
xD
Its not like that in the code lmao
ahh k
Its just for the syntax highlighting in discord
ahh
@shrewd field
client.on(`message`, message => {
if (message.content === "/announce") {
let modRole = message.guild.roles.find("name", "Moderators");
if(message.member.roles.has(modRole.id)) {
let announcement = args.join(" ");
const embed = new Discord.RichEmbed()
.setColor(0x00AE86)
.setTimestamp()
.addField(`New Announcement by ${message.author.username}`, `${announcement}`)
client.channels.find("name", "bot_testing_room_2").sendEmbed(embed);
message.channel.sendMessage(`:ok_hand: Annoucement sent to #bot_testing_room_2`)
} else {
message.channel.sendMessage("**Error:** \n You dont have permission 'Moderators' to announce")
}
)};```
this is made to be edited the way you like it
@grave sonnet
This user has no bots
d.js
lol
is easier
i use discord.js
lol
also i hate my bot being here
it kept spamming my console
all though it might be fixed since ive done major updates to it
i might add it back later
-bots
@stuck fjord
lol
lol
What comes back, like what error
is discord.net a library
so it is or not
i dont
bot.user.setPresence({ game: { name: prefix + "help" + " | " + bot.guilds.size + " Guilds", type: 1}});
where do i put the streaming link
url maybe
where do i put it tho
@topaz fjord commando is d.js, just a extension
Hey i started the bot (nodejs main.js) and it says that is online
and now what?
what are you needing
^
oh, thanks. ^^
okaay. I already invited the bot. But it seems unresponsive, when i type !help nothing happes in the chat nor the console
nvm. i already figured out. sorry for the disruption 7w7
Have you given it perms you should be able to mention the bot with @ @lethal grove
the prefix was - not ! π
π :/
hi
wrong channel
when i type -servers can i make so i can see all guilds name? discord.js
yes and no
in theory this is possible
the problem is, that discord has a char limit
so you will not be able to display all if you have a lot of them
no
guilds is a collection
you'll have to make a list of names
loop through all guilds, and have a string called names
then in every iteration concatenate the guild name to names
not the most efficient approach but the easiest
-bots
@fervent gazelle
bot.guilds.map(guild=>guild.name).join(" ") or smth
lul
so now you can upload your files to whatever pomf you want
need help with new command discord.js
What kind of new cmd?
it's literally like a pingpong command but the name is diff and the output is diff
Google is your best friend
client.on('message', msg => {
if (msg.content === 'ping') {
msg.reply('Pong!');
}
});```
@ebon helm i dont code javascript and i found it
kool
https://i.imgur.com/MEUlTcA.png which one
Do you know node.js? @ebon helm
i have ffmpeg installed on my server and everything i tested my pla command running on cmd on my desktop it worked but when i do it on my server it does not even join all other commands work tho????
@earnest phoenix
Well its maybe because of wi-fi cause i have the same problem and if you run it off a app its differant then when you do it directly
i run it off digatal ocean
Im not sure then cause i host my bot on my laptop
@earnest phoenix you host your bot on your laptop lmao
There nothing wrong with it lmao
Anyone know how to fix my bot code? It only replies with the file name and not the actual photo...
//------------------------------------------------------------------------------
//MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME MEME
var fs = require('fs');
var files = fs.readdirSync('/Users/User/Desktop/Memes/faces');
var randimage = files[Math.floor(Math.random() * files.length)];
if(message.content.startsWith(prefix + "meme")) {
return message.channel.send(randimage);
}
//---------------------------------------------------------
they are images from my files tho, how? Theres atleast 1000ish pics in the folder
wot
anyone? π¦
idk sry
can anyone help me with d.js
please anyone?
Hello anyone here?
Does anyone know how to integrate the DBL API with their bot? Running discord.js
integrate?
well update the server count on startup
anyone know a javasctip way to control or send commands to a bot through a website.
Webhooks @cinder oriole
@cinder oriole All I can think of is to add an express-style site to your bots code because if not you're gonna probably be leaking a token
when someone sends me a REST request, and their request json is invalid, and I return a 400, is there any way I can supply like "ur json sucks kiddo" alongside the 400? If so, where do I put it?
in the response?
no
hm
ye
danke
@fervent gazelle
can i make a -bug command and it send to my server? its that possible?
yes
how?
get channel by id -> send message
what is a channe
dafuq
No restart his toaster
nah pm2
How can i make the command
no, it's a banana
^
Can confirm
What do u mean
Lmao
Pm2 is annode process manager for node JS apps
hi hi hih iih ih
read teh docs
y
docs are useful
i did
they're ur friend
it didnt helped
hm
can i send you the code and you can see whats wrong?
self bot *
it wont help
i dont understand it
how to use it
can i just send you the code
and u can see whats wrong
^
ctx.send is rewrite
thet's ext
maybe he's using client
yes
Β―_(γ)_/Β―
are you using commands.Bot
but i replace client with bot
uh
probably works
oh, discord.Client
ok
well, ok
```py
code
...
o shoot
sorry
hastebin
i sent it wrong
gist.github.com works too
neh
hastebin better
true
delete_message needs params
@bot.event
async def on_message(message):
if message.author.id != bot.user.id:
return
if message.content.lower().startswith("_kek"):
msg = await bot.edit_message(message, new_content=("THIS THINGk3kTICK TICK TICK"))
await bot.delete_message(msg)
await bot.delete_message(message)?
np
theres 1 last thing
o
as in you want it to wait
import asyncio
asyncio.sleep(seconds)
you can use time.sleep or asyncio.sleep
time.sleep is blocke
preferably asyncio sleep
^
so example
since yeah, time is blocking
blablabla
asyncio.sleep(seconds)
blablabl
import asyncio
asyncio.sleep(1)
sleep 1 second
yes
also put that import at the top of the file
yes x2
asyncio is already imported
is the asyncio milliseconds ?
if you need milliseconds you can use floats
it deleted it fast
actually
np ;)
hmm
its time to have fff-ff-f-f-ffun
selfbots are amazing
ikr
its like better discord
although against tos
lol betterdiscord sux :^)
guess who forgot how to use the sendmessage
@abstract mango is this how you send messages "await bot.send_message("Thanks")" i forgot
time to test my thing
- commands.Bot makes it way simpler
- rewrite has way better docs, etc
rip
-bots
@fervent gazelle
is my bot technically here
xD
if i do a command which can force leave it
will it disappear
xD
@fervent gazelle
hm
nice
BRO! Why won't the
client.user.setGame("-help")
Work for my bot?!?!
@earnest phoenix
hm it should
it doesnt
client.on('ready', () => {
client.user.setGame("-help");
console.log(`Ready to serve on ${client.guilds.size} servers, for ${client.users.size} users.`);
client.channels.get("361108864973930506").send({embed: {
color: 3447003,
author: {
name: client.user.username,
icon_url: client.user.avatarURL
},
title: "GameBot Online!",
description: `\n\n**GameBot is now Online!**\n**Server Count:** ${client.guilds.size} Servers.\n**User count:** ${client.users.size} users.`,
timestamp: new Date(),
footer: {
icon_url: client.user.avatarURL,
text: "Β© GameBot"
}
}
});
@earnest phoenix β
i use handlers
so
xD
ill try to
see
@earnest phoenix I have an error on the code you gavr mr
gave me*
message.guild.member.setNickname(user);
message.guild.member.setNickname(user);
tf
i want the bot to change its nickname... Not me
bot want to change its own nickname
kk ty lol
Bro wtf!!! @inner jewel Do you see an unexpected string anywhere?
var yomommajokelist=["Yo Momma is so fat, she fills the bathtub before she even turns on the water", "Yo Momma is so fat, when she jumps off the high dive, she shows up on radar", "Yo Momma is so fat, she doesnt need the Internet -- shes already worldwide", "Yo Momma is so fat, the last time she saw 90210 was on the bathroom scale", "Yo Momma so fat, that Yo Daddy is still climbing back off", "Yo mama so fat she left the house in high heels and when she came back she had on flip flops." "Yo mama so fat she sat on an iPhone and turned it into an iPad", "Yo mama so fat she went to KFC to get a bucket of chicken they asked her what size and she said the one on the roof", "Yo momma so fat she sued xbox 360 for guessing her weight", "Yo mama so fat that I ran out of gas trying to drive around her", "yo mama so fat that she gave draclua diabetes"]
nvm
found it
ye ik lol found it
?
Idk how to use API's properly
I only have one which one guy gimme code to
var request = require ("request");
var cat = "http://random.cat/meow.php"
if(message.content.startsWith(prefix + "cat")) {
var args = message.content.substring(prefix.length).split(" ");
switch (args[0].toLowerCase()) {
case "cat":
request({
url: cat,
json: true
}, function (error, response, body) {
message.channel.send(body);
})
break;
}
}
Could you help me with API's please?
@abstract mango can u help
!stats silentsushix3 duo
@earnest phoenix You should really consider setting up your own testing server.
I have my support server. Im sorry about the spam. Im making a spam filter
@jolly zodiac
But why not use a separate server and bot account for that? Actively changing a running public bot is a bad idea.
Sorry, Ouindoze, Iβm going to bed now.
why does it do that it wasnt doing that earlier
it says client object has no attribute
theres no client object
You probably forgot the parentheses when calling edit_message() somewhere.
π
Or no
wait
I have no idea
I would need to see your code.
But I wonβt check that tonight anymore
Learn to find bugs.
Itβs a valuable skill to have as a developer.
hmmm
sure
hmmmmmmm
your bot.run(token, bot=False) might have something to do with it
try rmoving the bot=False
alright put it back xD
it back
add from discord.ext import commands
change bot=discord.Client() to bot=commands.Bot()
are you using the rewrite?
try that
i changed ! to _ but ok
use whatever your prefix is
i dont think i cant help you here. ask someone more experienced with discord.py like crystal
grrr
Im sorry i cant help you here
that means theres no function in the bot object called send message
@old breach i think you might have the rewrite
i dont even know whats that
try changing it back to bot = discord.Client()
and now
change await bot.edit_message(tmp, 'You have {} messages.'.format(counter)) to await bot.edit(tmp, 'You have {} messages.'.format(counter))
"elif" is an invalid syntax now
youre probably missing a paranthases
at the end of await bot.edit_message(tmp, 'You have {} messages.'.format(counter))
show the code -.-
you indented elif too much
which means
show it
now were getting somewhere
u had added one dot too much but ok
aight starting
_test
Calculating messages...
gRRRRR
whats the error
=.=
you might want to learn some simple programming before trying to make a bot
bots are pretty complex
will u help me when u come back
bye
seeya then
So you can't just randomly create a bot, right? You have to program it and all that stuff, right? Sorry, I'm new to this bot stuff.
If only making bots was that easy
^
Yes you have to learn a programming language
discordblocks
for android
lmfao 

i need help
xD
exports.run = (client, message, args) => {
let guild = message.guild
var content = message.content.split(' ').slice(1).join(' ')
var content2 = message.content.split(' ').slice(2).join(' ')
guild.createRole({
name: `${content}`,
color: `${content2}`
})
.then(role => message.channel.send(`Created role ${role}`))
.catch(console.error);
}
exports.conf = {
aliases: ['creater']
}
exports.help = {
name: "createrole",
description: "creates a role with no date",
usage: "createrole <name>"
}
it works decently
but the thing is
the content2 gets mixed with the content
and it ends up saying
/createrole testing BLUE
Created role testing BLUE
even though the color is blue
i dont want that blue added
xD
Anyone got any bot ideas?
This command randomly generates a hex-color code number!
#ee29ad
Hmm. Not a bad idea
Wait. Did you trigger a user bot??
:ping_pong: Response Time: (184ms). API Latency: (69ms)
xDD
XD
HAHAHA
/help
= Command List =
[Use /help <commandname> for details]
/8ball :::
/addcontrib :::
/addrole :::
/avatar :::
/ban :::
/blacklist :::
/blusers :::
/cat :::
/channelinfo :::
/clearbl :::
/coinflip :::
/createinvite :::
/createrole :::
/credits :::
/delchannel :::
/delrole :::
/devinfo :::
/diceroll :::
/discord :::
/eval :::
/help :::
/info :::
/insult :::
/kick :::
/leave :::
/lockdown :::
/ping :::
/purge :::
/randomhex :::
/reload :::
/rename :::
/roleinfo :::
/roles :::
/rules :::
/say :::
/serverinfo :::
/setchannelname :::
/setchanneltopic:::
/setgame :::
/setnick :::
/setprefix :::
/setrolename :::
/setroleposition:::
/setstatus :::
/setstream :::
/softban :::
/starttyping :::
/stoptyping :::
/suggest :::
/takerole :::
/unban :::
/uptime :::
/userinfo :::
/warn :::
/watch :::
Oh shit
LMAFO
Iβm
retarded
because
I
have
an
open
selfboat
@earnest phoenix
SUCK
MY
DICK
We can kick the user using the user
/eval 2+2



