Quote:
Originally posted by voicedcow6666
my turn for input. 
For for statements, the initial varible you should use is i. If you must nest them, start with i, followed by j, then k, and so on.
NPC Code:
for (i=0;i<5;i++) {
}
for (i=0;i<5;i++) {
for (j=0;j<3;j++) {
for (k=0;i<1;k++) {
}
}
}
|
Wrong. You can use any letter, as long it isn't used (x,y,z).
I,j,k,l etc. is for compability with Java and C++, just like == is.
Also, this. variables can be used to.