View Single Post
  #10  
Old 05-20-2006, 03:57 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
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
__________________
Skyld
Reply With Quote