View Single Post
Old 06-20-2004, 05:33 PM   #21 (permalink)
Nafter
Insane
 
Location: The Eng
Yea i had to switch from firefox to IE to get it working,

In case your wondering, from the source

if (secs > 75)
var grade = "F--";
if (secs < 76)
var grade = "F-";
if (secs < 71)
var grade = "F";
if (secs < 66)
var grade = "D-";
if (secs < 61)
var grade = "D";
if (secs < 56)
var grade = "D+";
if (secs < 51)
var grade = "C-";
if (secs < 46)
var grade = "C";
if (secs < 41)
var grade = "C+";
if (secs < 36)
var grade = "B-";
if (secs < 31)
var grade = "B";
if (secs < 26)
var grade = "B+";
if (secs < 21)
var grade = "A-";
if (secs < 16)
var grade = "A";
if (secs < 11)
var grade = "A+";
if (secs < 6)
var grade = "A++";

that'll be the requirements for each )
__________________
I must not fear. Fear is the mind-killer. Fear is the little-death that brings total obliteration. I will face my fear. I will permit it to pass over me and through me. And when it has gone past I will turn the inner eye to see its path. Where the fear has gone there will be nothing. Only I will remain."
Nafter is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73