Package l2p.gameserver.templates

Examples of l2p.gameserver.templates.L2PlayerTemplate.addItem()


        // 5items must go here
        for(int x = 1; x < 6; x++)
        {
          if(rset.getInt("char_templates.items" + x) != 0)
          {
            ct.addItem(rset.getInt("char_templates.items" + x));
          }
        }
        _templates.put(ct.classId.getId(), ct);
        //
        // Female class
View Full Code Here


        for(int x = 1; x < 6; x++)
        {
          int itemId = rset.getInt("char_templates.items" + x);
          if(itemId != 0)
          {
            ct.addItem(itemId);
          }
        }
        _templates.put(ct.classId.getId() | 0x100, ct);
      }
    }
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.