View Single Post
  #3  
Old 05-29-2012, 12:44 PM
blackbeltben blackbeltben is offline
Registered User
Join Date: Aug 2011
Posts: 83
blackbeltben is on a distinguished road
How can I make it use a direction key too? this isn't working. And also, you have to press them one at a time til they are all pressed. You can't hit them at same time for some reason.

PHP Code:
//#CLIENTSIDE
function GraalControl.onKeyDown(temp.codetemp.key) {
  if (! 
this.key.(@ temp.key)) {
    
this.key.(@ temp.key) = true;
    
    if (
temp.key in {"c", (keydown(3)), "v"} && this.key.&& this.(keydown(3)) && this.key.v) {
      
player.chat "combo attack!!";
    }
  }
}

function 
GraalControl.onKeyUp(temp.codetemp.key) {
  
this.key.(@ temp.key) = false;

Reply With Quote