Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Player.broadcastUserInfo()


          activeChar.setTradeList(new L2TradeList(0));
        }
        activeChar.getTradeList().updateSellList(activeChar, activeChar.getSellList());
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
        }
View Full Code Here


        {
          activeChar.setTradeList(new L2TradeList(0));
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(false))
        {
          activeChar.sendActionFailed();
          return;
        }
View Full Code Here

        {
          activeChar.setCreateList(new L2ManufactureList());
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        if(!activeChar.checksForShop(true))
        {
          activeChar.sendActionFailed();
          return;
        }
View Full Code Here

        {
          activeChar.setCreateList(new L2ManufactureList());
        }
        activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
        activeChar.standUp();
        activeChar.broadcastUserInfo(true);
        activeChar.sendPacket(new RecipeShopManageList(activeChar, false));
        break;
      }
      case 96: // Quit Party Command Channel?
        _log.info("96 Accessed");
View Full Code Here

    {
      activeChar.sendActionFailed();
      return;
    }
    activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
    activeChar.broadcastUserInfo(true);
    activeChar.standUp();
  }
}
View Full Code Here

        player.setHairStyle((byte) 6);
        break;
    }
    player.getInventory().destroyItem(item, 1, true);
    player.broadcastPacket(new MagicSkillUse(player, player, 2003, 1, 1, 0));
    player.broadcastUserInfo(true);
  }

  public final int[] getItemIds()
  {
    return _itemIds;
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.