Package lineage2.gameserver.stats

Examples of lineage2.gameserver.stats.Calculator.calc()


    Env env = new Env();
    env.character = this;
    env.target = target;
    env.skill = skill;
    env.value = init;
    c.calc(env);
    return env.value;
  }
 
  /**
   * Method calcStat.
View Full Code Here


    env.value = stat.getInit();
    int id = stat.ordinal();
    Calculator c = _calculators[id];
    if (c != null)
    {
      c.calc(env);
    }
    return env.value;
  }
 
  /**
 
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.