// Important notes for YOU!
//
// Not for me 'cause I actually know what I've coded ;)
//
// You are allowd to use 3 types:
//
//	* 1st:		round		after x rounds (defined in "value" key) the task is executed. The value types has to be unique!
//	* 2nd:		period		after x seconds (defined in the "value" key) the task is executed. Value has to be a float!
//	* 3rd:		time		at this time (defined in the "value" key) the task will be executed (24 hour style. From 00:00 to 23:59).
//
// Multiple commands can be seperated with a ";"

"Source Cronjobs"
{
	"1"
	{
    	"type"				"round"
		"value"				"2"
		"task"				"say ROUND!"
	}	
	"2"
	{
    	"type"				"time"
		"value"				"17:25"
		"task"				"say TIME!"
	}
	"3"
	{
    	"type"				"period"
		"value"				"60.5"
		"task"				"say PERIOD!"
	}	
}