home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / pendekar.swf / scripts / DefineSprite_96 / frame_1 / DoAction.as < prev   
Text File  |  2006-05-08  |  462b  |  31 lines

  1. this.onEnterFrame = function()
  2. {
  3.    tellTarget(_parent)
  4.    {
  5.       if(right && !duck)
  6.       {
  7.          moveRight();
  8.       }
  9.       else if(left && !duck)
  10.       {
  11.          moveLeft();
  12.       }
  13.       else if(attack)
  14.       {
  15.          attCombo(1);
  16.       }
  17.       else if(jump)
  18.       {
  19.          jumpUp();
  20.       }
  21.       else if(duck)
  22.       {
  23.          duckDown();
  24.       }
  25.       else if(special)
  26.       {
  27.          attSpecial();
  28.       }
  29.    }
  30. };
  31.