我正在构建一个带有不和谐的小型应用程序,它将不和谐消息记录到.txt文件中。
@bot.message do |event|
begin
loggies = event.content, event.author, event.timestamp, event.channel.name
File.open("loggies.txt", "w") do |f|
f << "#{loggies}\n"
end
rescue
puts "rescued&
我从discord.com下载了不和谐(选择了一个.deb文件),最后安装给了我“不和谐”和“不和谐(Env)”。有没有办法消除“不和谐(环境)”?Snap (我认为在双击.deb时安装不和谐)只显示1“不和谐”。
应N0rbert的请求:
dpkg - l | grep discord返回:
ii discord 0.0.16
amd64 Chat for Communities and Friends
snap list | grep discord返回:
discord 0.0.16
下面有一个命令,它应该向上下文通道发送一个随机的单词。
[Command("word"), Summary("Chooses a random English word.")]
public async Task RandomWord(string culture = "uk")
{
if (culture == "uk")
{
// Reads all the lines of the word list.
var allLines = File.ReadAllLines(Re
我在使用复制(也许是因为复制不起作用?)当我看到这个时,我想为一个不和谐的机器人做一些代码:
Type error: __init__ missing 1 required keyword-only argument: "intents"
我真的不知道什么是什么意思
这是我的代码(BTW我在shell中使用了pip安装不和谐的)
import discord
token = "mytoken (not revealing it i guess)"# but even with right token it doesnt work
client = disc
因此,我试图为我的不和谐服务器制造一个不和谐的机器人,它将响应人们引用内部笑话,但每当我有“圣诞检查器”,它会反复垃圾邮件。即使输入不是RegExp的一部分。
const Discord = require('discord.js');
const client = new Discord.Client();
var d = new Date();
var n = d.getMonth() + 1;
client.on('ready', () =>{
console.log('This bot is online!');
});