here jon
Cosmic Orchestra (60)
Final Step (63)
Aerospace (63)
Internal Cannon (64)
Run Through the Steam of Time (64)
Guitar Sounds (65)
ETERNAL DRAIN [Heavy] (67)
Nix-Tek (70)
Aim Burst (73)
Weapon (78)
My client has been far too laggy for me to get any decent scores, if I can't play at my best, I'm not submitting scores.
I right clicked on the shortcut to my standalone and clicked properties. I mostly got rid of my lag by running in 640x420 and clicking a couple of other boxes which made it run smoother. Also play on low quality. Since I play on full screen at 640x420, the arrows are freakin huge lol.
Alright, I've made a little way for people to see if they qualify for this or not. Just copy this program. For kicks, it can even place you in D8 or D9. You have to be ridiculously good to get to D8 and almost impossibly good to ever get to D9. I guess if you reach D9 you've beaten the game.
You must use select all on the level rank stats page or it will not work.
import java.util.Scanner;
public class Main {
public static void main (String[] args) {
int bestAAA1 = 0;
int bestAAA2 = 0;
int bestSDG1 = 0;
int bestSDG2 = 0;
int bestFC1 = 0;
int bestFC2 = 0;
Scanner console = new Scanner(System.in);
while (console.hasNextLine()) {
String line = console.nextLine();
if (line.equalsIgnoreCase("contact us | site credits | rss feed")) {
break;
}
Scanner s = new Scanner(line);
if (!s.hasNext()) {
continue;
}
s.next();
if (!s.hasNextInt()) {
continue;
}
int difficulty = s.nextInt();
String current = "";
while (s.hasNext()) {
current = s.next();
if ((1 == current.length() || current.length() > 6) && (current.endsWith("0*") || current.endsWith("5*") ||current.endsWith("0") || current.endsWith("5"))) {
break;
}
}
if (!current.endsWith("*")) {
continue;
}
int perfects = s.nextInt();
int goods = s.nextInt();
int averages = s.nextInt();
int misses = s.nextInt();
int boos = s.nextInt();
if (misses == 0) {
//FC
if (bestFC1 <= bestFC2 && bestFC1 < difficulty) {
bestFC1 = difficulty;
} else if (bestFC1 > bestFC2 && bestFC2 < difficulty) {
bestFC2 = difficulty;
}
}
int score = bestAAA1 + bestAAA2 + bestSDG1 + bestSDG2 + bestFC1 + bestFC2;
if (score >= 583) {
System.out.println("D9");
} else if (score >= 570) {
System.out.println("D8");
} else if (score >= 547) {
System.out.println("D7");
} else if (score >= 510) {
System.out.println("D6");
} else if (score >= 450) {
System.out.println("D5");
} else if (score >= 385) {
System.out.println("D4");
} else if (score >= 320) {
System.out.println("D3");
} else if (score >= 180) {
System.out.println("D2");
} else {
System.out.println("D1");
}
}
}
I use Eclipse, but it probably works in other Java APIs. Save it, click run, and copy and paste your level rank stats into it. It will output which division it thinks you should be in. It's not exact, but if it gives you D4 or lower, you can feel free to join this.
Also there are fewer than 24 hours lefts with the current songs, so please feel free to give some suggestions as to what the next week's songs should be. I think I've only had 1 so far.
Comment