-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKiviLinks.cs
50 lines (42 loc) · 935 Bytes
/
KiviLinks.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
using MikuBot.Commands;
using MikuBot.Modules;
namespace MikuBot.ExtraPlugins
{
public class KiviLinks : MsgCommandModuleBase
{
public override int CooldownChannelMs
{
get { return 10000; }
}
public override int CooldownUserMs
{
get { return 30000; }
}
public override string CommandDescription
{
get
{
return "Displays kivilinks location.";
}
}
public override string UsageHelp
{
get
{
return "kivilinks";
}
}
public override void HandleCommand(MsgCommand msg, IBotContext bot)
{
if (!CheckCall(msg, bot))
return;
string statLocation = string.Format("http://vocaloid.eu/mikubot/Channel/Links/{0}?nick=kyllakivi",
msg.ChannelOrSenderNick.ToString().Substring(1));
bot.Writer.Msg(msg.ChannelOrSenderNick, string.Format("kivilinks can be found at {0}", statLocation));
}
public override string Name
{
get { return "kivilinks"; }
}
}
}