private void handleTarget(String command, L2PcInstance activeChar) {
try {
String targetName = command.substring(13);
L2Object obj = L2World.getInstance().getPlayer(targetName);
if ((obj != null) && (obj instanceof L2PcInstance)) {
obj.onAction(activeChar);
} else {
SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
sm.addString("Player "+targetName+" not found");
activeChar.sendPacket(sm);
}