View Single Post
  #3  
Old 08-04-2011, 04:24 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Also, this

PHP Code:
this.lineup NULL

for (
temp.0temp.playerscounttemp.++) 

  
this.lineup.add(players[(@temp.p)].nick); 
  
player.chat this.lineup
  
this.set "Lineup: "@this.lineup

would be better written as

PHP Code:
this.lineup NULL

for (
temp.pl players

  
this.lineup.add(temp.pl.nick);
}

player.chat this.lineup
this.set "Lineup: "@this.lineup
__________________
Reply With Quote