Air drop happy hour (Rust)

Is it possible to get a mod. 

Where you have air drops. 

That is dropping a lot more airdrops in a defined period. 

Example from 8-10 am it will drop maybe 4 airdrops and again 8-10 pm

It is random but the event can be set to run more times on the day. 

So maybe if i set it to 10 x happy hour each day, it will run each day on random times for x hours, but always all the 10 times spread out through the day. 

Is there someone out there that has something like this? 

Anyone up for this? 
You can do it easy with, TimedExecute plugin.

Set your happy hour time in plugin to run supply.call command, even you can do the same with cargo,chinook and heli and all other events.

But what if i want it 5 times a day with happy hour in one hour?

So 5 events where the airdrop should be active in a hour - With 6 airdrops spawns in that hour. 

You can make even 100 times a day, 500 drops in hour etc.

Here i'm giving you example, your happy hour starts 11:00am ends 12:00pm
  "RealTime-Timer": {
    "11:10:00": "supply.call",
    "11:20:00": "supply.call",
    "11:30:00": "supply.call",
    "11:40:00": "supply.call",
    "11:50:00": "supply.call"​

Also you can announce everyone when it starts...

  "RealTime-Timer": {
    "11:00:00": "say Happy hour event started, airdrop count in this hour has been increased.",
    "11:10:00": "supply.call",
    "11:20:00": "supply.call",
    "11:30:00": "supply.call",
    "11:40:00": "supply.call",
    "11:50:00": "supply.call"​
I tried it out. And it can do exactly what i want :-)