Quote:
|
Originally Posted by excaliber7388
Why won't this work? The trigger and parameter is being received fine, it's just not writing it in to the player's strings right:
|
As Stefan said:
PHP Code:
this.index = 3;
client.("foo_" @ this.index) = 4;
... would be the same as doing:
PHP Code:
client.foo_3 = 4;
Also.
PHP Code:
this.index = 3;
client.("foo_" @ this.index).bar.baz = 4;
... would be the same as doing:
PHP Code:
client.foo_3.bar.baz = 4;