Quote:
Originally posted by Saga2001
NPC Code:
// just as these two are the same:
this.i = 1;
this.j = 1;
if (this.i==this.j) commands;
if (this.j==this.i) commands;
// 
|
Um I don't believe that's correct.
NPC Code:
this.i = 1;
This sets this.i to 1.
NPC Code:
if (this.i==this.j)
this is TESTING to see if this.i is equal to this.j