Ok, here's what Im' doing, I'm loading variables from a text file into an object then I'm using a for each loop to go through each var starting with "whatever" like this"
PHP Code:
blah = new TStaticVar();
blah.loadVars("thistextfile.arc")
Now my questions is do I do this...
PHP Code:
for (i: getstringkeys("inv_"));
Or this....
PHP Code:
for (i: getstringkeys("blah.inv_"));
Forgive me if it's a really simple or unintelligent questions, I just sort of started understanding objects today and I figured this would be somewhat of a cakewalk. :P
(What I'm doing is creating an item system using text files.
