Downloads containing ab25ctf58.j2as

Downloads
Name Author Game Mode Rating
JJ2+ Only: Anniversary Bash 25 CTF Jazz2Online Capture the flag N/A Download file

File preview

void onPlayer(){
  if(p.direction == -1 &&				//If facing left,
     jjObjects[p.fly - 1].eventID == OBJECT::COPTER &&	//while hanging on a copter,
     p.yPos > 32*67 && p.yPos < 32*68 &&		//in the tube's height,
     p.xSpeed > 0){					//getting pushed to the right,
       p.xSpeed = -4;					//move to the left instead.
       p.direction = 1;					//Require the left button to be held.
  }
}