1. add "using Facepunch;" to the top of the *.cs file (without quotes)

    Should fix the compile error.
     
  2. Hi,

    I am having issues with this plugin, it doesn't have a config file and when I try to put in the following in chat it tells me it is unknown -
    /notification daily 26/04/2016 11:45 "The server will be automatically restarting in 15 mins."

    Can I please get some help with fixing this,
    Thank you
    NUG - Soul
     
  3. Hi NUG currently the plugin is outdated by quite a few build - i havent had the chance to update it between rl life a dedicated server migration and several other paid jobs :( Sorry...trying to clear things up as much as i can!
     
  4. No problem, I completely understand. Thank you for your reply. I will give it to my dev guys on the weekend and see what they can do :)
    Thanks again
     
  5. Feel free to make PRs ;)
     
  6. (05:52:47) | [Oxide] 04:51 [Error] TimedNotifications plugin failed to compile!

    (05:52:47) | [Oxide] 04:51 [Error] TimedNotifications.cs(269,157): error CS1061: Type `string' does not contain a definition for `ToInt' and no extension method `ToInt' of type `string' could be found. Are you missing `Facepunch.Extend' using directive?


    Yes I read the above I was just also adding this for my own amusement
     
  7. Anybody got a fix to run this plugin?
     
  8. guessing this plugin is outdate after update.
    [Oxide] 20:31 [Error] TimedNotifications plugin failed to compile!
    [Oxide] 20:31 [Error] TimedNotifications.cs(269,157): error CS1061: Type `string' does not contain a definition for `ToInt' and no extension method `ToInt' of type `string' could be found. Are you missing `Facepunch.Extend' using directive?

    anyone have a fix to this or a different plugin that you can set to broadcast at times let just before server restarts?
     
  9. hey folks,

    Sorry real life comes first :/ Not really been active on the plugin front really, sorry :) I WILL get to it...i just dont know when, but it isnt at the moment as need to search for work
     
  10. use Timed Execute ( http://oxidemod.org/plugins/timed-execute.1937/ )

    Example:
    Code:
    "RealTime-Timer": {
        "05:53:00": "global.say Automated server restart in 4 minutes.",
        "05:53:30": "server.save",
        "05:57:00": "global.say Automated server restart in 2 minute.",
        "05:57:30": "server.save",
        "05:58:00": "global.say Automated restart in 60 seconds.",
        "05:58:10": "global.say Automated restart in 50 seconds.",
        "05:58:20": "global.say Automated restart in 40 seconds.",
        "05:58:30": "global.say Automated restart in 30 seconds.",
        "05:58:35": "server.save",
        "05:58:40": "global.say Automated restart in 20 seconds.",
        "05:58:50": "global.say Automated restart in 10 seconds.",
        "05:58:55": "global.say Automated restart in 5 seconds.",
        "05:59:00": "global.say Server restarting.",
        "05:59:02": "global.kickall ( Auto-Server-Restarting )",
        "05:59:05": "server.save",
        "05:59:08": "global.restart 5",   
        "05:59:10": "global.kickall ( Auto-Server-Restarting )"
      },