// Summon friend
if (skill.getId() == 1403)
{
// Send message
ConfirmDlg confirm = new ConfirmDlg(SystemMessageId.S1_WISHES_TO_SUMMON_YOU_FROM_S2_DO_YOU_ACCEPT.getId());
confirm.addString(activeChar.getName());
confirm.addZoneName(activeChar.getX(), activeChar.getY(), activeChar.getZ());
confirm.addTime(30000);
confirm.addRequesterId(activeChar.getObjectId());
targetChar.sendPacket(confirm);
}
else
{
L2PcInstance.teleToTarget(targetChar, (L2PcInstance) activeChar, skill);