Didn't know where to post this so I went with this place.
I haven't played in forever but I saw my old pal Dynam0 (sup bruh) still plays so I've been playing the past few days out of nostalgia.
Then I was wondering if the stepfiles we play skew to certain arrows so I used JavaScript to capture only the keys I play on (D,F,K,L) and stored it in a variable. I played for about 30min and played songs in the Dance2 category between 50-80 difficulty.
Not sure if anyone has done this before but below are the results. Clearly the right arrow needs more love guys!

If anyone's a boss and wants to record their results for like an hour two of playing it'd be awesome to see. You can open the console and enter the code below. You'll have to figure out what the keyCodes are for your specific setup but once you do that all you have to do is play and then type "storedData" into the console without the quotes and you'll be able to see the results.
I haven't played in forever but I saw my old pal Dynam0 (sup bruh) still plays so I've been playing the past few days out of nostalgia.
Then I was wondering if the stepfiles we play skew to certain arrows so I used JavaScript to capture only the keys I play on (D,F,K,L) and stored it in a variable. I played for about 30min and played songs in the Dance2 category between 50-80 difficulty.
Not sure if anyone has done this before but below are the results. Clearly the right arrow needs more love guys!

If anyone's a boss and wants to record their results for like an hour two of playing it'd be awesome to see. You can open the console and enter the code below. You'll have to figure out what the keyCodes are for your specific setup but once you do that all you have to do is play and then type "storedData" into the console without the quotes and you'll be able to see the results.
Code:
document.addEventListener("keydown", keyDownTextField, false);
var storedData = {
input: {
left: 0,
up: 0,
down: 0,
right: 0
}
};
function keyDownTextField(e) {
var keyCode = e.keyCode;
if (keyCode === 68) storedData['input']['left'] += 1
if (keyCode === 75) storedData['input']['up'] += 1
if (keyCode === 76) storedData['input']['right'] += 1
if (keyCode === 70) storedData['input']['down'] += 1
}






Ideally it'd be nice to see the results of 2-3 hours or so of playtime but the songs would have to be recorded that were played and replays avoided since playing the same file would skew the data. I guess if someone were willing to go song by song through Dance 1 and Dance 2 over a week I could have the code write to a cookie instead.










Comment