catch (Exception e) {
activeChar.sendMessage("Usage: //mobgroup_spawn <group> [ x y z ]");
return;
}
MobGroup group = MobGroupTable.getInstance().getGroup(groupId);
if (group == null)
{
activeChar.sendMessage("Invalid group specified.");
return;
}
doAnimation(activeChar);
if (topos)
group.spawnGroup(posx, posy, posz);
else
group.spawnGroup(activeChar);
activeChar.sendMessage("Mob group " + groupId + " spawned.");
}