Examples of ShowXMasSeal


Examples of com.l2jfrozen.gameserver.network.serverpackets.ShowXMasSeal

      return;
    }

    if(itemId == 5555) // Token of Love
    {
      ShowXMasSeal SXS = new ShowXMasSeal(5555);
      activeChar.sendPacket(SXS);
      //activeChar.broadcastPacket(SXS);
      SXS = null;
    }
    activeChar = null;
View Full Code Here

Examples of l2p.gameserver.serverpackets.ShowXMasSeal

  {
    if(player == null)
    {
      return;
    }
    player.sendPacket(new ShowXMasSeal(5555));
  }
View Full Code Here

Examples of l2p.gameserver.serverpackets.ShowXMasSeal

    }
    L2Player activeChar = (L2Player) playable;
    int itemId = item.getItemId();
    if(itemId == 5555) // Token of Love
    {
      ShowXMasSeal SXS = new ShowXMasSeal(5555);
      activeChar.broadcastPacket(SXS);
    }
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ShowXMasSeal

  {
    final int itemId = item.getItemId();
    switch (itemId)
    {
      case 5555:
        player.sendPacket(new ShowXMasSeal(5555));
        break;
      default:
        return false;
    }
    return true;
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.ShowXMasSeal

    L2PcInstance activeChar = (L2PcInstance)playable;
      int itemId = item.getItemId();

      if (itemId == 5555) // Token of Love
      {
        ShowXMasSeal SXS = new ShowXMasSeal(5555);
      activeChar.broadcastPacket(SXS);
    }
  }
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.