Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExBR_GamePoint


      }
      finally
      {
        DatabaseUtils.closeDatabaseCSR(con, statement, rset);
      }
    player.sendPacket(new ExBR_GamePoint(player.getObjectId(), cash));
    }
    else if(Config.itemmallType == 2)
    {
    //Point system (Adena)
    L2ItemInstance item = player.getInventory().getItemByItemId(Config.itemmallItem);
    int count;
    if(item != null)
    {
      count = (int) item.getCount();
    }
    else
    {
      count = 0;
    }
    player.sendPacket(new ExBR_GamePoint(player.getObjectId(), count));
    }
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExBR_GamePoint

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.