Jump to content

timed execute style

Closed 1.0.5

TheRiddledNote
TheRiddledNote

Posted

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?

kasvoton

Posted

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
kasvoton

Posted

Changed Status from Pending to Not a Bug

kasvoton

Posted

Changed Status from Not a Bug to No Response

kasvoton

Posted

Changed Status from No Response to Closed

TheRiddledNote

Posted

apologies for not reacting, thank you 🙂 these have worked perfectly. 

  • Love 1
1.4m

Downloads

Total number of downloads.

6.9k

Customers

Total customers served.

102.3k

Files Sold

Total number of files sold.

2m

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.