FFR Scores 2006-2010
Collapse
X
-
Originally posted by hi19hi19oh boy, it's STIFF, I'll stretch before I sit down at the computer so not I'm not as STIFF next time I step a file -
Re: FFR Scores
At first I was like
-___________________________________________________________-

And then I was like


Other fail scores from today

Comment
-
Re: FFR Scores
gasp===============================
The idea that RDCP 3 may come out in the future is a fun thought to have~
===============================Comment
-
-
Patashu makes Chiptunes in Famitracker:
http://soundcloud.com/patashu/8bit-progressive-metal-fading-world
http://img.photobucket.com/albums/v216/Mechadragon/smallpackbanner.png
Best non-AAAs: ERx8 v2 (14-1-0-4), Hajnal (3-0-0-0), RunnyMorning (8-0-0-4), Xeno-Flow (1-0-0-3), Blue Rose (35-2-0-20), Ketsarku (14-0-0-0), Silence (1-0-0-0), Lolo (14-1-0-1)
http://i231.photobucket.com/albums/ee301/xiaoven/solorulzsig.pngComment
-
Comment
-
Best AAA: Policy In The Sky [Oni] (81)
Best SDG: PANTS (86)
Best FC: Future Invasion (93)Comment
-
Re: FFR Scores
The 24th trills are also at 170 bpm. They're not that bad (255 bpm 16ths).
I've been trying to make a code to compare BPMs - 24ths at this speed is equivalent to [number] BPM 16ths, etc.Originally posted by hi19hi19oh boy, it's STIFF, I'll stretch before I sit down at the computer so not I'm not as STIFF next time I step a fileComment
-
Re: FFR Scores
I played a song on Dragon Shot's engine, and it made me cream so much. FFR needs this kind of stuff on the site. We should all suggest DS being an admin.
Originally posted by t-rogdorhey buddy are you looking for a good song to step because if so i really recommend you step In Front Of A BusComment
-
-
Comment
-
Re: FFR Scores
//example: newBPM(170, 24, 16);
public static double newBPM(double oldBPM, double oldNoteInterval, double newNoteInterval)
{
return oldBPM*oldNoteInterval/newNoteInterval;
}
//example: newNoteInterval(170, 24, 255);
public static double newNoteInterval(double oldBPM, double oldNoteInterval, double newBPM)
{
return oldNoteInterval*oldBPM/newBPM;
}
//example: NPM(170, 16);
public static double NPM(double BPM, double noteInterval)
{
return BPM*noteInterval/4;
}
//example: NPS(170, 16);
public static double NPS(double BPM, double noteInterval)
{
return (BPM/60)*(noteInterval/4);
}
edit: fixed a mistake oopsLast edited by Patashu; 10-28-2010, 08:30 PM.Patashu makes Chiptunes in Famitracker:
http://soundcloud.com/patashu/8bit-progressive-metal-fading-world
http://img.photobucket.com/albums/v216/Mechadragon/smallpackbanner.png
Best non-AAAs: ERx8 v2 (14-1-0-4), Hajnal (3-0-0-0), RunnyMorning (8-0-0-4), Xeno-Flow (1-0-0-3), Blue Rose (35-2-0-20), Ketsarku (14-0-0-0), Silence (1-0-0-0), Lolo (14-1-0-1)
http://i231.photobucket.com/albums/ee301/xiaoven/solorulzsig.pngComment





Comment