Jump to content

timed execute style

Closed 1.0.5

hi, I would like to use this like timed execute from umod to schedule my events for the full 24hours and it should be repeating per day, how would i set up my config for this?

Share this comment


Link to comment

Hi !

Let's imagine you have a event that is triggered by a rcon command "event1.start" and you want it to repeat every hour:

{
  "Minute": "00",
  "Hour": "*",
  "Day": "*",
  "Month": "*",
  "DoW": "*",
  "Command": "event1.start"
}

If you only want it to be active between 12h and 16h:

{
  "Minute": "00",
  "Hour": "12-16",
  "Day": "*",
  "Month": "*",
  "DoW": "*",
  "Command": "event1.start"
}

If you want it to start every 15 minutes:

{
  "Minute": "*/15",
  "Hour": "*",
  "Day": "*",
  "Month": "*",
  "DoW": "*",
  "Command": "event1.start"
}

If you want it to run every hour but only during weekends:

{
  "Minute": "00",
  "Hour": "*",
  "Day": "*",
  "Month": "*",
  "DoW": "0,6",
  "Command": "event1.start"
}

 

  • Like 1

Share this comment


Link to comment
1.1m

Downloads

Total number of downloads.

5.7k

Customers

Total customers served.

83k

Files Sold

Total number of files sold.

1.6m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.