View Single Post
  #9  
Old 09-09-2010, 03:20 AM
khortez khortez is offline
PrototypeX
khortez's Avatar
Join Date: Dec 2008
Posts: 91
khortez will become famous soon enough
Thanks guys, I'll give it a shot.

Although chris, I'm not exactly familiar with GraalControl yet.

or Keyup and KeyDown even though, i have tried using them before. (keydown that is)


Quote:
Originally Posted by cbk1994 View Post
Better yet:

PHP Code:
function GraalControl.onKeyDown(codekey) {
  if (
key == "d" && player.weapon == this && ! this.d) {
    
this.onTimeOut();
    
this.true;
  }
}

function 
onTimeOut() {
  if (
player.weapon != this) {
    return;
  }
  
  
// shoot stuff goes here
  
  
if (this.isAutomatic) {
    
this.setTimer(this.sleepTime);
  }
}

function 
GraalControl.onKeyUp(codekey) {
  if (
key == "d" && player.weapon == this) {
    
this.setTimer(0);
    
this.false;
  }

Reply With Quote