Hi
How i do random task time something like this
PHP Code:
new const RANDOM_TASKTIME[][] =
{
25,
15,
40,
150,
12,
2,
150
}
// And set task something
set_task(RANDOM_TASKTIME, "thunderclap", TASK_THUNDER_PRE)
But i want like this way
new const RANDOM_TASKTIME[][] =
{
25, // first task time
15, // then this
40, // then this
150, // then this
12, // then this
2, // then this
150 // And start again 24
}
thanking in advance.