[Solved] Discord.NET How can I give every person a role by one command?

[ad_1] You can do it using the code below. There are various ways of improving the command’s functionality so perhaps think about that. [Command(“addrole all”), Summary(“Adds the Star role to all users”)] public async Task AddRoleStarCommand() { // Gets all the users of the guild. Note that this may not completely // work for extremely … Read more

[Solved] Discord bot playing status

[ad_1] Try This: public class Help : ModuleBase<SocketCommandContext> { [Command(“test”)] public async Task TestAsync() { await Context.Client.SetGameAsync(“eating doritos”); await Task.CompletedTask; } } [ad_2] solved Discord bot playing status