
Originally Posted by
iBrett
Well, thanks for the help... But I'm still mentally retarded when it comes to this...
Is there any way you can pretty much spoon feed me?
Or teamview? :L
Go to signlink.java, look for the findcachedir() method. Replace it with this:
Code:
public static String findcachedir()
{
String s = System.getProperty("user.home")+"/YOUR CACHE FOLDER NAME";
File file = new File(s);
if(file.exists() || file.mkdirs()) {
return s + "/";
}
return s;
}
Then put your cache folder in C:/Users/YOUR USERNAME