Tech24 Deals Web Search

Search results

  1. Results from the Tech24 Deals Content Network
  2. I am using python and is trying to get a user's level on the well known MEE6 bot's leveling system. I can't seem to find any way I came across mee6-py-api, but it doesn't work for me.

  3. How to create Discord Leveling System using MEE6

    stackoverflow.com/.../77632538/how-to-create-discord-leveling-system-using-mee6

    I am working on a Discord bot for a server that has used MEE6's leveling system for many years. I would like to create a new leveling system with my bot while starting with the already stored data by

  4. Much easier way: in Discord mention the channel and put a \ (backslash) before the channel name \#rules. You'll get something like <#channelID>. Use that like this: var message = "Make sure to check the rules at <#channelID>"; edited Aug 12, 2020 at 11:14. otolock.

  5. How do I show a gif attachment in Discord bot message embed?

    stackoverflow.com/.../how-do-i-show-a-gif-attachment-in-discord-bot-message-embed

    1. Currently, my bot is set to send an embed message each time a command is used, but for some reason, the gif is not showing. This is what my code looks like: let ballembed = new Discord.MessageEmbed() .setColor(0x000000) .setDescription(`**${mention}** was just harshly bonked!`)

  6. Send a interaction message to a Discord Bot with Python

    stackoverflow.com/questions/71697667

    1. I want to interact with another discord bot. For example, I would like to trigger MEE6's /help in a specific channel. I know how to send normal messages via the requests library in python, but they don't trigger the commands of discord bots. Example: If I send a normal message with the content "/help" via python requests in a channel, the ...

  7. I want my bot to process commands sent by other bots

    stackoverflow.com/questions/68581659

    2. It is a feature of the Bot class to ignore other bot's messages, but @Daniel O'Brien solved it in this thread. The solution is to subclass the bot and override the function which ignores other bots, like this: class UnfilteredBot(commands.Bot): """An overridden version of the Bot class that will listen to other bots.""".

  8. On the other hand if you have a guild id in that list it will auto update but that means you have to add every server id to that list which does not work if I want this to be a public Discord Bot. If you try doing this: from discord_slash import SlashCommand slash = SlashCommand(bot, sync_commands = True) guilds = [] @bot.event async def on ...

  9. You can create a discord bot in the language you prefer, there are SDKs for multiple languages for them. Also, there are ways to create date object in multiple languages too. Here is an example in Node.JS. How to create a discord bot. Node.JS Discord bot; While replying to a message, create a date object. Return it in the reply. Here is the ...

  10. How to Remove old Slash Commands from a Discord Bot?

    stackoverflow.com/.../76076234/how-to-remove-old-slash-commands-from-a-discord-bot

    3. It looks like you created the old commands as unique commands for your guild (not global commands). To remove them, you'll need to sync the tree by specifying your guild: # this will update the client commands which are only from your guild. await ctx.bot.tree.sync(guild=ctx.guild) You only need to run this once.

  11. Is there a way to get a discord bot to lookup data from a Google sheet? Example Situation: If the Discord bot is presented with a command "!points Bob", the bot would lookup the google sheet for "Bob" and return the number of points that Bob has. I would assume that I would use the module google-spreadsheet but I am new.