I remember this from when I was working on a script the last time, and I thought it might benefit the community if it was fixed.
Stefan, make getStringKeys() gs2 compatible!
At the moment (unless it's been fixed already), this works:
PHP Code:
with (findNPC(PartyControll)) echo(getstringkeys("this."));
While these doesn't:
PHP Code:
db = findNPC(PartyControll);
echo(db.getstringkeys("this."));
PHP Code:
echo(findNPC(PartyControll).getstringkeys("this."));
PHP Code:
echo(PartyControll.getstringkeys("this."));