new Transaction(TransactionType.ALLY, activeChar, target, 10000);
//leader of alliance request an alliance.
SystemMessage sm = new SystemMessage(SystemMessage.S2_THE_LEADER_OF_S1_HAS_REQUESTED_AN_ALLIANCE);
sm.addString(activeChar.getAlliance().getAllyName());
sm.addString(activeChar.getName());
target.sendPacket(sm, new AskJoinAlliance(activeChar.getObjectId(), activeChar.getName(), activeChar.getAlliance().getAllyName()));
return;
}