29-03-2007, 10:33 PM
Another good optimization to do is convert all of the division you can into multiplication. Dark Dragon said multiplication is faster in VB.
I did: / 2 to * 0.5, / 10 to * 0.1, and / 5 to * 0.2
I did: / 2 to * 0.5, / 10 to * 0.1, and / 5 to * 0.2