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"
}

 

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. 

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
2.3m
Total downloads
Customers
10.7k
Customers served
Files Sold
154.5k
Marketplace sales
Payments
3.3m
Processed total
×
×
  • 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.