blob: 17928c8c120bbd5f39c302daefc96c3be69508d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
using System.Linq;
using System.Threading.Tasks;
using Discord.Commands;
namespace DiscoBot.Commands
{
public class FileHandler : ModuleBase
{
//[Command("send"), Summary("fügt Helden hinzu")]
public async Task AddChar()
{
var msg = Context.Message;
if (msg.Attachments == null) throw new ArgumentException("Es wurde keine Datei angehängt");
var attachments = msg.Attachments.ToList();
if (!attachments.Any(x => x.Filename.EndsWith(".xml")))
throw new ArgumentException("Es wurde kein xml Held mitgeschickt");
foreach (var attachment in attachments.Where(x => x.Filename.EndsWith(".xml")))
throw new NotImplementedException("send File to Server");
}
}
}
|