I know SQLight is the way to go, but we've already got so much wrapped around this dbnpc id rather not change it all.
Now on this:
PHP Code:
temp.array = {"foo", "bar", "meow"};
array[0].test = 10;
array[1].test = 20;
array[2].test = 1;
instead of the
PHP Code:
temp.array = {values,put,here};
i know i can do
PHP Code:
temp.array = this.guilds.getdynamicvarnames();
and that will pull them up, but what can I substitute for
PHP Code:
array[0].test = 10;
array[1].test = 20;
array[2].test = 1;
to pull up this.guilds.GUILDNAME.kills, and pull all the kills up? Then use that to match, what to use?