สร้าง Bot Discord ด้วย Python [ PART 1 ] สร้างบอทและเขียนบอทเบื้องต้น | by M-307 | Medium

PHOTO EMBED

Sat Aug 26 2023 12:12:13 GMT+0000 (Coordinated Universal Time)

Saved by @day01

import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='?>') #กำหนด Prefix
@bot.event
async def on_ready() : #เมื่อระบบพร้อมใช้งาน
    print("Bot Started!") #แสดงผลใน CMD
@bot.event
async def on_message(message) : #ดักรอข้อความใน Chat
    if message.content.startswith('?>ping') : #เมื่อข้อความในตัวแรกมีคำว่า ping
       await message.channel.send('Pong ~ Meow ><') #ข้อความที่ต้องการตอบกลับ
bot.run('TOKEN') #รันบอท (โดยนำ TOKEN จากบอทที่เราสร้างไว้นำมาวาง)
content_copyCOPY

https://medium.com/@intakamsririeak/สร้าง-bot-discord-ด้วย-python-part-1-สร้างบอทและเขียนบอทเบื้องต้น-83999697b8b2