Package net.sf.l2j.gameserver.serverpackets

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


      }
      activeChar.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO,
          new L2CharPosition(_targetX, _targetY, _targetZ, 0));

      if(activeChar.getParty() != null)
        activeChar.getParty().broadcastToPartyMembers(activeChar,new PartyMemberPosition(activeChar));
    }
  }
View Full Code Here


    }
    if (player instanceof L2PcInstance
        && ((L2PcInstance) player).getParty() != null)
      ((L2PcInstance) player).getParty().broadcastToPartyMembers(
          ((L2PcInstance) player),
          new PartyMemberPosition((L2PcInstance) player));

    // player.stopMove();
    //
    // if (Config.DEBUG)
    // _log.fine("client: x:"+_x+" y:"+_y+" z:"+_z+
View Full Code Here

                    }
                }
            }
        }
    if(activeChar.getParty() != null)
      activeChar.getParty().broadcastToPartyMembers(activeChar,new PartyMemberPosition(activeChar));

    if (Config.ALLOW_WATER)
      activeChar.checkWaterState();

    if (Config.ACCEPT_GEOEDITOR_CONN)
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.serverpackets.PartyMemberPosition

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.