home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / pendekar.swf / scripts / DefineSprite_53_oWeaponKipas / frame_1 / DoAction.as
Text File  |  2006-05-08  |  470b  |  34 lines

  1. function init()
  2. {
  3.    if(runOnce)
  4.    {
  5.       return undefined;
  6.    }
  7.    this.runOnce = true;
  8.    this.id = 3;
  9.    this.hp = 1;
  10.    this.dir = 1;
  11.    this.hitable = false;
  12.    this.level = _Y;
  13.    this.nLevel = _Y;
  14.    if(intro)
  15.    {
  16.       intro = false;
  17.       gotoAndStop(31);
  18.    }
  19. }
  20. function dirValue(number)
  21. {
  22.    return dir * number;
  23. }
  24. function getHit()
  25. {
  26.    hp--;
  27.    if(hp <= 0)
  28.    {
  29.       gotoAndStop(32);
  30.    }
  31. }
  32. his.onLoad = init();
  33. stop();
  34.