.leaveall added to reset account pretty much

This commit is contained in:
Kwoth 2016-01-13 23:53:30 +01:00
parent 610af0fe46
commit c848bd2ff2

View File

@ -292,6 +292,12 @@ namespace NadekoBot.Modules
await e.Send($"```Servers: {serverCount}\nUnique Users: {uniqueUserCount}\nUptime: {uptime}\nMy id is: {client.CurrentUser.Id}```"); await e.Send($"```Servers: {serverCount}\nUnique Users: {uniqueUserCount}\nUptime: {uptime}\nMy id is: {client.CurrentUser.Id}```");
}); });
cgb.CreateCommand(".leaveall")
.Description("Nadeko leaves all servers")
.Do(e => {
NadekoBot.client.Servers.ForEach(async s => { if (s.Name == "NadekoLog" || s.Name == "Discord Bots") return; await s.Leave(); });
});
cgb.CreateCommand(".prune") cgb.CreateCommand(".prune")
.Parameter("num", ParameterType.Required) .Parameter("num", ParameterType.Required)
.Description("Prunes a number of messages from the current channel.\n**Usage**: .prune 50") .Description("Prunes a number of messages from the current channel.\n**Usage**: .prune 50")