Something like this would be greatly appriciated for both Clientside and Serverside:
PHP Code:
function onCreated() {
this.addEventListener("Timeout",function() {
sendtonc("2");
});
setTimer(1);
}
function onTimeout() {
sendtonc("1");
}
// Would recieve:
// 1
// 2
// Simultaneously