You can do this yourself, something like:
PHP Code:
//#CLIENTSIDE
function onTimeOut() {
if (this.invincible) {
if (!this.invHP) {
this.invHP = player.hp
}
player.hp = this.invHP;
setTimer(.05);
}
elseif (this.invHP) {
this.invHP = NULL;
}
}
There's probably a WAY better and easier way to do it tho xD