Package l2p.gameserver.modules.community.buffer

Examples of l2p.gameserver.modules.community.buffer.Buff


    priceOneBuff = mOption.getString(community, "priceOneBuff").split(",");
    priceOneBuffScheme = mOption.getString(community, "priceOneBuffScheme").split(",");
    mCommunityHandler.getInstance().addHandler(this);
    for(int i = 0; i < buffer_buffs.length; i += 2)
    {
      Buff buff = new Buff(Integer.parseInt(buffer_buffs[i]), Integer.parseInt(buffer_buffs[i + 1]));
      normalScheme.buffs.add(buff);
      staticBuffs.add(buff);
    }
    try
    {
View Full Code Here

TOP

Related Classes of l2p.gameserver.modules.community.buffer.Buff

Copyright © 2018 www.massapicom. 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.