L2Clan clan = ClanTable.getInstance().getClanByName(clanName);
template = NpcTable.getInstance().getTemplate(35617 + mobCounter);
/*
* template.setServerSideTitle(true); template.setTitle(clan.getName());
*/
L2MonsterInstance questMob = new L2MonsterInstance(IdFactory.getInstance().getNextId(), template);
questMob.setHeading(100);
questMob.getStatus().setCurrentHpMp(questMob.getMaxHp(), questMob.getMaxMp());
if(mobCounter == 1)
{
questMob.spawnMe(57069, -91797, -1360);
}
else if(mobCounter == 2)
{
questMob.spawnMe(58838, -92232, -1354);
}
else if(mobCounter == 3)
{
questMob.spawnMe(57327, -93373, -1365);
}
else if(mobCounter == 4)
{
questMob.spawnMe(57820, -91740, -1354);
}
else if(mobCounter == 5)
{
questMob.spawnMe(58728, -93487, -1360);
}
clanPlayersInfo regPlayers = _clansInfo.get(clan.getClanId());
regPlayers._mob = questMob;
mobCounter++;
}