-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLinks.cs
59 lines (50 loc) · 1.05 KB
/
Links.cs
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MikuBot.Modules;
using MikuBot.Commands;
namespace MikuBot.ExtraPlugins
{
public class Links : MsgCommandModuleBase
{
public override int CooldownChannelMs
{
get { return 10000; }
}
public override int CooldownUserMs
{
get { return 30000; }
}
public override string CommandDescription
{
get
{
return "Displays links location.";
}
}
public override string UsageHelp
{
get
{
return "links";
}
}
public override void HandleCommand(MsgCommand msg, IBotContext bot)
{
if (!CheckCall(msg, bot))
return;
if (!msg.ReceiverIsChannel)
{
bot.Writer.Msg(msg.ChannelOrSenderNick, "Has to be sent on a channel");
return;
}
var statLocation = "http://vocaloid.eu/mikubot/Channel/Links/" + msg.ChannelOrSenderNick.ToString().Substring(1);
bot.Writer.Msg(msg.ChannelOrSenderNick, "Links list can be found at " + statLocation);
}
public override string Name
{
get { return "Links"; }
}
}
}