You can but updating the level every minute is not a proper solution for your problem.
What are you trying to do?
This example script will run every minute:
PHP Code:
function onCreated() {
this.i = 0;
onTimeout();
}
function onTimeout() {
this.i++;
echo(this.i);
setTimer(60);
}