Package com.l2jfrozen.gameserver.model

Examples of com.l2jfrozen.gameserver.model.L2Augmentation


    if(Config.DEBUG)
    {
      _log.info("Augmentation success: stat12=" + stat12 + "; stat34=" + stat34 + "; resultColor=" + resultColor + "; level=" + lifeStoneLevel + "; grade=" + lifeStoneGrade);
    }

    return new L2Augmentation(item, ((stat34 << 16) + stat12), skill, true);
  }
View Full Code Here


                                        product = inv.addItem("Multisell["+_listId+"]", e.getItemId(), 1, player, player.getTarget());
                                        if (maintainEnchantment && (product != null))
                                        {
                                                if (i < augmentation.size())
                                                {
                                                        product.setAugmentation(new L2Augmentation(product, augmentation.get(i).getAugmentationId(), augmentation.get(i).getSkill(), true));
                                                }
                                                product.setEnchantLevel(e.getEnchantmentLevel());
                                        }
                                }
                        }
View Full Code Here

      statement = con.prepareStatement("SELECT attributes,skill,level FROM augmentations WHERE item_id=?");
      statement.setInt(1, objectId);
      rs = statement.executeQuery();

      if(rs.next())
        inst._augmentation = new L2Augmentation(inst, rs.getInt("attributes"), rs.getInt("skill"), rs.getInt("level"), false);

      rs.close();
      statement.close();
      rs = null;
      statement = null;
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.L2Augmentation

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.