discordからjarファイルを実行したく自分で試行錯誤したのですが、エラーが出ずファイルが実行できていないのですが、対応策があれば教えていただきたいです。
VScordを使用しています。
python
1import discord 2from discord.ext import commands 3import time 4import os 5 6 7bot = commands.Bot( 8 command_prefix="/", 9 ) 10 11bot.remove_command('help') 12 13@bot.event 14async def on_ready() : 15 print("起動完了") 16 17 18@bot.command() 19async def p(ctx): 20 await ctx.send("待機中") 21 os.system("C:\Users\***\Desktop\server\server.jar") 22 time.sleep (30) 23 await ctx.send("起動") 24 25 26bot.run("***")
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/25 10:29
2021/07/25 14:32