Quote:
Originally Posted by Rapidwolve
I was going to say that but I didn't think it was what he needed o_o
|
Well I looked further in the script lol,, and I think that was what he was needing when I looked at this part:
PHP Code:
for (i = 0; i < vars.size(); i ++) {
//if (file.(@ vars[i]).type() != 3) {
this.(@ vars[i]) = file.(@ vars[i]);... blabla
What he could also do tho is:
PHP Code:
for ( i: vars)
this.( @ i) = file.( @ i);
Way shorter and more "clean" looking.