Initial commit
This commit is contained in:
18
PrincepRPBot/Modules/Commands.cs
Normal file
18
PrincepRPBot/Modules/Commands.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Threading.Tasks;
|
||||
using Discord.Commands;
|
||||
|
||||
namespace PrincepRPBot.Modules {
|
||||
public class Commands : ModuleBase<SocketCommandContext> {
|
||||
|
||||
[Command("ping")]
|
||||
public async Task Ping() {
|
||||
await ReplyAsync("Pong!");
|
||||
}
|
||||
|
||||
[Command("penis")]
|
||||
public async Task Penis() {
|
||||
await ReplyAsync("Fotze");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user