Output.p("I am trying to connect to " + host + ":" + port);
this.sock = new Socket(host, port);
this.out = new WorldOutputStream(sock);
this.in = new WorldInputStream(sock);
Output.p("I am connected to server");
Output.p("Sending Handshake");
this.out.writeHandshake(Settings.getSetting("client_type"), Settings.getSetting("protocol_cc"), Settings.getSetting("user"));