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

  1. function update()
  2. {
  3.    leftBar.bar._xscale = !(tLeftBar.hp == undefined || tLeftBar.hp == null || tLeftBar.hp > 100) ? tLeftBar.hp : 0;
  4.    if(tLeftBar.hp > 100)
  5.    {
  6.       leftBar.bar._xscale = 100;
  7.    }
  8.    leftBar.bar._x = 0;
  9.    leftName.text = tLeftBar.charName + " x " + tLeftBar.lives;
  10.    if(tLeftBar.mp >= 40)
  11.    {
  12.       leftBarMP.bar.play();
  13.    }
  14.    else if(tLeftBar.mp < 40)
  15.    {
  16.       leftBarMP.bar.gotoAndStop(1);
  17.    }
  18.    if(leftBarMP.bar._xscale < tLeftBar.mp)
  19.    {
  20.       leftBarMP.bar._xscale = leftBarMP.bar._xscale + 1;
  21.    }
  22.    else if(leftBarMP.bar._xscale >= tLeftBar.mp)
  23.    {
  24.       leftBarMP.bar._xscale = tLeftBar.mp;
  25.    }
  26.    leftBarMP.bar._x = 0;
  27.    rightBar.bar._xscale = !(tRightBar.hp == undefined || tRightBar.hp == null || tRightBar.hp > 100) ? tRightBar.hp : 0;
  28.    if(tRightBar.hp > 100)
  29.    {
  30.       rightBar.bar._xscale = 100;
  31.    }
  32.    rightBar.bar._x = 0;
  33.    rightName.text = tRightBar.charName;
  34. }
  35. this.onEnterFrame = update();
  36.