-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLutkustIneen.cs
49 lines (41 loc) · 928 Bytes
/
LutkustIneen.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
using MikuBot.Commands;
using MikuBot.Modules;
namespace MikuBot.ExtraPlugins
{
public class LutkustIneen : MsgCommandModuleBase
{
public override int CooldownChannelMs
{
get { return 20000; }
}
public override string CommandDescription
{
get { return "Vitun lutkust ineen!"; }
}
public override InitialModuleStatus InitialStatus
{
get { return InitialModuleStatus.NotLoaded; }
}
public override bool IsPassive
{
get { return true; }
}
public override string Name
{
get { return "Lutkust_ineen"; }
}
public override string UsageHelp
{
get { return "lutkust ineen"; }
}
public override void HandleCommand(MsgCommand msg, IBotContext bot)
{
if (msg.Text.ToLowerInvariant().Contains("lutkust ineen"))
{
if (!CheckCooldowns(msg, bot, false))
return;
bot.Writer.Msg(msg.ChannelOrSenderNick, "Vitun lutkust ineen! (automaatti)");
}
}
}
}