1. Hello.
    I hope I don't disturb you with that.
    But I have a old plugin I prefer to keep but it has no updates anymore.
    Since the last update the plugin can't works, I tried to replace the line "ConsoleSystem.Run.Server.Normal" to "ConsoleSystem.Run" but it's doesn't works.
    Can you help me? I put the part of code:
    Code:
    repeater = timer.Repeat(Convert.ToSingle(cmd.Value), 0, () =>{
                        ConsoleSystem.Run.Server.Normal(cmd.Key);
                        Puts($"ran the command || " + cmd.Key.ToString());
    +
    Code:
    if(System.DateTime.Now.ToString("HH:mm:ss") == cmd.Key.ToString())
                        {
                            ConsoleSystem.Run.Server.Normal(cmd.Value.ToString());
                            Puts("ran the command || " + cmd.Value.ToString() + " at: " + cmd.Key);
    +
    Code:
    chaintimer = timer.Once(Convert.ToSingle(cmdc.Value), () =>{
                        ConsoleSystem.Run.Server.Normal(cmdc.Key);
                        Puts($"ran the command || " + cmdc.Key.ToString());

    Thanks very much for your help.
     
  2. Wulf

    Wulf Community Admin

  3. It's worked with your Hint, thanks Wulf!