開始寫程式

請注意

您現在瀏覽的頁面是第一章節

  1. 新增 main.py 檔案在資料夾中

  2. 輸入下列代碼 並將 機器人Token 輸入進第6行的 ""

溫馨提醒

複製完要記得儲存喔!VSCode快捷按鈕是 Ctrl + S

import discord
from discord.ext import commands

TOKEN = "" #輸入機器人TOKEN
PREFIX = "t!" #修改為要的PREFIX

client = commands.Bot(command_prefix=PREFIX, intents=discord.Intents.all())

@client.event
async def on_ready():
    print('BOT READY')
    
@client.command()
async def ping(ctx):
    await ctx.channel.send("Pong!")

client.run(TOKEN)
  1. 在檔案的那個資料夾開啟 CMDPowerShell 並運行剛剛寫好的檔案

小提示

如果會使用VSCode內建的終端也可以使用

py main.py
  1. 來看結果,會獲得類似下圖的結果

XiaYue10/10/2000
t!ping
教學用 Bot 10/10/2000
Pong
章節一通知
恭喜你完成基本的機器人製作,請進入下一章