LinkedList<String> linked = L2Event.players.get(team);
Iterator<String> it = linked.iterator();
while(it.hasNext()){
try{ L2PcInstance target = L2World.getInstance().getPlayer(it.next().toString());
target.getPoly().setPolyInfo("npc", id);
target.teleToLocation(target.getX(), target.getY(), target.getZ(), true);
CharInfo info1 = new CharInfo(target);
target.broadcastPacket(info1);
UserInfo info2 = new UserInfo(target);
target.sendPacket(info2);}catch(Exception e){}
}