Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Hey I am trying to create a bot using c#, but am getting an error when I type DiscordClient. this is my program.cs file

using System;

namespace firstbot
{
class MainClass
{
    public static void Main(string[] args)
    {
        MyBot bot = new MyBot();
    }
}

}

Here is the MyBot.cs file

using System;
using Discord;
using Discord.Commands;

namespace firstbot
{
public class MyBot
{
    DiscordClient discord; //error comes here
    public MyBot()
    {



    }
   }
  }

the error is: the type of namespace DiscordClient could not be found. I am not sure what is wrong and need some help. Thanks in advance

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
573 views
Welcome To Ask or Share your Answers For Others

1 Answer

Actually, newer releases of Discord.NET (>0.9) no longer use DiscordClient. You have to use DiscordSocketClient instead.

You have an example here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...