Examples of FuncSet


Examples of l2p.gameserver.skills.funcs.FuncSet

    player.setHeading(r.way.get(1), true);
    player.validateLocation(1);
    player.setMount(PetDataTable.WYVERN_ID, 0, 0);
    player.block();
    player.setIsInvul(true);
    player.addStatFunc(new FuncSet(Stats.RUN_SPEED, 0x90, W, 500));
    player.getAI().getListenerEngine().addMethodInvokedListener(_notifyEventListener);
    flyNext(r);
    player.broadcastUserInfo(true);
  }
View Full Code Here

Examples of lineage2.gameserver.stats.funcs.FuncSet

    {
      if (checkMates(actor.getNpcId()))
      {
        if (findLostCaptain() != null)
        {
          findLostCaptain().addStatFunc(new FuncSet(Stats.MAGIC_DEFENCE, 0x30, this, findLostCaptain().getTemplate().getBaseMDef() * 0.66));
        }
      }
    }
    super.onEvtDead(killer);
  }
 
View Full Code Here

Examples of lineage2.gameserver.stats.funcs.FuncSet

    {
      if (checkMates(actor.getNpcId()))
      {
        if (findLostCaptain() != null)
        {
          findLostCaptain().addStatFunc(new FuncSet(Stats.POWER_DEFENCE, 0x30, this, findLostCaptain().getTemplate().getBasePDef() * 0.66));
        }
      }
    }
    super.onEvtDead(killer);
  }
 
View Full Code Here

Examples of lineage2.gameserver.stats.funcs.FuncSet

    {
      if (checkMates(actor.getNpcId()))
      {
        if (findLostCaptain() != null)
        {
          findLostCaptain().addStatFunc(new FuncSet(Stats.POWER_ATTACK, 0x30, this, findLostCaptain().getTemplate().getBasePAtk() * 0.66));
        }
      }
    }
    super.onEvtDead(killer);
  }
 
View Full Code Here

Examples of lineage2.gameserver.stats.funcs.FuncSet

  private void handleEkimusStats()
  {
    double[] a = getStatMultiplier();
    ekimus.removeStatsOwner(this);
    ekimus.addStatFunc(new FuncSet(Stats.POWER_ATTACK, 0x30, this, ekimus.getTemplate().getBasePAtk() * 3)); // constant
    ekimus.addStatFunc(new FuncSet(Stats.MAGIC_ATTACK, 0x30, this, ekimus.getTemplate().getBaseMAtk() * 10)); // constant
    ekimus.addStatFunc(new FuncSet(Stats.POWER_DEFENCE, 0x30, this, ekimus.getTemplate().getBasePDef() * a[1]));
    ekimus.addStatFunc(new FuncSet(Stats.MAGIC_DEFENCE, 0x30, this, ekimus.getTemplate().getBaseMDef() * a[0]));
    ekimus.addStatFunc(new FuncSet(Stats.REGENERATE_HP_RATE, 0x30, this, ekimus.getTemplate().getBaseHpReg() * a[2]));
  }
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.