Quote:
Originally Posted by xAndrewx
Pausing is weird, disable default and re-make your own.
|
I think my solution is just fine really. I don't really want it to show (paused) when players alt tab since it doesn't make them invincible/able to be walked through
PHP Code:
function GraalControl.onKeyDown(c, k, s){
if(keyname(10) == k){
if(player.paused){
player.attr[14] = " (paused)";
}
else{
player.attr[14] = "";
}
player.attr[13] = "un_nick2.gani";
setTimer(.05);
}
}
I just wish an event was invoked when AP changes at this point...