actually, I might have just found the problem.
the first thing I want you to do is open ZDashboard.java, and find the line (near the bottom) that says
dash.addString(prints + ":451@@@");
add
dash.commit(); just after that. the end of the file will look like this:
Code:
...
public void var(String name, double value) {
AddDebugVariable(name, String.valueOf(value));
}
public void Send() {
dash.addString(prints + ":451@@@");
dash.commit();//Add this line
prints = "@@@451:|";
}
}
once you add this, recompile, redownload, and re-test. If it does not work, do what I said above (with wireshark)