Iterator<String> it = linked.iterator();
while(it.hasNext()){
try{L2PcInstance pc = L2World.getInstance().getPlayer(it.next().toString());
pc.eventSitForced = !pc.eventSitForced;
if(pc.eventSitForced) pc.sitDown();
else pc.standUp();}catch(Exception e){}
}
}
void killTeam(L2PcInstance activeChar, int team){
LinkedList<String> linked = L2Event.players.get(team);