1. I dont see a reason that the plugin will do this alone.
    Over 500downloads and no1 said anything from the last update.

    If you chagned the "ConfigCode": "1"," then the plugin will update the config file.
     
  2. I will make a recording because I'm about to accuse aliens.
     
  3. "command": "server.description "test 1 2 3" ", my server host sucks and i cant add this to the command line. how do i use the "s inbetween the "s ?!!! if i put them it doesnt work if i dont it only shows test.
     
  4. try
    Code:
    "command": "server.description 'test 1 2 3' ",
    
    Why dont you type the command in your RCON console ?
     
  5. it works but it adds ' to the front and end of the description. i can type it into rcon but after restart itll reset to default.
     
  6. type it into the console and write Server.WriteCfg
     
  7. sorry, i have tried that. they disabled write access to it. this is the only work around at the moment.
     
    Last edited by a moderator: Sep 9, 2015
  8. Can you help me please.

    I am using the console to launch several commands each day for my server like oxide.unload RemoverTool at a specific Time and the same for oxide.load at a specific time.
    The problem with the console is when my computer is shut down, the command will not be launched. That is why I would like to use a plugin to launch those type of commands...

    Can you help me I don't know where to write this :

    oxide.unload RemoverTool at 6pm and oxide.load RemoverTool at 1am ( each day of the week )
     
  9. You cannot execute commands at 6pm and stuff like that with this plugin.. check out the Timed Events plugin
     
  10. PaiN updated TimedExecute with a new update entry:

    2.4.0

     
  11. anyway anyone can give me directions how to set a heli patrol every 2 hours?
     
  12. Is it possible to execute chat commands? I want to use the weather plugin to control weather over a period of time but at the moment there are no console commands available.

    Thanks
    [DOUBLEPOST=1443056226,1443039707][/DOUBLEPOST]
    I've tried using

    {
    "command": "heli.call",
    "seconds": 60
    },

    but it doesn't seem to call in the chopper.
     
  13. damn.. =(
    [DOUBLEPOST=1443100405][/DOUBLEPOST]
    Code:
    {
      "EnableTimerOnce": true,
      "EnableTimerRepeat": true,
      "TimerOnce": {
        "reset.oncetimer": 181,
        "say 'Dont forget to like our fanpage!'": 60,
        "say 'Follow us on Twitter!'": 120,
        "say 'You can donate via PayPal!'": 180
      },
      "TimerRepeat": {
        "event.run": 300,
        "server.save": 300
      }
    }
    where would i put it on here??
     
    Last edited by a moderator: Sep 24, 2015
  14. Attempting to call heli via timed execute on a savasisland map. For some reason it doesn't work. Any ideas or help would be great!

    Here is my config.

    {
    "EnableTimerOnce": true,
    "EnableTimerRepeat": true,
    "TimerOnce": {
    "reset.oncetimer": 801,
    "heli.call": 300,
    "heli.call": 600,
    "heli.call": 800
    },
    "TimerRepeat": {
    "event.run": 300,
    "server.save": 300
    }
    }
     
  15. The plugin just executes the command, so there is nothing i can help you with.
    Some info Spawning / calling chopper? | Oxide
     
  16. Yeah thanks PaiN. I got it sussed in the end. Funnily enough with "callheli" instead of "heli.call".
     
  17. anyone able to post me a config of auto restarts every 4 hours with a server back up as im not sure if mine is working -
    Code:
    {
      "EnableTimerOnceCommands": "true",
      "EnableTimerRepeatCommands": "false",
      "OnceCommands": [
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 4 hours!'",
          "seconds": 0
        },
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 3 hours!'",
          "seconds": 3600
        },
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 2 hours!'",
          "seconds": 7200
        },
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 1 hour!'",
          "seconds": 10800
        },
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 30 minutes!'",
          "seconds": 11880
        },
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 15 minutes!'",
          "seconds": 13500
        },
        {
          "command": "say 'Server <color=orange>AUTOMATIC</color> Restart in 5 minutes!'",
          "seconds": 12780
        },
        {
          "command": "server.save",
          "seconds": 14397
        },
        {
          "command": "say 'Server is Restarting <color=red>NOW</color>!!!'",
          "seconds": 14399
        },
        {
          "command": "restart",
          "seconds": 14400
        },
        {
          "command": "reset.oncetimer",
          "seconds": 14401
        }
      ],
      "RepeaterCommands": []
    }
     
  18. This config is from an older version of the plugin. You can rewrite it of course into the new config, the timers works with the same way so just put the command and then the seconds.
     
  19. can someone tell me if this is correct? each message is displayed each hour intill restart , with the first message displaying when the server comes up
    Code:
    {
      "EnableTimerOnce": true,
      "EnableTimerRepeat": true,
      "TimerOnce": {
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 4 hours!'": 0,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 3 hours!'": 3600,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 2 hours!'": 7200,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 1 hour!'": 10800,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 30 minutes!'": 11880,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 15 minutes!'": 13500,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 5 minutes!'": 12780,
        "server.save" : 14397,
        "say 'Server <color=orange>AUTOMATIC</color> Restart in 5 minutes!'": 14399,
        "restart": 14400,
        "reset.oncetimer": 14401,
      },
      "TimerRepeat": {
        "event.run": 300,
        "server.save": 300
      }
    }
     
  20. the first message comes up once you load the plugin... you can restart instantly once you load the plugin if you want... so it will load once the server starts.
    And remove the comma Check this screenshot! (click it)
     
    Last edited by a moderator: Oct 3, 2015