-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUptime.cs
51 lines (43 loc) · 927 Bytes
/
Uptime.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
using System;
using MikuBot.Commands;
using MikuBot.Modules;
namespace MikuBot.ExtraPlugins
{
public class Uptime : MsgCommandModuleBase
{
public override int CooldownChannelMs
{
get { return 10000; }
}
public override int CooldownUserMs
{
get { return 30000; }
}
public override string CommandDescription
{
get
{
return "Prints bot uptime.";
}
}
public override string UsageHelp
{
get
{
return "uptime";
}
}
public override void HandleCommand(MsgCommand msg, IBotContext bot)
{
if (!CheckCall(msg, bot))
return;
var startupTime = bot.StartupTime;
var runningTime = DateTime.Now - startupTime;
bot.Writer.Msg(msg.ChannelOrSenderNick, string.Format("The bot has been running for {0} hour(s) and {1} minute(s).", (int)runningTime.TotalHours, runningTime.Minutes));
}
public override string Name
{
get { return "Uptime"; }
}
}
}