Quote:
Originally Posted by Frankie
I don't understand what temp.file.("rights-" @ temp.i) is any different from temp.file.(@ "rights-" @ temp.i
|
PHP Code:
function onCreated() {
temp.e = "foo";
temp.i.rights_foo = "bar";
echo(temp.i.(@ "rights_" @ temp.e));
echo(temp.i.("rights_" @ temp.e));
}
Returns:
PHP Code:
Weapon/GUI-script _DylanTest2 added/updated by LoneAngelIbesu
bar
bar
So, I don't see the difference either.