{
Transaction transaction = new Transaction(TransactionType.DUEL, activeChar, targetChar, 10000);
activeChar.setTransaction(transaction);
targetChar.setTransaction(transaction);
SystemMessage msg = new SystemMessage(SystemMessage.S1_HAS_BEEN_CHALLENGED_TO_A_DUEL);
msg.addString(targetChar.getName());
activeChar.sendPacket(msg);
msg = new SystemMessage(SystemMessage.S1_HAS_CHALLENGED_YOU_TO_A_DUEL);
msg.addString(activeChar.getName());
targetChar.sendPacket(new ExDuelAskStart(activeChar.getName(), _duelType), msg);
}