Trying to make a thing
IDK how to do this this is done in processing if you don't know it is sort of java but dumbed down for people like me. But it don't work and IDK how to fix so it does work! Thanks to any that help :) exit(); String charset = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ`~!@#$%^&*()_-+=[{]}|:;'\",<.>/?"; char[] acharset = charset.toCharArray(); String password = "Test123"; //char[] apassword = password.toCharArray(); String tpassword = ""; int i = 0; int c = 0; int iter = 0; //First Attempt //**W.I.P** //Could work ***SOON*** while (tpassword != password) { tpassword = acharset[iter] + (acharset[i]) * iter; print("\nNEW TEST:", tpassword, "|ITERATION:", iter, "|TEST #:", c); if (i < 94) i++; else i = 0; if (c < 100) c++; else break; if (c % 94 == 0) iter++; } //Second Attempt /* **W.I.P** for (int i = 0; i < 92; i++) { if (tpassword != password) { print("\nNew Test:", tpassword); for (int c = 0; c < 2; c++) { String test = tpassword + acharset[i]; if (c % 92 != 0) { tpassword = test + acharset[i]; } else { g++; print(" ITERATION:", g); } } } else { print("\nFound Password:", tpassword); break; } } */