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
Release history Release notifications | RSS feed
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 hashes)
Built Distribution
Close
Hashes for CustomCommands-1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a18065863346d8918b8f9fead791eae9217b60b0f4d55c67a99b929ce80b1cee |
|
MD5 | 208a77998723adc3a0f26cae5722e2f4 |
|
BLAKE2b-256 | c33681964b606c6d25683128d99f59a33061a3cf2a883944f0420d2134a94827 |