View Single Post
  #14  
Old 04-20-2011, 10:44 PM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
Quote:
Originally Posted by xAndrewx View Post
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(cks){
  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...
Reply With Quote