summaryrefslogtreecommitdiff
path: root/DiscoBot/Commands.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2017-11-03 20:07:03 +0100
committerDennis Kobert <d-kobert@web.de>2017-11-03 20:07:03 +0100
commite49ac2778bb6d38517f14447c0675df354552528 (patch)
treeb549066769229d8c7b189efad8ac5bc2dda08015 /DiscoBot/Commands.cs
parent2fe5af08ab78e01ddda7fe31ab08526eb9a11f14 (diff)
parentd59a67e552628b464f079bccae20349d649bdd61 (diff)
test
Diffstat (limited to 'DiscoBot/Commands.cs')
-rw-r--r--DiscoBot/Commands.cs64
1 files changed, 64 insertions, 0 deletions
diff --git a/DiscoBot/Commands.cs b/DiscoBot/Commands.cs
new file mode 100644
index 0000000..6984761
--- /dev/null
+++ b/DiscoBot/Commands.cs
@@ -0,0 +1,64 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Discord;
+using Discord.Commands;
+using Discord.WebSocket;
+
+
+namespace DiscoBot
+{
+ class Commands
+ {
+ }
+ public class Info : ModuleBase
+ {
+ // ~say hello -> hello
+ [Command("say"), Summary("Echos a message.")]
+ public async Task Say([Remainder, Summary("The text to echo")] string echo)
+ {
+
+
+ // ReplyAsync is a method on ModuleBase
+ await ReplyAsync(echo);
+
+ }
+ }
+
+ public class Abfrage : ModuleBase
+ {
+ Char test = new Char();
+ // ~say hello -> hello
+ [Command("t"), Summary("tests a talent.")]
+ public async Task Say([Remainder, Summary("The text to echo")] string talent)
+ {
+ // ReplyAsync is a method on ModuleBase
+
+ await ReplyAsync("```xl\n" + test.TestTalent(talent) + "\n```");
+
+ }
+ }
+
+ [Group("sample")]
+ public class Sample : ModuleBase
+ {
+ // ~sample square 20 -> 400
+ [Command("square"), Summary("Squares a number.")]
+ public async Task Square([Summary("The number to square.")] int num)
+ {
+ // We can also access the channel from the Command Context.
+ await Context.Channel.SendMessageAsync($"{num}^2 = {Math.Pow(num, 2)}");
+ }
+
+ [Command("userinfo"), Summary("Returns info about the current user, or the user parameter, if one passed.")]
+ [Alias("user", "whois")]
+ public async Task UserInfo([Summary("The (optional) user to get info for")] IUser user = null)
+ {
+ var userInfo = user ?? Context.Client.CurrentUser;
+ await ReplyAsync($"{userInfo.Username}#{userInfo.Discriminator}");
+ }
+ }
+
+}