public void MessageCommand(CommandDetails command)
 {
     if (command.Arguments.Count <= 1)
     {
         Chat(command.Channel.Name, command.Pinger + ColorGeneral + "That command is written as: " + ColorHighlightMajor + Prefixes[0] + command.Name + " <name> <message>");
         Chat(command.Channel.Name, ColorGeneral + "For example, " + ColorHighlightMajor + Prefixes[0] + command.Name + " mcmonkey Hi, how are you?");
         return;
     }
     if (!IRCUser.Exists(command.Arguments[0]))
     {
         Chat(command.Channel.Name, command.Pinger + ColorGeneral + "I have never seen that user.");
         return;
     }
     IRCUser user = new IRCUser(command.Arguments[0]);
     user.SendReminder(command.User.Name + ": " + Utilities.Concat(command.Arguments, 1), DateTime.Now);
     Chat(command.Channel.Name, command.Pinger + ColorGeneral + "Message stored.");
 }
 public void ReminderCommand(CommandDetails command)
 {
     if (command.Arguments.Count <= 2)
     {
         Chat(command.Channel.Name, command.Pinger + ColorGeneral + "That command is written as: " + ColorHighlightMajor + Prefixes[0] + command.Name + " <name> <time> <message>");
         Chat(command.Channel.Name, ColorGeneral + "For example, " + ColorHighlightMajor + Prefixes[0] + command.Name + " mcmonkey 1d Download the code update");
         return;
     }
     if (!IRCUser.Exists(command.Arguments[0]))
     {
         Chat(command.Channel.Name, command.Pinger + ColorGeneral + "I have never seen that user.");
         return;
     }
     IRCUser user = new IRCUser(command.Arguments[0]);
     TimeSpan rel = Utilities.StringToDuration(command.Arguments[1]);
     user.SendReminder(command.User.Name + ": " + Utilities.Concat(command.Arguments, 2), DateTime.Now.Add(rel));
     Chat(command.Channel.Name, command.Pinger + ColorGeneral + "Reminder stored.");
 }
示例#3
0
        public void MessageCommand(CommandDetails command)
        {
            if (command.Arguments.Count <= 1)
            {
                Chat(command.Channel.Name, command.Pinger + ColorGeneral + "That command is written as: " + ColorHighlightMajor + Prefixes[0] + command.Name + " <name> <message>");
                Chat(command.Channel.Name, ColorGeneral + "For example, " + ColorHighlightMajor + Prefixes[0] + command.Name + " mcmonkey Hi, how are you?");
                return;
            }
            if (!IRCUser.Exists(command.Arguments[0]))
            {
                Chat(command.Channel.Name, command.Pinger + ColorGeneral + "I have never seen that user.");
                return;
            }
            IRCUser user = new IRCUser(command.Arguments[0]);

            user.SendReminder(command.User.Name + ": " + Utilities.Concat(command.Arguments, 1), DateTime.Now);
            Chat(command.Channel.Name, command.Pinger + ColorGeneral + "Message stored.");
        }
示例#4
0
        public void ReminderCommand(CommandDetails command)
        {
            if (command.Arguments.Count <= 2)
            {
                Chat(command.Channel.Name, command.Pinger + ColorGeneral + "That command is written as: " + ColorHighlightMajor + Prefixes[0] + command.Name + " <name> <time> <message>");
                Chat(command.Channel.Name, ColorGeneral + "For example, " + ColorHighlightMajor + Prefixes[0] + command.Name + " mcmonkey 1d Download the code update");
                return;
            }
            if (!IRCUser.Exists(command.Arguments[0]))
            {
                Chat(command.Channel.Name, command.Pinger + ColorGeneral + "I have never seen that user.");
                return;
            }
            IRCUser  user = new IRCUser(command.Arguments[0]);
            TimeSpan rel  = Utilities.StringToDuration(command.Arguments[1]);

            user.SendReminder(command.User.Name + ": " + Utilities.Concat(command.Arguments, 2), DateTime.Now.Add(rel));
            Chat(command.Channel.Name, command.Pinger + ColorGeneral + "Reminder stored.");
        }