Quote: "The easiest way to get a job done may not give "satisfaction" that the hard way does, but that doesn't mean it's "wrong" as long as you still get the same exact task finished.
"
At some point, you're right...
Look:
for image=1 to 10
num$=str$(image)
load image "Texture"+num$+".bmp", image
next i
is much better than
load image "Texture1.bmp", 1
load image "Texture2.bmp", 2
load image "Texture3.bmp", 3
load image "Texture4.bmp", 4
load image "Texture5.bmp", 5
load image "Texture6.bmp", 6
load image "Texture7.bmp", 7
load image "Texture8.bmp", 8
load image "Texture9.bmp", 9
load image "Texture10.bmp", 10
At this point you are right, Keaz...
The worst foe lies within the self...