View Single Post
  #3  
Old 08-28-2009, 05:46 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Why are you putting @'s in the middle of no where lol.

I.e: this.whatmatch = @ this.(@"sdematch" @ i) @;
Should just be: this.whatmatch = this.(@"sdematch" @ i);

You generally use @ when you want to append things together. I.e:

PHP Code:
function onCreated() {
  
temp."ABC";
  
this.chat temp."DEF"// chat will be "ABCDEF"

and when you're using dynamic variables.

PHP Code:
function onCreated() {
  
this.lol "jk";
  
temp.var = "lol";
  
this.chat this.(@temp.var); // chat will be "jk"

But you are already using it that way.
__________________
Quote:
Reply With Quote