Examples of oustPartyMember()


Examples of l2p.gameserver.model.L2Party.oustPartyMember()

      player.setTarget(null);
      player.setIsInOlympiadMode(true);
      if(player.getParty() != null)
      {
        L2Party party = player.getParty();
        party.oustPartyMember(player);
      }
      L2Zone zone = ZoneManager.getInstance().getZoneById(L2Zone.ZoneType.OlympiadStadia, 3001 + _game.getId(), false);
      int[] tele = zone.getSpawns().get(_side - 1);
      player.teleToLocation(tele[0], tele[1], tele[2], 0);
      if(_type == CompType.TEAM_RANDOM || _type == CompType.TEAM)
View Full Code Here

Examples of l2p.gameserver.model.L2Party.oustPartyMember()

      {
        list.add(player);
        if(player.getParty() != null)
        {
          L2Party party = player.getParty();
          party.oustPartyMember(player);
        }
      }
    }
    if(list.size() <= 1)
    {
View Full Code Here

Examples of l2p.gameserver.model.L2Party.oustPartyMember()

      {
        activeChar.sendMessage(new CustomMessage("l2p.gameserver.clientpackets.RequestOustPartyMember.CantOustInDungeon", activeChar));
      }
      else
      {
        party.oustPartyMember(_name);
      }
    }
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Party.oustPartyMember()

          {
            ((DarknessFestival) r).collapse();
          }
          else if(playerParty.getMemberCount() > Config.FESTIVAL_MIN_PARTY_SIZE)
          {
            playerParty.oustPartyMember(player);
          }
          else
          {
            player.sendMessage("Only party leader can leave festival, if minmum party member is reached.");
          }
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.