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

  1. this.onEnterFrame = function()
  2. {
  3.    tellTarget(_parent)
  4.    {
  5.       if(inStage())
  6.       {
  7.          _X = _X + dirValue(speed);
  8.       }
  9.       else if(!inStage() && _parent.isScroll && dir == 1)
  10.       {
  11.          _parent.scrollStage(speed);
  12.       }
  13.       if(attack)
  14.       {
  15.          attDuck();
  16.       }
  17.       if(dir == 1)
  18.       {
  19.          if(!duck || !right)
  20.          {
  21.             gotoAndStop("fDuckIdle");
  22.          }
  23.       }
  24.       else if(!left || !duck)
  25.       {
  26.          gotoAndStop("fDuckIdle");
  27.       }
  28.    }
  29. };
  30.