Search results
- Dictionarydiscord
noun
- 1. disagreement between people: "a prosperous family who showed no signs of discord" Similar Opposite
- 2. lack of harmony between notes sounding together: "the music faded in discord" Similar Opposite
verb
- 1. (of people) disagree: archaic "we discorded commonly on two points"
Powered by Oxford Dictionaries
Mar 19, 2019 · discord.Member has a specific field which permits retrieving the guild. Instead of channel = await find_channel(guild) just do channel = await find_channel(member.guild) assuming you're using rewrite version.
Jan 8, 2021 · So to define users for things like displaying avatars, etc. i've been using this; var user = message.mentions.users.first() || message.author; But i've been trying to figure out how people have been able to define users without mentions. Example - my command requires me to tag someone whereas Dyno can do it with partial names.
Jan 19, 2021 · Discord.Message is the type of object (aka "class"), whereas msg is the object itself. The docs will refer to Message objects, which msg is one of, but to access the content of a specific message you need to use the variable holding that specific message, which is msg .
Jun 20, 2020 · You should create a folder named cogs where every cog will be contained. When you have cogs, you have to replace every client.commands() by 'commands.command()' and every client occurences by self.client
Nov 21, 2020 · You are most likely not actually using discord.py 1.5.1, you can print discord.__version__ after importing it to double check. Best practise is to use Python venv for packages like this. Additionally, to make sure you are always accessing the correct pip, you can use python -m pip .
May 18, 2020 · When making a discord bot, usually you're going to be getting information based off of arguments and ctx (context). First I'll start off with some general examples, and then I'll move onto how to use these when working with d.py.
Sep 16, 2020 · I started to code a discord bot (that takes your coffee order) for the first time yesterday, and can’t figure out how to define functions without placing them under @client.command or some similar line. I have the code written in python but I need to be able to call different functions without making each one a separate command.
Jun 23, 2020 · You are not passing the client variable from your index.js file to your command file, also do not put an event listener inside a command, very bad idea, instead do something like this:
May 8, 2020 · ReferenceError: guild is not defined at Client.<anonymous> (c:\Users\OKBOO\OneDrive\Desktop\Discord Bot\index.js:34:9) at Client.emit (events.js:327:22) at MessageCreateAction.handle (c:\Users\OKBOO\OneDrive\Desktop\Discord Bot\node_modules\discord.js\src\client\actions\MessageCreate.js:31:14) at Object.module.exports [as MESSAGE_CREATE] (c:\Users\OKBOO\OneDrive\Desktop\Discord Bot\node ...
Apr 14, 2019 · The problem is that I'm unsure on how to define args, I wasn't sure what code I should add for reference, but the problem is the defination – scorpionboi123 Commented Apr 9, 2019 at 18:01