To embed this scenario in a web page, copy the following HTML code:
A new version of this scenario was uploaded on Wed Jun 15 16:04:49 UTC 2011
Only have one song in this.
You can hit incoming arrows before it even touches the indicators and you will still hit it. (Possible lag)
Use arrow keys to hit the corresponding arrows.
The announcer has good sarcasm. :)
Good fun, but one main problem I noticed: the game does not check to see that you press down the arrows at the moment they pass through the top, it simply looks for whether they are held down, meaning you can play with absolutely no timing and hold the arrows way before they reach the top. The only way I could think to fix this is to add a penalty if you are pressing an arrow when one is not passing through the top.
Good luck and good game. :)
What you can do is make the arrow test if it is below a certain point, such as:
if(arrow key is down)
{
if(getY < (right below the arrow spots))
{
points++;
}
}
else
{
points--;
}
2011/6/18
2011/6/22
2011/6/25
2011/6/25
2011/6/25