Skip to main content

Discord Bot Custom Commands

Project description

디스코드 봇 커스텀 커맨드 생성기

pip install CustomCommands

from CustomCommand import Commands
import discord, json
from discord.ext import commands

class CustomCommands(commands.Cog):
    def __init__(self, bot):
        self.bot = bot

    @commands.command()
    async def 커맨드추가(self, ctx, a, b):
        Commands.Custom("Custom", ctx.author.id, a, b)
        await ctx.send(f"`{a}` 라고 하시면 `{b}` 라고 할게요!")

    @commands.Cog.listener()
    async def on_message(self, message):
        with open("Custom.json", 'r', encoding="UTF-8") as f:
            data = json.load(f)
        if message.content.startswith(""):
            msg = message.content[0:]
            try:
                for i in data[str(message.author.id)]:
                    if i == msg:
                        await message.channel.send(data[str(message.author.id)][msg])
            except:
                pass

def setup(bot):
    bot.add_cog(CustomCommands(bot))

Licence

  • 도움말이나, 임베드 Footer에 크레딧을 남겨주세요.
  • ex) 도움 : STORM#9999

Contact

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

CustomCommands-1.0.tar.gz (2.1 kB view details)

Uploaded Source

Built Distribution

CustomCommands-1.0-py3-none-any.whl (2.4 kB view details)

Uploaded Python 3

File details

Details for the file CustomCommands-1.0.tar.gz.

File metadata

  • Download URL: CustomCommands-1.0.tar.gz
  • Upload date:
  • Size: 2.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5

File hashes

Hashes for CustomCommands-1.0.tar.gz
Algorithm Hash digest
SHA256 8f0c423adb7adacedcac99efa25af3f90e60c7f6ca3ecabc0987c520f178a7f4
MD5 8a0e4cefef595bf748bbbf158ff86898
BLAKE2b-256 fdda022b1585c4b2295bb263909768bd3b18bfeacd8f2fc572da5bb139417744

See more details on using hashes here.

File details

Details for the file CustomCommands-1.0-py3-none-any.whl.

File metadata

  • Download URL: CustomCommands-1.0-py3-none-any.whl
  • Upload date:
  • Size: 2.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5

File hashes

Hashes for CustomCommands-1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a18065863346d8918b8f9fead791eae9217b60b0f4d55c67a99b929ce80b1cee
MD5 208a77998723adc3a0f26cae5722e2f4
BLAKE2b-256 c33681964b606c6d25683128d99f59a33061a3cf2a883944f0420d2134a94827

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page