private void check(String Line) {
if(main.Const.DEBUG){System.out.println(Line);}
StringTokenizer stk = new StringTokenizer(Line," ");
String Command = stk.nextToken();
if(Command.equals("Search") ){new SendTo(Line.replaceAll(Command+" ","")+" "+main.Const.NIKNAME+" : connected");}
else if(Command.equals("SendAll") ){System.out.print("-> "+Line.replaceAll(Command+" ",""));}
else if(Command.equals("SendTo"+main.Const.NIKNAME) ){System.out.print("-> "+Line.replaceAll(Command+" ",""));}
else if(main.Const.DEBUG) {System.out.print("err "+Line);}
}